From abb5e6f422cd4ee050a599ad4b15d1c7c2994e6a Mon Sep 17 00:00:00 2001 From: EberlyCIPP <110550962+EberlyCIPP@users.noreply.github.com> Date: Thu, 4 Aug 2022 14:03:52 -0400 Subject: [PATCH 01/49] ci: add Azure Static Web Apps workflow file on-behalf-of: @Azure opensource@microsoft.com --- ...static-web-apps-lively-river-0dd9a610f.yml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/azure-static-web-apps-lively-river-0dd9a610f.yml diff --git a/.github/workflows/azure-static-web-apps-lively-river-0dd9a610f.yml b/.github/workflows/azure-static-web-apps-lively-river-0dd9a610f.yml new file mode 100644 index 000000000000..2cc5af2a5b25 --- /dev/null +++ b/.github/workflows/azure-static-web-apps-lively-river-0dd9a610f.yml @@ -0,0 +1,45 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - main + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_LIVELY_RIVER_0DD9A610F }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "/" # App source code path + api_location: "" # Api source code path - optional + output_location: "" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_LIVELY_RIVER_0DD9A610F }} + action: "close" From c880aad889c50615269d8cccb1e63e6e17b3c6d8 Mon Sep 17 00:00:00 2001 From: MoltenTesseract Date: Tue, 20 Aug 2024 09:33:27 +1000 Subject: [PATCH 02/49] Delete exchange rule confirmation fixed Delete exchange rule confirmation text still said disable rule instead of delete. --- src/views/email-exchange/transport/TransportRules.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/email-exchange/transport/TransportRules.jsx b/src/views/email-exchange/transport/TransportRules.jsx index 9d534e17dee5..549f245a2ea5 100644 --- a/src/views/email-exchange/transport/TransportRules.jsx +++ b/src/views/email-exchange/transport/TransportRules.jsx @@ -57,7 +57,7 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { modal: true, icon: , modalUrl: `/api/RemoveTransportRule?TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}`, - modalMessage: 'Are you sure you want to disable this rule?', + modalMessage: 'Are you sure you want to delete this rule?', }, ]} placement="end" From a00ba2fd7083336e224f10895f58eb61070caaf5 Mon Sep 17 00:00:00 2001 From: MoltenTesseract Date: Tue, 20 Aug 2024 12:40:24 +1000 Subject: [PATCH 03/49] Fix flyout extended information and incorrect wording Flyout extended information was pulling the incorrect columns, so all info was showing as 'undefined' . Updated all references to "rule" and replaced with "connector". --- .../connectors/ConnectorList.jsx | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/views/email-exchange/connectors/ConnectorList.jsx b/src/views/email-exchange/connectors/ConnectorList.jsx index 1f3829abcb1d..c5c2b2d0951a 100644 --- a/src/views/email-exchange/connectors/ConnectorList.jsx +++ b/src/views/email-exchange/connectors/ConnectorList.jsx @@ -20,44 +20,46 @@ const Offcanvas = (row, rowIndex, formatExtraData) => { , modalBody: row, modalType: 'POST', modalUrl: `/api/AddExConnectorTemplate`, - modalMessage: 'Are you sure you want to create a template based on this rule?', + modalMessage: 'Are you sure you want to create a template based on this connector?', }, { - label: 'Enable Rule', + label: 'Enable Connector', color: 'info', icon: , modal: true, modalUrl: `/api/EditExConnector?State=Enable&TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}&Type=${row.cippconnectortype}`, - modalMessage: 'Are you sure you want to enable this rule?', + modalMessage: 'Are you sure you want to enable this connector?', }, { - label: 'Disable Rule', + label: 'Disable Connector', color: 'info', icon: , modal: true, modalUrl: `/api/EditExConnector?State=Disable&TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}&Type=${row.cippconnectortype}`, - modalMessage: 'Are you sure you want to disable this rule?', + modalMessage: 'Are you sure you want to disable this connector?', }, { - label: 'Delete Rule', + label: 'Delete Connector', color: 'danger', modal: true, icon: , modalUrl: `/api/RemoveExConnector?TenantFilter=${tenant.defaultDomainName}&GUID=${row.Guid}&Type=${row.cippconnectortype}`, - modalMessage: 'Are you sure you want to delete this rule?', + modalMessage: 'Are you sure you want to delete this connector?', }, ]} placement="end" From 2894f938faff881d468349131df01a57114d0254 Mon Sep 17 00:00:00 2001 From: Esco Date: Sat, 17 Aug 2024 12:03:10 +0200 Subject: [PATCH 04/49] Improvements to MEMListPolicies --- .../endpoint/intune/MEMListCompliance.jsx | 1 + src/views/endpoint/intune/MEMListPolicies.jsx | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/src/views/endpoint/intune/MEMListCompliance.jsx b/src/views/endpoint/intune/MEMListCompliance.jsx index 328a387566fd..87c2fdfabdf3 100644 --- a/src/views/endpoint/intune/MEMListCompliance.jsx +++ b/src/views/endpoint/intune/MEMListCompliance.jsx @@ -138,6 +138,7 @@ const ComplianceList = () => { Endpoint: 'deviceManagement/deviceCompliancePolicies', $orderby: 'displayName', $count: true, + $expand: 'assignments', }, columns, reportName: `${tenant?.defaultDomainName}-MEMPolicies-List`, diff --git a/src/views/endpoint/intune/MEMListPolicies.jsx b/src/views/endpoint/intune/MEMListPolicies.jsx index f63db28effef..725c4cc0cd42 100644 --- a/src/views/endpoint/intune/MEMListPolicies.jsx +++ b/src/views/endpoint/intune/MEMListPolicies.jsx @@ -15,6 +15,7 @@ import { CippPageList } from 'src/components/layout' import { Link } from 'react-router-dom' import { CippActionsOffcanvas, CippCodeBlock } from 'src/components/utilities' import { TitleButton } from 'src/components/buttons' +import { cellBooleanFormatter, cellDateFormatter } from 'src/components/tables' const Actions = (row, rowIndex, formatExtraData) => { const [ocVisible, setOCVisible] = useState(false) @@ -90,12 +91,43 @@ const columns = [ name: 'Name', sortable: true, exportSelector: 'displayName', + maxWidth: 'auto', }, { selector: (row) => row['PolicyTypeName'], name: 'Profile Type', sortable: true, exportSelector: 'PolicyTypeName', + maxWidth: '300px', + }, + { + selector: (row) => row['PolicyAssignment'], + name: 'Assigned', + sortable: true, + exportSelector: 'PolicyAssignment', + maxWidth: '300px', + }, + { + selector: (row) => row['PolicyExclude'], + name: 'Excluded', + sortable: true, + exportSelector: 'PolicyExclude', + maxWidth: '300px', + }, + { + selector: (row) => row['description'], + name: 'Description', + sortable: true, + exportSelector: 'description', + maxWidth: 'auto', + }, + { + selector: (row) => row['lastModifiedDateTime'], + name: 'Last Modified', + sortable: true, + exportSelector: 'lastModifiedDateTime', + cell: cellDateFormatter({ format: 'relative' }), + maxWidth: '150px', }, { selector: (row) => row['id'], From a1ce07dd3165310b15a854fb7099672fcbedabb5 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Wed, 21 Aug 2024 16:09:27 -0400 Subject: [PATCH 05/49] Add owner property to anonymization check --- src/components/tables/CippDatatable.jsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/components/tables/CippDatatable.jsx b/src/components/tables/CippDatatable.jsx index 125eeda3e00a..7d00d9730e82 100644 --- a/src/components/tables/CippDatatable.jsx +++ b/src/components/tables/CippDatatable.jsx @@ -14,16 +14,18 @@ export default function CippDatatable({ path, params, ...rest }) { refetch, } = useListDatatableQuery({ path, params: { $filter: graphFilter, ...params } }) - let anonimized = false // Assuming default value is false + let anonymized = false // Assuming default value is false const regex = new RegExp('^[A-Z0-9]+$') const principalNameOrUPN = data[0]?.userPrincipalName ?? data[0]?.UPN ?? + data[0]?.Owner ?? data.Results?.[0]?.upn ?? - data.Results?.[0]?.userPrincipalName + data.Results?.[0]?.userPrincipalName ?? + data.Results?.[0]?.Owner if (principalNameOrUPN && regex.test(principalNameOrUPN)) { - anonimized = true + anonymized = true } var defaultFilterText = '' @@ -32,7 +34,7 @@ export default function CippDatatable({ path, params, ...rest }) { } return ( <> - {anonimized && ( + {anonymized && ( This table might contain anonymized data. Please check this Date: Wed, 21 Aug 2024 16:09:52 -0400 Subject: [PATCH 06/49] Extend permission builder for app approval --- .../utilities/CippAppPermissionBuilder.jsx | 138 ++++++++++++------ 1 file changed, 92 insertions(+), 46 deletions(-) diff --git a/src/components/utilities/CippAppPermissionBuilder.jsx b/src/components/utilities/CippAppPermissionBuilder.jsx index c986b67145f2..69d6c8c516d3 100644 --- a/src/components/utilities/CippAppPermissionBuilder.jsx +++ b/src/components/utilities/CippAppPermissionBuilder.jsx @@ -34,7 +34,14 @@ import { Editor } from '@monaco-editor/react' import { useSelector } from 'react-redux' import { CippCallout } from '../layout' -const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitting }) => { +const CippAppPermissionBuilder = ({ + onSubmit, + currentPermissions = {}, + isSubmitting, + colSize = 8, + removePermissionConfirm = true, + appDisplayName = 'CIPP-SAM', +}) => { const [selectedApp, setSelectedApp] = useState([]) const [permissionsImported, setPermissionsImported] = useState(false) const [newPermissions, setNewPermissions] = useState({}) @@ -42,6 +49,7 @@ const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitt const [manifestVisible, setManifestVisible] = useState(false) const currentTheme = useSelector((state) => state.app.currentTheme) const [calloutMessage, setCalloutMessage] = useState(null) + const [initialPermissions, setInitialPermissions] = useState() const { data: servicePrincipals = [], @@ -59,35 +67,49 @@ const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitt var servicePrincipal = selectedApp.find((sp) => sp?.appId === appId) var newServicePrincipals = selectedApp.filter((sp) => sp?.appId !== appId) - ModalService.confirm({ - title: 'Remove Service Principal', - body: `Are you sure you want to remove ${servicePrincipal.displayName}?`, - onConfirm: () => { - setSelectedApp(newServicePrincipals) - var updatedPermissions = JSON.parse(JSON.stringify(newPermissions)) - delete updatedPermissions.Permissions[appId] - setNewPermissions(updatedPermissions) - }, - }) + if (removePermissionConfirm) { + ModalService.confirm({ + title: 'Remove Service Principal', + body: `Are you sure you want to remove ${servicePrincipal.displayName}?`, + onConfirm: () => { + setSelectedApp(newServicePrincipals) + var updatedPermissions = JSON.parse(JSON.stringify(newPermissions)) + delete updatedPermissions.Permissions[appId] + setNewPermissions(updatedPermissions) + }, + }) + } else { + setSelectedApp(newServicePrincipals) + var updatedPermissions = JSON.parse(JSON.stringify(newPermissions)) + delete updatedPermissions.Permissions[appId] + setNewPermissions(updatedPermissions) + } } const confirmReset = () => { - ModalService.confirm({ - title: 'Reset to Default', - body: 'Are you sure you want to reset all permissions to default?', - onConfirm: () => { - setSelectedApp([]) - setPermissionsImported(false) - setManifestVisible(false) - setCalloutMessage('Permissions reset to default.') - }, - }) + if (removePermissionConfirm) { + ModalService.confirm({ + title: 'Reset to Default', + body: 'Are you sure you want to reset all permissions to default?', + onConfirm: () => { + setSelectedApp([]) + setPermissionsImported(false) + setManifestVisible(false) + setCalloutMessage('Permissions reset to default.') + }, + }) + } else { + setSelectedApp([]) + setPermissionsImported(false) + setManifestVisible(false) + setCalloutMessage('Permissions reset to default.') + } } const handleSubmit = (values) => { if (onSubmit) { var postBody = { - Permissions: newPermissions, + Permissions: newPermissions.Permissions, } onSubmit(postBody) } @@ -127,30 +149,43 @@ const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitt } const removePermissionRow = (servicePrincipal, permissionType, permissionId, permissionValue) => { - // modal confirm - ModalService.confirm({ - title: 'Remove Permission', - body: `Are you sure you want to remove the permission: ${permissionValue}?`, - onConfirm: () => { - var updatedPermissions = JSON.parse(JSON.stringify(newPermissions)) - var currentPermission = updatedPermissions?.Permissions[servicePrincipal][permissionType] - var newPermission = [] - if (currentPermission) { - currentPermission.map((perm) => { - if (perm.id !== permissionId) { - newPermission.push(perm) - } - }) - } - updatedPermissions.Permissions[servicePrincipal][permissionType] = newPermission - setNewPermissions(updatedPermissions) - }, - }) + if (removePermissionConfirm) { + ModalService.confirm({ + title: 'Remove Permission', + body: `Are you sure you want to remove the permission: ${permissionValue}?`, + onConfirm: () => { + var updatedPermissions = JSON.parse(JSON.stringify(newPermissions)) + var currentPermission = updatedPermissions?.Permissions[servicePrincipal][permissionType] + var newPermission = [] + if (currentPermission) { + currentPermission.map((perm) => { + if (perm.id !== permissionId) { + newPermission.push(perm) + } + }) + } + updatedPermissions.Permissions[servicePrincipal][permissionType] = newPermission + setNewPermissions(updatedPermissions) + }, + }) + } else { + var updatedPermissions = JSON.parse(JSON.stringify(newPermissions)) + var currentPermission = updatedPermissions?.Permissions[servicePrincipal][permissionType] + var newPermission = [] + if (currentPermission) { + currentPermission.map((perm) => { + if (perm.id !== permissionId) { + newPermission.push(perm) + } + }) + } + updatedPermissions.Permissions[servicePrincipal][permissionType] = newPermission + setNewPermissions(updatedPermissions) + } } - const generateManifest = (appDisplayName = 'CIPP-SAM', prompt = false) => { - if (prompt) { - // modal input form for appDisplayName + const generateManifest = ({ appDisplayName = 'CIPP-SAM', prompt = false }) => { + if (prompt || appDisplayName === '') { ModalService.prompt({ title: 'Generate Manifest', body: 'Please enter the display name for the application.', @@ -337,6 +372,11 @@ const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitt }, }, }) + } else if (spSuccess & (currentPermissions !== initialPermissions)) { + setSelectedApp([]) + setNewPermissions(currentPermissions) + setInitialPermissions(currentPermissions) + setPermissionsImported(false) } else if (spSuccess && initialAppIds.length > 0 && permissionsImported == false) { var newApps = [] initialAppIds?.map((appId) => { @@ -350,10 +390,12 @@ const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitt }) setSelectedApp(newApps) setNewPermissions(currentPermissions) + setInitialPermissions(currentPermissions) setPermissionsImported(true) } }, [ currentPermissions, + initialPermissions, permissionsImported, spSuccess, selectedApp, @@ -361,6 +403,7 @@ const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitt setSelectedApp, setPermissionsImported, setNewPermissions, + setInitialPermissions, ]) const ApiPermissionRow = ({ servicePrincipal = null }) => { @@ -679,7 +722,7 @@ const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitt return ( - + {servicePrincipals?.Metadata?.Success && ( @@ -738,7 +781,7 @@ const CippAppPermissionBuilder = ({ onSubmit, currentPermissions = {}, isSubmitt { - generateManifest() + generateManifest({ appDisplayName: appDisplayName }) }} className={`circular-button`} title={'+'} @@ -957,6 +1000,9 @@ CippAppPermissionBuilder.propTypes = { onSubmit: PropTypes.func, currentPermissions: PropTypes.object, isSubmitting: PropTypes.bool, + colSize: PropTypes.number, + removePermissionConfirm: PropTypes.bool, + appDisplayName: PropTypes.string, } export default CippAppPermissionBuilder From be79c62682621c1c145eb726c3cc5d262c8a8587 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Wed, 21 Aug 2024 16:10:08 -0400 Subject: [PATCH 07/49] approval template page --- src/views/cipp/AppApprovalTemplates.jsx | 140 ++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 src/views/cipp/AppApprovalTemplates.jsx diff --git a/src/views/cipp/AppApprovalTemplates.jsx b/src/views/cipp/AppApprovalTemplates.jsx new file mode 100644 index 000000000000..6f9159565dcd --- /dev/null +++ b/src/views/cipp/AppApprovalTemplates.jsx @@ -0,0 +1,140 @@ +import React from 'react' +import { + CCol, + CRow, + CCallout, + CSpinner, + CButton, + CFormInput, + CFormLabel, + CTooltip, +} from '@coreui/react' +import { Field, Form, FormSpy } from 'react-final-form' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons' +import { CippPageList, CippWizard } from 'src/components/layout' +import { cellDateFormatter, CippTable, WizardTableField } from 'src/components/tables' +import PropTypes from 'prop-types' +import { + Condition, + RFFCFormCheck, + RFFCFormInput, + RFFCFormSwitch, + RFFSelectSearch, +} from 'src/components/forms' +import { useLazyGenericPostRequestQuery } from 'src/store/api/app' +import CippButtonCard from 'src/components/contentcards/CippButtonCard' +import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' +import { CippOffcanvas } from 'src/components/utilities' +import CippAppPermissionBuilder from 'src/components/utilities/CippAppPermissionBuilder' + +const AppApprovalTemplates = () => { + const [editorVisible, setEditorVisible] = React.useState(false) + const [selectedTemplate, setSelectedTemplate] = React.useState(null) + const templateNameRef = React.useRef(null) + const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() + + const onSubmit = (values) => { + var body = { + TemplateName: templateNameRef.current.value, + Permissions: values.Permissions, + } + if (selectedTemplate?.TemplateId) { + body.TemplateId = selectedTemplate.TemplateId + } + + console.log(body) + genericPostRequest({ + path: '/api/ExecAppPermissionTemplate?Action=Save', + values: body, + }).then(() => {}) + } + const titleButton = ( + { + setSelectedTemplate({}) + templateNameRef.current.value = '' + setEditorVisible(true) + }} + > + Add Template + + ) + return ( + <> + row['TemplateName'], + sortable: true, + exportSelector: 'TemplateName', + }, + { + name: 'Updated By', + selector: (row) => row['UpdatedBy'], + sortable: true, + exportSelector: 'UpdatedBy', + }, + { + name: 'Updated At', + selector: (row) => row['Timestamp'], + sortable: true, + exportSelector: 'Timestamp', + cell: cellDateFormatter({ format: 'short' }), + }, + { + name: 'Actions', + cell: (row) => ( + + { + setSelectedTemplate(row) + templateNameRef.current.value = row.TemplateName + setEditorVisible(true) + }} + > + + + + ), + }, + ], + reportName: 'AppApprovalTemplates', + }} + /> + setEditorVisible(false)} + > + Template Name + + Permissions + + + + ) +} + +export default AppApprovalTemplates From 8ecaf078015c56cfd83c5ef08a0c97ca81f15cf5 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Wed, 21 Aug 2024 16:41:20 -0400 Subject: [PATCH 08/49] Hide permission builder while loading --- .../components/SettingsAppPermissions.jsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/views/cipp/app-settings/components/SettingsAppPermissions.jsx b/src/views/cipp/app-settings/components/SettingsAppPermissions.jsx index d36dffb0b597..55a56aea7f5e 100644 --- a/src/views/cipp/app-settings/components/SettingsAppPermissions.jsx +++ b/src/views/cipp/app-settings/components/SettingsAppPermissions.jsx @@ -21,6 +21,7 @@ import { useListTenantsQuery } from 'src/store/api/tenants' import { OffcanvasListSection } from 'src/components/utilities/CippListOffcanvas' import CippButtonCard from 'src/components/contentcards/CippButtonCard' import CippAppPermissionBuilder from 'src/components/utilities/CippAppPermissionBuilder' +import Skeleton from 'react-loading-skeleton' const SettingsAppPermissions = () => { const [genericPostRequest, postResults] = useLazyGenericPostRequestQuery() @@ -36,6 +37,7 @@ const SettingsAppPermissions = () => { const { data: samAppPermissions = [], isFetching: samAppPermissionsFetching, + isSuccess: samAppPermissionsSuccess, refetch: refetchSam, } = useGenericGetRequestQuery({ path: 'api/ExecSAMAppPermissions', @@ -51,11 +53,14 @@ const SettingsAppPermissions = () => { advised.

- + {samAppPermissionsFetching && } + {samAppPermissionsSuccess && ( + + )} {postResults.data && ( From 8e16606ee435f2c84e5f81a70d18a141ed36d8d0 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Wed, 21 Aug 2024 18:37:02 -0400 Subject: [PATCH 09/49] Add username to BEC refresh --- src/views/identity/administration/ViewBEC.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/identity/administration/ViewBEC.jsx b/src/views/identity/administration/ViewBEC.jsx index 4f1173042008..3142af80d61e 100644 --- a/src/views/identity/administration/ViewBEC.jsx +++ b/src/views/identity/administration/ViewBEC.jsx @@ -239,6 +239,7 @@ const ViewBec = () => { execBecView({ tenantFilter: tenantDomain, userId: userId, + userName: userName, overwrite: true, }) } From 3bb85f83a000a74f4be95ffb37c956ef6d2844d5 Mon Sep 17 00:00:00 2001 From: cipptesting Date: Wed, 21 Aug 2024 18:47:49 -0400 Subject: [PATCH 10/49] Added Anti-Phishing and Anti-Spam policies to backup --- src/views/tenant/backup/CreateBackup.jsx | 9 +++++++++ src/views/tenant/backup/RestoreBackup.jsx | 7 +++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/views/tenant/backup/CreateBackup.jsx b/src/views/tenant/backup/CreateBackup.jsx index faec25e074a3..d0dd6350219c 100644 --- a/src/views/tenant/backup/CreateBackup.jsx +++ b/src/views/tenant/backup/CreateBackup.jsx @@ -194,6 +194,15 @@ const CreateBackup = () => { name="intuneprotection" label="Intune Protection Policies" /> +

Email Security

+ +

CIPP

{

Conditional Access

-
-

Intune

+
+ +

Email Security

+ +

CIPP

From f690aff93493ea553b87d5d30316d009977196f3 Mon Sep 17 00:00:00 2001 From: OwenC3 <156828136+OwenC3@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:56:07 -0400 Subject: [PATCH 11/49] Update standards.json --- src/data/standards.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/standards.json b/src/data/standards.json index 45e7c0438ea1..4b12a7181b10 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -349,7 +349,7 @@ "name": "standards.TAP", "cat": "Entra (AAD) Standards", "tag": ["lowimpact"], - "helpText": "Enables TAP and sets the default TAP lifetime to 1 hour. This configuration also allows you to select is a TAP is single use or multi-logon.", + "helpText": "Enables TAP and sets the default TAP lifetime to 1 hour. This configuration also allows you to select if a TAP is single use or multi-logon.", "docsDescription": "Enables Temporary Password generation for the tenant.", "addedComponent": [ { @@ -648,7 +648,7 @@ "name": "standards.DisableEmail", "cat": "Entra (AAD) Standards", "tag": ["highimpact"], - "helpText": "This blocks users from using email as an MFA method. This disables the email OTP option for guest users, and instead promts them to create a Microsoft account.", + "helpText": "This blocks users from using email as an MFA method. This disables the email OTP option for guest users, and instead prompts them to create a Microsoft account.", "addedComponent": [], "label": "Disables Email as an MFA method", "impact": "High Impact", From 2fd93963586bd387d32752c453ee206966d56b40 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 22 Aug 2024 17:42:52 -0400 Subject: [PATCH 12/49] Update CippAppPermissionBuilder.jsx --- src/components/utilities/CippAppPermissionBuilder.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/utilities/CippAppPermissionBuilder.jsx b/src/components/utilities/CippAppPermissionBuilder.jsx index 69d6c8c516d3..d270cfc4a7a7 100644 --- a/src/components/utilities/CippAppPermissionBuilder.jsx +++ b/src/components/utilities/CippAppPermissionBuilder.jsx @@ -807,7 +807,7 @@ const CippAppPermissionBuilder = ({ title="Import Manifest" id="importManifest" visible={manifestVisible} - onHide={() => { + hideFunction={() => { setManifestVisible(false) }} addedClass="offcanvas-large" From 4fb3eae37824fc55945eeac306ad492253a4e845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Sat, 24 Aug 2024 15:44:51 +0200 Subject: [PATCH 13/49] Add delete rule button to mailboxrulelist --- .../administration/MailboxRuleList.jsx | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/views/email-exchange/administration/MailboxRuleList.jsx b/src/views/email-exchange/administration/MailboxRuleList.jsx index 34f3798900d8..53d4d57cbc6e 100644 --- a/src/views/email-exchange/administration/MailboxRuleList.jsx +++ b/src/views/email-exchange/administration/MailboxRuleList.jsx @@ -3,6 +3,43 @@ import { useSelector } from 'react-redux' import { CippPageList } from 'src/components/layout' import { CellTip } from 'src/components/tables' import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { CButton } from '@coreui/react' +import { faTrash } from '@fortawesome/free-solid-svg-icons' +import { ModalService } from 'src/components/utilities' +import { useLazyGenericGetRequestQuery } from 'src/store/api/app' + +const DeleteMailboxRuleButton = (ruleId, userPrincipalName, ruleName) => { + const tenant = useSelector((state) => state.app.currentTenant) + const [genericGetRequest, getResults] = useLazyGenericGetRequestQuery() + const handleModal = (modalMessage, modalUrl) => { + ModalService.confirm({ + body: ( +
+
{modalMessage}
+
+ ), + title: 'Confirm', + onConfirm: () => genericGetRequest({ path: modalUrl }), + }) + } + return ( + { + ModalService.confirm( + handleModal( + 'Are you sure you want to remove this mailbox rule?', + `/api/ExecRemoveMailboxRule?TenantFilter=${tenant?.defaultDomainName}&ruleId=${ruleId}&ruleName=${ruleName}&userPrincipalName=${userPrincipalName}`, + ), + ) + }} + > + + + ) +} const MailboxRuleList = () => { const tenant = useSelector((state) => state.app.currentTenant) @@ -62,6 +99,12 @@ const MailboxRuleList = () => { exportSelector: 'ForwardTo', cell: cellGenericFormatter(), }, + { + name: 'Action', + maxWidth: '100px', + cell: (row) => + DeleteMailboxRuleButton(row['Identity'], row['UserPrincipalName'], row['Name']), + }, ] return ( From 1f71fe93797cdce9172173347a44f1709e3f03f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Sat, 24 Aug 2024 16:14:33 +0200 Subject: [PATCH 14/49] Add todo's --- src/views/email-exchange/administration/MailboxRuleList.jsx | 2 ++ src/views/identity/administration/ViewUser.jsx | 3 +++ 2 files changed, 5 insertions(+) diff --git a/src/views/email-exchange/administration/MailboxRuleList.jsx b/src/views/email-exchange/administration/MailboxRuleList.jsx index 53d4d57cbc6e..b941e501e01b 100644 --- a/src/views/email-exchange/administration/MailboxRuleList.jsx +++ b/src/views/email-exchange/administration/MailboxRuleList.jsx @@ -108,6 +108,8 @@ const MailboxRuleList = () => { ] return ( + // TODO: Add support for displaying the result of the delete operation. Currently, the delete operation is performed but the result is not displayed anywhere but the networking tab of the dev tools in the browser. + // All API code is in place and should return the needed HTTP status information. -Bobby { + {/* // TODO: Add support for displaying the result of the delete operation. Currently, the delete operation is performed but the result is not displayed anywhere but the networking tab of the dev tools in the browser. + All API code is in place and should return the needed HTTP status information. + Possibly even remove the row in the table if the delete operation was successful? -Bobby */} Date: Sat, 24 Aug 2024 16:15:01 +0200 Subject: [PATCH 15/49] feat: Add delete rule button to mailboxrulelist --- .../administration/UserMailboxRuleList.jsx | 43 ++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/src/views/identity/administration/UserMailboxRuleList.jsx b/src/views/identity/administration/UserMailboxRuleList.jsx index ae2592866e85..f0a1e05a4d31 100644 --- a/src/views/identity/administration/UserMailboxRuleList.jsx +++ b/src/views/identity/administration/UserMailboxRuleList.jsx @@ -2,7 +2,12 @@ import React from 'react' import PropTypes from 'prop-types' import { CellBoolean, cellBooleanFormatter, CellTip } from 'src/components/tables' import { DatatableContentCard } from 'src/components/contentcards' -import { faEnvelope } from '@fortawesome/free-solid-svg-icons' +import { faEnvelope, faTrash } from '@fortawesome/free-solid-svg-icons' +import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { CButton } from '@coreui/react' +import { ModalService } from 'src/components/utilities' +import { useLazyGenericGetRequestQuery } from 'src/store/api/app' const rowStyle = (row, rowIndex) => { const style = {} @@ -10,6 +15,37 @@ const rowStyle = (row, rowIndex) => { return style } +const DeleteMailboxRuleButton = (tenantDomain, ruleId, userPrincipalName, ruleName) => { + const [genericGetRequest, getResults] = useLazyGenericGetRequestQuery() + const handleModal = (modalMessage, modalUrl) => { + ModalService.confirm({ + body: ( +
+
{modalMessage}
+
+ ), + title: 'Confirm', + onConfirm: () => genericGetRequest({ path: modalUrl }), + }) + } + return ( + { + ModalService.confirm( + handleModal( + 'Are you sure you want to remove this mailbox rule?', + `/api/ExecRemoveMailboxRule?TenantFilter=${tenantDomain}&ruleId=${ruleId}&ruleName=${ruleName}&userPrincipalName=${userPrincipalName}`, + ), + ) + }} + > + + + ) +} + export default function UserMailboxRuleList({ userId, userEmail, tenantDomain, className = null }) { const formatter = (cell) => CellBoolean({ cell }) const columns = [ @@ -70,6 +106,11 @@ export default function UserMailboxRuleList({ userId, userEmail, tenantDomain, c exportSelector: 'DeleteMessage', width: '200px', }, + { + name: 'Action', + maxWidth: '100px', + cell: (row) => DeleteMailboxRuleButton(tenantDomain, row['Identity'], userEmail, row['Name']), + }, ] return ( Date: Sat, 24 Aug 2024 17:16:08 +0200 Subject: [PATCH 16/49] Fix angry linter --- src/views/identity/administration/DeployJITAdmin.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/views/identity/administration/DeployJITAdmin.jsx b/src/views/identity/administration/DeployJITAdmin.jsx index 146ab7d6fef1..b8d5945f001b 100644 --- a/src/views/identity/administration/DeployJITAdmin.jsx +++ b/src/views/identity/administration/DeployJITAdmin.jsx @@ -23,7 +23,6 @@ import 'react-datepicker/dist/react-datepicker.css' import { TenantSelector } from 'src/components/utilities' import arrayMutators from 'final-form-arrays' import DatePicker from 'react-datepicker' -import 'react-datepicker/dist/react-datepicker.css' import { useListUsersQuery } from 'src/store/api/users' import GDAPRoles from 'src/data/GDAPRoles' import { CippDatatable, cellDateFormatter } from 'src/components/tables' From b403887bb0689b6f1edff21d44f0fc37f94db50a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Sat, 24 Aug 2024 17:17:45 +0200 Subject: [PATCH 17/49] Fix another angry linter --- src/views/tenant/backup/CreateBackup.jsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/views/tenant/backup/CreateBackup.jsx b/src/views/tenant/backup/CreateBackup.jsx index d0dd6350219c..c4dbf63ba81c 100644 --- a/src/views/tenant/backup/CreateBackup.jsx +++ b/src/views/tenant/backup/CreateBackup.jsx @@ -195,14 +195,8 @@ const CreateBackup = () => { label="Intune Protection Policies" />

Email Security

- - + +

CIPP

Date: Mon, 26 Aug 2024 21:24:34 -0400 Subject: [PATCH 18/49] Quarantine messages --- src/scss/_custom.scss | 4 ++ .../administration/QuarantineList.jsx | 52 ++++++++++++++++--- .../email-exchange/tools/MessageViewer.jsx | 2 +- 3 files changed, 51 insertions(+), 7 deletions(-) diff --git a/src/scss/_custom.scss b/src/scss/_custom.scss index b118641b872e..2b1e6c2aa248 100644 --- a/src/scss/_custom.scss +++ b/src/scss/_custom.scss @@ -257,6 +257,10 @@ h3.underline:after { } } +.modal { + z-index: 1555 !important; +} + .modal-content { border-radius: var(--cipp-border-radius); } diff --git a/src/views/email-exchange/administration/QuarantineList.jsx b/src/views/email-exchange/administration/QuarantineList.jsx index 6c5de828afec..cc3ac793ad53 100644 --- a/src/views/email-exchange/administration/QuarantineList.jsx +++ b/src/views/email-exchange/administration/QuarantineList.jsx @@ -1,22 +1,44 @@ import React, { useState } from 'react' import { useSelector } from 'react-redux' import { CippPageList } from 'src/components/layout' -import { CButton } from '@coreui/react' +import { CButton, CSpinner, CTooltip } from '@coreui/react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faEllipsisV, faMinusCircle, faPaperPlane } from '@fortawesome/free-solid-svg-icons' -import { CippActionsOffcanvas } from 'src/components/utilities' +import { CippActionsOffcanvas, CippOffcanvas } from 'src/components/utilities' import { cellDateFormatter, CellTip } from 'src/components/tables' +import { MessageViewer } from 'src/views/email-exchange/tools/MessageViewer' +import { ModalService } from 'src/components/utilities' +import { useLazyGenericGetRequestQuery } from 'src/store/api/app' +import PropTypes from 'prop-types' const QuarantineList = () => { const tenant = useSelector((state) => state.app.currentTenant) - const Offcanvas = (row, rowIndex, formatExtraData) => { const [ocVisible, setOCVisible] = useState(false) + const [msgOcVisible, setMsgOcVisible] = useState(false) + const [getQuarantineMessage, quarantineMessage] = useLazyGenericGetRequestQuery() return ( <> - setOCVisible(true)}> - - + + { + setMsgOcVisible(true) + getQuarantineMessage({ + path: `/api/ListMailQuarantineMessage`, + params: { TenantFilter: tenant.defaultDomainName, Identity: row?.Identity }, + }) + }} + > + + + + + setOCVisible(true)}> + + + { id={row.id} hideFunction={() => setOCVisible(false)} /> + setMsgOcVisible(false)} + visible={msgOcVisible} + placement="end" + > + <> + {quarantineMessage.isLoading && ( +
+ Loading message +
+ )} + {quarantineMessage.isSuccess && ( + + )} + +
) } diff --git a/src/views/email-exchange/tools/MessageViewer.jsx b/src/views/email-exchange/tools/MessageViewer.jsx index f010c0b37c4f..bc63e647b186 100644 --- a/src/views/email-exchange/tools/MessageViewer.jsx +++ b/src/views/email-exchange/tools/MessageViewer.jsx @@ -23,7 +23,7 @@ import DOMPurify from 'dompurify' import ReactHtmlParser from 'react-html-parser' import CippDropzone from 'src/components/utilities/CippDropzone' -const MessageViewer = ({ emailSource }) => { +export const MessageViewer = ({ emailSource }) => { const [emlContent, setEmlContent] = useState(null) const [emlError, setEmlError] = useState(false) const [messageHtml, setMessageHtml] = useState('') From c47696393f16ea647f3d7ef4d276a28ea4b74426 Mon Sep 17 00:00:00 2001 From: RunningFreak <156828136+OwenIbarra@users.noreply.github.com> Date: Tue, 27 Aug 2024 12:38:28 -0400 Subject: [PATCH 19/49] Update AzureDeploymentTemplate.json --- deployment/AzureDeploymentTemplate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/AzureDeploymentTemplate.json b/deployment/AzureDeploymentTemplate.json index ff7e9a97bada..dc3222498ec6 100644 --- a/deployment/AzureDeploymentTemplate.json +++ b/deployment/AzureDeploymentTemplate.json @@ -200,7 +200,7 @@ "name": "[variables('funcStorageName')]", "location": "[resourceGroup().location]", "tags": { - "displayName": "funStorageName" + "displayName": "funcStorageName" }, "sku": { "name": "Standard_LRS" From 2173e51d8e6586755842c6ad785c474eb1a3bed8 Mon Sep 17 00:00:00 2001 From: RunningFreak <156828136+OwenIbarra@users.noreply.github.com> Date: Tue, 27 Aug 2024 12:41:33 -0400 Subject: [PATCH 20/49] Update AzureDeploymentTemplate_regionoptions.json --- deployment/AzureDeploymentTemplate_regionoptions.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deployment/AzureDeploymentTemplate_regionoptions.json b/deployment/AzureDeploymentTemplate_regionoptions.json index bc2f24089d4d..ac6691593a0b 100644 --- a/deployment/AzureDeploymentTemplate_regionoptions.json +++ b/deployment/AzureDeploymentTemplate_regionoptions.json @@ -6,7 +6,7 @@ "defaultValue": "CIPP", "type": "string", "metadata": { - "description": "Name use as base-template to named the resources deployed in Azure." + "description": "Name used as base-template to name the resources deployed in Azure." } }, "GithubRepository": { @@ -20,7 +20,7 @@ "defaultValue": "GeneratedPassword", "type": "string", "metadata": { - "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token" + "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token)" } }, "GithubAPIRepository": { @@ -197,7 +197,7 @@ "name": "[variables('funcStorageName')]", "location": "[resourceGroup().location]", "tags": { - "displayName": "funStorageName" + "displayName": "funcStorageName" }, "sku": { "name": "Standard_LRS" From b72a4e7df56941dea5aad475790046575829355c Mon Sep 17 00:00:00 2001 From: RunningFreak <156828136+OwenIbarra@users.noreply.github.com> Date: Tue, 27 Aug 2024 12:43:20 -0400 Subject: [PATCH 21/49] Update DevAzureDeploymentTemplate.json --- deployment/DevAzureDeploymentTemplate.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deployment/DevAzureDeploymentTemplate.json b/deployment/DevAzureDeploymentTemplate.json index 8beefadd450c..5e6077beab41 100644 --- a/deployment/DevAzureDeploymentTemplate.json +++ b/deployment/DevAzureDeploymentTemplate.json @@ -6,7 +6,7 @@ "defaultValue": "CIPPDev", "type": "string", "metadata": { - "description": "Name use as base-template to named the resources deployed in Azure." + "description": "Name used as base-template to name the resources deployed in Azure." } }, "TenantID": { @@ -48,7 +48,7 @@ "defaultValue": "GeneratedPassword", "type": "string", "metadata": { - "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token" + "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token)" } }, "GithubAPIRepository": { @@ -250,7 +250,7 @@ "name": "[variables('funcStorageName')]", "location": "[resourceGroup().location]", "tags": { - "displayName": "funStorageName" + "displayName": "funcStorageName" }, "sku": { "name": "Standard_LRS" From 1c4d5dd313e6e51dc11a801cc7ee48aea1cd91a5 Mon Sep 17 00:00:00 2001 From: RunningFreak <156828136+OwenIbarra@users.noreply.github.com> Date: Tue, 27 Aug 2024 12:44:08 -0400 Subject: [PATCH 22/49] Update DevAzureDeploymentTemplate_regionoptions.json --- deployment/DevAzureDeploymentTemplate_regionoptions.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/DevAzureDeploymentTemplate_regionoptions.json b/deployment/DevAzureDeploymentTemplate_regionoptions.json index 0fb300af06c9..f41e669076e5 100644 --- a/deployment/DevAzureDeploymentTemplate_regionoptions.json +++ b/deployment/DevAzureDeploymentTemplate_regionoptions.json @@ -6,7 +6,7 @@ "defaultValue": "CIPP", "type": "string", "metadata": { - "description": "Name use as base-template to named the resources deployed in Azure." + "description": "Name used as base-template to name the resources deployed in Azure." } }, "TenantID": { @@ -48,7 +48,7 @@ "defaultValue": "GeneratedPassword", "type": "string", "metadata": { - "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token" + "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token)" } }, "GithubAPIRepository": { From 608343461800e7f36d59a7223a5e0fb02f08722b Mon Sep 17 00:00:00 2001 From: RunningFreak <156828136+OwenIbarra@users.noreply.github.com> Date: Tue, 27 Aug 2024 12:56:58 -0400 Subject: [PATCH 23/49] Update SettingsExtensionMappings.jsx --- src/views/cipp/app-settings/SettingsExtensionMappings.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/cipp/app-settings/SettingsExtensionMappings.jsx b/src/views/cipp/app-settings/SettingsExtensionMappings.jsx index 6d7a63d2a3d0..4ed3362e2b59 100644 --- a/src/views/cipp/app-settings/SettingsExtensionMappings.jsx +++ b/src/views/cipp/app-settings/SettingsExtensionMappings.jsx @@ -169,7 +169,7 @@ export function SettingsExtensionMappings({ type }) { ) } - const halocolumns = [ + const haloColumns = [ { name: 'Tenant', selector: (row) => row.Tenant?.displayName, @@ -205,7 +205,7 @@ export function SettingsExtensionMappings({ type }) { }, ] - const ninjacolumns = [ + const ninjaColumns = [ { name: 'Tenant', selector: (row) => row.Tenant?.displayName, @@ -286,7 +286,7 @@ export function SettingsExtensionMappings({ type }) { @@ -439,7 +439,7 @@ export function SettingsExtensionMappings({ type }) { From a9b88a27b81c1c20bddaba700e444502eee0e96c Mon Sep 17 00:00:00 2001 From: John Duprey Date: Tue, 27 Aug 2024 21:18:24 -0400 Subject: [PATCH 24/49] Update QuarantineList.jsx --- src/views/email-exchange/administration/QuarantineList.jsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/views/email-exchange/administration/QuarantineList.jsx b/src/views/email-exchange/administration/QuarantineList.jsx index cc3ac793ad53..87582178f38d 100644 --- a/src/views/email-exchange/administration/QuarantineList.jsx +++ b/src/views/email-exchange/administration/QuarantineList.jsx @@ -10,6 +10,7 @@ import { MessageViewer } from 'src/views/email-exchange/tools/MessageViewer' import { ModalService } from 'src/components/utilities' import { useLazyGenericGetRequestQuery } from 'src/store/api/app' import PropTypes from 'prop-types' +import Skeleton from 'react-loading-skeleton' const QuarantineList = () => { const tenant = useSelector((state) => state.app.currentTenant) @@ -95,11 +96,7 @@ const QuarantineList = () => { placement="end" > <> - {quarantineMessage.isLoading && ( -
- Loading message -
- )} + {quarantineMessage.isLoading && } {quarantineMessage.isSuccess && ( )} From 43491fff83809857bb19b601088a6088e7f3ffb3 Mon Sep 17 00:00:00 2001 From: RunningFreak <156828136+OwenIbarra@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:51:17 -0400 Subject: [PATCH 25/49] Typo --- src/views/endpoint/applications/ApplicationsAddRMM.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/endpoint/applications/ApplicationsAddRMM.jsx b/src/views/endpoint/applications/ApplicationsAddRMM.jsx index a6583e00fd4c..e90e31ff78e3 100644 --- a/src/views/endpoint/applications/ApplicationsAddRMM.jsx +++ b/src/views/endpoint/applications/ApplicationsAddRMM.jsx @@ -325,7 +325,7 @@ const AddRMM = () => {
From 2b4f94abdb319c70d9b2f146b67365eb629c3f96 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Wed, 28 Aug 2024 16:52:33 -0400 Subject: [PATCH 26/49] BEC prettification --- src/store/api/users.js | 1 + src/views/identity/administration/ViewBEC.jsx | 76 ++++++++++++------- 2 files changed, 48 insertions(+), 29 deletions(-) diff --git a/src/store/api/users.js b/src/store/api/users.js index 7ef16f12fdb3..552481567406 100644 --- a/src/store/api/users.js +++ b/src/store/api/users.js @@ -64,6 +64,7 @@ export const usersApi = baseApi.injectEndpoints({ userId: _args.userId, tenantFilter: _args.tenantFilter, userName: _args.userName, + overwrite: _args.overwrite, }, }) if (startRequest.error) { diff --git a/src/views/identity/administration/ViewBEC.jsx b/src/views/identity/administration/ViewBEC.jsx index 3142af80d61e..9a4338d79b88 100644 --- a/src/views/identity/administration/ViewBEC.jsx +++ b/src/views/identity/administration/ViewBEC.jsx @@ -22,6 +22,7 @@ import { CippContentCard, CippMasonry, CippMasonryItem, CippPage } from 'src/com import 'react-loading-skeleton/dist/skeleton.css' import Skeleton from 'react-loading-skeleton' import useConfirmModal from 'src/hooks/useConfirmModal' +import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat' const ViewBec = () => { let query = useQuery() @@ -85,28 +86,33 @@ const ViewBec = () => { const logonColumns = [ { name: 'App', - selector: (row) => row['AppDisplayName'], + selector: (row) => row['appDisplayName'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Date Time', - selector: (row) => row['CreatedDateTime'], + selector: (row) => row['createdDateTime'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Error code', selector: (row) => row.id, sortable: true, + cell: cellGenericFormatter(), }, { name: 'Details', selector: (row) => row.Status, sortable: true, + cell: cellGenericFormatter(), }, { name: 'IP', selector: (row) => row.IPAddress, sortable: true, + cell: cellGenericFormatter(), }, ] @@ -115,21 +121,25 @@ const ViewBec = () => { name: 'IP', selector: (row) => row['IPAddress'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'User', selector: (row) => row['userPrincipalName'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Application', selector: (row) => row['AppDisplayName'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Result', selector: (row) => row['Status'], sortable: true, + cell: cellGenericFormatter(), }, ] const newUserColumns = [ @@ -137,16 +147,19 @@ const ViewBec = () => { name: 'DisplayName', selector: (row) => row['displayName'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Username', selector: (row) => row['userPrincipalName'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Date', - selector: (row) => row['CreatedDateTime'], + selector: (row) => row['createdDateTime'], sortable: true, + cell: cellGenericFormatter(), }, ] @@ -155,16 +168,19 @@ const ViewBec = () => { name: 'displayName', selector: (row) => row['displayName'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Username', selector: (row) => row['userPrincipalName'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Date', selector: (row) => row['lastPasswordChangeDateTime'], sortable: true, + cell: cellGenericFormatter(), }, ] @@ -173,44 +189,46 @@ const ViewBec = () => { name: 'Operation', selector: (row) => row['Operation'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Executed by', selector: (row) => row['UserKey'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Executed on', selector: (row) => row['ObjectId'], sortable: true, + cell: cellGenericFormatter(), }, { name: 'Permissions', selector: (row) => row['Permissions'], sortable: true, + cell: cellGenericFormatter(), }, ] const appColumns = [ { - name: 'Type', - selector: (row) => row['Operation'], - sortable: true, - }, - { - name: 'User', - selector: (row) => row['UserId'], + name: 'Application', + selector: (row) => row['appDisplayName'], sortable: true, + cell: cellGenericFormatter(), }, { - name: 'Application', - selector: (row) => row['ObjectId'], + name: 'Application ID', + selector: (row) => row['appId'], sortable: true, + cell: cellGenericFormatter(), }, { - name: 'Result', - selector: (row) => row['ResultStatus'], + name: 'Created', + selector: (row) => row['createdDateTime'], sortable: true, + cell: cellGenericFormatter(), }, ] const handleReMediate = useConfirmModal({ @@ -304,9 +322,9 @@ const ViewBec = () => { data={alerts.SuspectUserDevices} striped responsive={true} - tableProps={{ subHeaderComponent: false, pagination: false }} + isModal={true} wrapperClasses="table-responsive" - reportName="none" + reportName="bec-user-devices" /> )} @@ -322,8 +340,8 @@ const ViewBec = () => { data={alerts.NewRules} striped responsive={true} - tableProps={{ subHeaderComponent: false }} - reportName="none" + isModal={true} + reportName="bec-inbox-rules" /> )} @@ -338,8 +356,8 @@ const ViewBec = () => { data={alerts.LastSuspectUserLogon} striped responsive={true} - tableProps={{ subHeaderComponent: false }} - reportName="none" + isModal={true} + reportName="bec-suspect-user-logons" /> )} @@ -355,9 +373,9 @@ const ViewBec = () => { data={alerts.NewUsers} striped responsive={true} - tableProps={{ subHeaderComponent: false }} + isModal={true} wrapperClasses="table-responsive" - reportName="none" + reportName="bec-new-users" /> )} @@ -373,9 +391,9 @@ const ViewBec = () => { data={alerts.ChangedPasswords} striped responsive={true} - tableProps={{ subHeaderComponent: false }} + isModal={true} wrapperClasses="table-responsive" - reportName="none" + reportName="bec-changed-passwords" /> )} @@ -391,9 +409,9 @@ const ViewBec = () => { data={alerts.MailboxPermissionChanges} striped responsive={true} - tableProps={{ subHeaderComponent: false }} + isModal={true} wrapperClasses="table-responsive" - reportName="none" + reportName="bec-mailbox-permission-changes" /> )} @@ -409,9 +427,9 @@ const ViewBec = () => { data={alerts.AddedApps} striped responsive={true} - tableProps={{ subHeaderComponent: false }} wrapperClasses="table-responsive" - reportName="none" + isModal={true} + reportName="bec-added-apps" /> )} @@ -427,7 +445,7 @@ const ViewBec = () => { data={alerts.SuspectUserMailboxLogons} striped responsive={true} - tableProps={{ subHeaderComponent: false }} + isModal={true} wrapperClasses="table-responsive" reportName="none" /> From 8a04e24681a08bcfb5dd5a931b030b4c13c5e9d3 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 29 Aug 2024 10:25:39 -0400 Subject: [PATCH 27/49] Update orchestration starter url --- src/views/endpoint/applications/ListApplicationQueue.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/endpoint/applications/ListApplicationQueue.jsx b/src/views/endpoint/applications/ListApplicationQueue.jsx index 53f1e9197d33..eb42ed86ec47 100644 --- a/src/views/endpoint/applications/ListApplicationQueue.jsx +++ b/src/views/endpoint/applications/ListApplicationQueue.jsx @@ -20,7 +20,7 @@ const RefreshAction = () => { Please note: This job runs automatically every 12 hours. ), - onConfirm: () => execStandards({ path: 'api/AddChocoApp_OrchestrationStarter' }), + onConfirm: () => execStandards({ path: 'api/ExecAppUpload' }), }) return ( From fae4360d9cd5bee3db671bf5aacd95812b4e94d0 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 29 Aug 2024 10:42:36 -0400 Subject: [PATCH 28/49] Cleanup queries in Mailbox Settings - Change forwarding to look at proxyAddresses instead of mail - Remove extra queries --- .../administration/EditMailboxPermissions.jsx | 21 ++++--------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.jsx b/src/views/email-exchange/administration/EditMailboxPermissions.jsx index 3f16a1e389d9..ff1e7d2b64ce 100644 --- a/src/views/email-exchange/administration/EditMailboxPermissions.jsx +++ b/src/views/email-exchange/administration/EditMailboxPermissions.jsx @@ -195,7 +195,7 @@ const MailboxPermissions = () => { params: { Endpoint: 'users', TenantFilter: tenantDomain, - $filter: 'assignedLicenses/$count ne 0 and accountEnabled eq true', + $filter: "assignedLicenses/$count ne 0 and accountEnabled eq true and userType eq 'Member'", $count: true, }, }) @@ -586,7 +586,7 @@ const MailboxForwarding = () => { params: { Endpoint: 'users', TenantFilter: tenantDomain, - $filter: "userType eq 'Member' and mail ge ' '", // filter out guests and users with no mailbox. #HACK "mail ne 'null'" does not work so this horrible hack is required + $filter: "userType eq 'Member' and proxyAddresses/$count ne 0", }, }) useEffect(() => { @@ -803,19 +803,6 @@ const OutOfOffice = () => { error: userError, } = useListMailboxPermissionsQuery({ tenantDomain, userId }) - const { - data: users = [], - isFetching: usersIsFetching, - error: usersError, - } = useGenericGetRequestQuery({ - path: '/api/ListGraphRequest', - params: { - Endpoint: 'users', - TenantFilter: tenantDomain, - $filter: 'assignedLicenses/$count ne 0 and accountEnabled eq true', - $count: true, - }, - }) useEffect(() => { if (postResults.isSuccess) { // @TODO do something here? @@ -865,9 +852,9 @@ const OutOfOffice = () => { )} - {usersIsFetching && } + {userIsFetching && } {userError && Error loading user} - {!usersIsFetching && ( + {!userIsFetching && (
Date: Thu, 29 Aug 2024 11:10:00 -0400 Subject: [PATCH 29/49] Update paths for starting BPA/Domain Analyser --- src/store/api/reports.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/api/reports.js b/src/store/api/reports.js index 83be1b4fa361..2292662ad2be 100644 --- a/src/store/api/reports.js +++ b/src/store/api/reports.js @@ -6,10 +6,10 @@ export const reportsApi = baseApi.injectEndpoints({ query: () => ({ path: '/api/BestPracticeAnalyser_List' }), }), execBestPracticeAnalyser: builder.mutation({ - query: () => ({ path: '/api/BestPracticeAnalyser_OrchestrationStarter' }), + query: () => ({ path: '/api/ExecBPA' }), }), execDomainsAnalyser: builder.mutation({ - query: () => ({ path: '/api/DomainAnalyser_OrchestrationStarter' }), + query: () => ({ path: '/api/ExecDomainAnalyser' }), }), }), }) From 0c308b2abb08275824b835526368f7af8a42febb Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 29 Aug 2024 11:17:01 -0400 Subject: [PATCH 30/49] Update BestPracticeAnalyser.jsx --- src/views/tenant/standards/BestPracticeAnalyser.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/tenant/standards/BestPracticeAnalyser.jsx b/src/views/tenant/standards/BestPracticeAnalyser.jsx index a0e1cb00b101..692c39478591 100644 --- a/src/views/tenant/standards/BestPracticeAnalyser.jsx +++ b/src/views/tenant/standards/BestPracticeAnalyser.jsx @@ -61,7 +61,7 @@ const RefreshAction = ({ singleTenant = false, refreshFunction = null }) => { ), onConfirm: () => execBestPracticeAnalyser({ - path: 'api/BestPracticeAnalyser_OrchestrationStarter', + path: 'api/ExecBPA', params: params, }), }) From 94eb15fe07074521254b2f36cf0b2c254b76fc4c Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 30 Aug 2024 01:11:46 +0200 Subject: [PATCH 31/49] alert update --- src/data/alerts.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/data/alerts.json b/src/data/alerts.json index 13f18265caf4..fe03d7b6a968 100644 --- a/src/data/alerts.json +++ b/src/data/alerts.json @@ -19,6 +19,11 @@ "label": "Alert on changed admin Passwords", "recommendedRunInterval": "30m" }, + { + "name": "InactiveLicensedUsers", + "label": "Alert on licensed users that have not logged in for 90 days", + "recommendedRunInterval": "1d" + }, { "name": "QuotaUsed", "label": "Alert on % mailbox quota used", From 529277ea490bfe67409f89a8f267783737e8e67b Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 29 Aug 2024 22:14:20 -0400 Subject: [PATCH 32/49] Improve edit mailbox page --- src/store/api/app.js | 1 + .../administration/EditMailboxPermissions.jsx | 180 ++++++++++++++---- 2 files changed, 143 insertions(+), 38 deletions(-) diff --git a/src/store/api/app.js b/src/store/api/app.js index 3eaa06328f84..bb2e4bb45ce2 100644 --- a/src/store/api/app.js +++ b/src/store/api/app.js @@ -139,4 +139,5 @@ export const { useLazyGenericPostRequestQuery, useLazyGenericGetRequestQuery, useGenericGetRequestQuery, + useGenericPostRequestQuery, } = appApi diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.jsx b/src/views/email-exchange/administration/EditMailboxPermissions.jsx index ff1e7d2b64ce..efd01a155d52 100644 --- a/src/views/email-exchange/administration/EditMailboxPermissions.jsx +++ b/src/views/email-exchange/administration/EditMailboxPermissions.jsx @@ -14,6 +14,8 @@ import { CForm, CRow, CSpinner, + CLink, + CBadge, } from '@coreui/react' import useQuery from 'src/hooks/useQuery' import { useDispatch } from 'react-redux' @@ -24,14 +26,16 @@ import { useLazyGenericPostRequestQuery, useLazyGenericGetRequestQuery, useGenericGetRequestQuery, + useGenericPostRequestQuery, } from 'src/store/api/app' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faCircleNotch } from '@fortawesome/free-solid-svg-icons' import { useListMailboxDetailsQuery, useListMailboxPermissionsQuery } from 'src/store/api/mailbox' -import { CellBoolean, CippDatatable } from 'src/components/tables' +import { CellBadge, CellBoolean, CippDatatable } from 'src/components/tables' import DatePicker from 'react-datepicker' import 'react-datepicker/dist/react-datepicker.css' import PropTypes from 'prop-types' +import Skeleton from 'react-loading-skeleton' const formatter = (cell, warning = false, reverse = false, colourless = false) => CellBoolean({ cell, warning, reverse, colourless }) @@ -196,7 +200,9 @@ const MailboxPermissions = () => { Endpoint: 'users', TenantFilter: tenantDomain, $filter: "assignedLicenses/$count ne 0 and accountEnabled eq true and userType eq 'Member'", + $select: 'id,displayName,userPrincipalName', $count: true, + $orderby: 'displayName', }, }) @@ -258,8 +264,8 @@ const MailboxPermissions = () => { label="Remove Full Access" disabled={formDisabled} values={users?.Results?.map((user) => ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, + value: user.userPrincipalName, + name: `${user.displayName} - ${user.userPrincipalName} `, }))} placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} name="RemoveFullAccess" @@ -272,8 +278,8 @@ const MailboxPermissions = () => { label="Add Full Access - Automapping Enabled" disabled={formDisabled} values={users?.Results?.map((user) => ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, + value: user.userPrincipalName, + name: `${user.displayName} - ${user.userPrincipalName} `, }))} placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} name="AddFullAccess" @@ -286,8 +292,8 @@ const MailboxPermissions = () => { label="Add Full Access - Automapping Disabled" disabled={formDisabled} values={users?.Results?.map((user) => ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, + value: user.userPrincipalName, + name: `${user.displayName} - ${user.userPrincipalName} `, }))} placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} name="AddFullAccessNoAutoMap" @@ -300,8 +306,8 @@ const MailboxPermissions = () => { label="Add Send-as permissions" disabled={formDisabled} values={users?.Results?.map((user) => ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, + value: user.userPrincipalName, + name: `${user.displayName} - ${user.userPrincipalName} `, }))} placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} name="AddSendAs" @@ -314,8 +320,8 @@ const MailboxPermissions = () => { label="Remove Send-as permissions" disabled={formDisabled} values={users?.Results?.map((user) => ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, + value: user.userPrincipalName, + name: `${user.displayName} - ${user.userPrincipalName} `, }))} placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} name="RemoveSendAs" @@ -328,8 +334,8 @@ const MailboxPermissions = () => { label="Add Send On Behalf permissions" disabled={formDisabled} values={users?.Results?.map((user) => ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, + value: user.userPrincipalName, + name: `${user.displayName} - ${user.userPrincipalName} `, }))} placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} name="AddSendOnBehalf" @@ -342,8 +348,8 @@ const MailboxPermissions = () => { label="Remove Send On Behalf permissions" disabled={formDisabled} values={users?.Results?.map((user) => ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, + value: user.userPrincipalName, + name: `${user.displayName} - ${user.userPrincipalName} `, }))} placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} name="RemoveSendOnBehalf" @@ -587,6 +593,9 @@ const MailboxForwarding = () => { Endpoint: 'users', TenantFilter: tenantDomain, $filter: "userType eq 'Member' and proxyAddresses/$count ne 0", + $select: 'id,displayName,userPrincipalName', + $count: true, + $orderby: 'displayName', }, }) useEffect(() => { @@ -664,8 +673,8 @@ const MailboxForwarding = () => { multi={true} disabled={formDisabled} values={users?.Results?.map((user) => ({ - value: user.mail, - name: `${user.displayName} - ${user.mail} `, + value: user.userPrincipalName, + name: `${user.displayName} - ${user.userPrincipalName} `, }))} placeholder={!usersIsFetching ? 'Select user' : 'Loading...'} name="ForwardInternal" @@ -759,31 +768,126 @@ const ForwardingSettings = () => { const query = useQuery() const userId = query.get('userId') const tenantDomain = query.get('tenantDomain') - const { data: details, isFetching, error } = useListMailboxDetailsQuery({ userId, tenantDomain }) - const content = [ - { - heading: 'Forward and Deliver', - body: formatter(details?.ForwardAndDeliver, false, false, true), - }, - { - heading: 'Forwarding Address', - body: details?.ForwardingAddress ? details?.ForwardingAddress : 'N/A', + const [content, setContent] = useState([]) + const { + data: details, + isFetching, + isSuccess, + error, + } = useGenericPostRequestQuery({ + path: `/api/ListExoRequest?Cmdlet=Get-Mailbox&TenantFilter=${tenantDomain}&Select=ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward`, + values: { Identity: userId }, + }) + + const { + data: users = [], + isFetching: usersIsFetching, + isSuccess: usersSuccess, + error: usersError, + } = useGenericGetRequestQuery({ + path: '/api/ListGraphRequest', + params: { + Endpoint: 'users', + TenantFilter: tenantDomain, + $filter: "userType eq 'Member' and proxyAddresses/$count ne 0", + $select: 'id,displayName,userPrincipalName', + $count: true, }, - ] + }) + + useEffect(() => { + if (usersSuccess && isSuccess) { + if (details?.Results?.ForwardingAddress) { + var user = null + if ( + details?.Results?.ForwardingAddress.match( + /^[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}$/, + ) + ) { + const userId = details?.Results?.ForwardingAddress + user = users?.Results?.find((u) => u.id === userId) + } + if (user) { + setContent([ + { + heading: 'Forward and Deliver', + body: formatter(details?.Results?.DeliverToMailboxAndForward, false, false, true), + }, + { + heading: 'Forwarding Address', + body: ( + <> + + Internal + + {user.displayName} + + ), + }, + ]) + } else { + setContent([ + { + heading: 'Forward and Deliver', + body: formatter(details?.Results?.DeliverToMailboxAndForward, false, false, true), + }, + { + heading: 'Forwarding Address', + body: ( + <> + + Internal + + {details?.Results?.ForwardingAddress} + + ), + }, + ]) + } + } else if (details?.Results?.ForwardingSmtpAddress) { + var smtpAddress = details?.Results?.ForwardingSmtpAddress.replace('smtp:', '') + setContent([ + { + heading: 'Forward and Deliver', + body: formatter(details?.Results?.DeliverToMailboxAndForward, false, false, true), + }, + { + heading: 'Forwarding Address', + body: ( + <> + + External + + {smtpAddress} + + ), + }, + ]) + } + } else if (usersIsFetching || isFetching) { + setContent([ + { + heading: 'Forward and Deliver', + body: , + }, + { + heading: 'Forwarding Address', + body: , + }, + ]) + } + }, [users, details, usersSuccess, isSuccess]) return ( - {isFetching && } - {!isFetching && ( - - {content.map((item, index) => ( -
-
{item.heading}
-

{item.body}

-
- ))} -
- )} + + {content.map((item, index) => ( +
+
{item.heading}
+

{item.body}

+
+ ))} +
) } From 90b09c7ab1f86d32c6b240d0b9b825ec56599ba4 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 29 Aug 2024 22:55:46 -0400 Subject: [PATCH 33/49] Update settings panel on save for fwd and ooo --- .../administration/EditMailboxPermissions.jsx | 160 ++++++++++++++---- 1 file changed, 127 insertions(+), 33 deletions(-) diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.jsx b/src/views/email-exchange/administration/EditMailboxPermissions.jsx index efd01a155d52..bb6613f63d33 100644 --- a/src/views/email-exchange/administration/EditMailboxPermissions.jsx +++ b/src/views/email-exchange/administration/EditMailboxPermissions.jsx @@ -46,6 +46,8 @@ const MailboxSettings = () => { const userId = query.get('userId') const tenantDomain = query.get('tenantDomain') const [active, setActive] = useState(1) + const [forwardingRefresh, setForwardingRefresh] = useState('0') + const [oooRefresh, setOooRefresh] = useState('0') const columnsCal = [ { name: 'User', @@ -126,12 +128,20 @@ const MailboxSettings = () => { - + + setForwardingRefresh((Math.random() + 1).toString(36).substring(7)) + } + /> - + + setOooRefresh((Math.random() + 1).toString(36).substring(7)) + } + /> @@ -162,12 +172,20 @@ const MailboxSettings = () => { )} {active === 3 && ( <> - + )} {active === 4 && ( <> - + )} @@ -566,7 +584,7 @@ const CalendarPermissions = () => { ) } -const MailboxForwarding = () => { +const MailboxForwarding = ({ refreshFunction }) => { const dispatch = useDispatch() let query = useQuery() const userId = query.get('userId') @@ -622,7 +640,9 @@ const MailboxForwarding = () => { disableForwarding: values.forwardOption === 'disabled', } //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/ExecEmailForward', values: shippedValues }) + genericPostRequest({ path: '/api/ExecEmailForward', values: shippedValues }).then(() => { + refreshFunction() + }) } const initialState = { ...user, @@ -670,7 +690,6 @@ const MailboxForwarding = () => { {values.forwardOption === 'internalAddress' && ( ({ value: user.userPrincipalName, @@ -763,19 +782,24 @@ const MailboxForwarding = () => { ) } +MailboxForwarding.propTypes = { + refreshFunction: PropTypes.func, +} -const ForwardingSettings = () => { +const ForwardingSettings = ({ refresh }) => { const query = useQuery() const userId = query.get('userId') const tenantDomain = query.get('tenantDomain') const [content, setContent] = useState([]) + const [showLoading, setShowLoading] = useState(false) + const [currentRefresh, setCurrentRefresh] = useState('') const { data: details, isFetching, isSuccess, error, } = useGenericPostRequestQuery({ - path: `/api/ListExoRequest?Cmdlet=Get-Mailbox&TenantFilter=${tenantDomain}&Select=ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward`, + path: `/api/ListExoRequest?Cmdlet=Get-Mailbox&TenantFilter=${tenantDomain}&Select=ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward&refresh=${refresh}`, values: { Identity: userId }, }) @@ -796,8 +820,13 @@ const ForwardingSettings = () => { }) useEffect(() => { + if (refresh !== currentRefresh) { + setShowLoading(false) + setCurrentRefresh(refresh) + } + if (usersSuccess && isSuccess) { - if (details?.Results?.ForwardingAddress) { + if (details?.Results?.ForwardingAddress !== null) { var user = null if ( details?.Results?.ForwardingAddress.match( @@ -844,7 +873,7 @@ const ForwardingSettings = () => { }, ]) } - } else if (details?.Results?.ForwardingSmtpAddress) { + } else if (details?.Results?.ForwardingSmtpAddress !== null) { var smtpAddress = details?.Results?.ForwardingSmtpAddress.replace('smtp:', '') setContent([ { @@ -863,8 +892,19 @@ const ForwardingSettings = () => { ), }, ]) + } else { + setContent([ + { + heading: 'Forward and Deliver', + body: formatter(details?.Results?.DeliverToMailboxAndForward, false, false, true), + }, + { + heading: 'Forwarding Address', + body: 'N/A', + }, + ]) } - } else if (usersIsFetching || isFetching) { + } else if ((isFetching || usersIsFetching) && showLoading === false) { setContent([ { heading: 'Forward and Deliver', @@ -875,8 +915,19 @@ const ForwardingSettings = () => { body: , }, ]) + setShowLoading(true) } - }, [users, details, usersSuccess, isSuccess]) + }, [ + refresh, + currentRefresh, + users, + details, + usersSuccess, + isSuccess, + isFetching, + usersIsFetching, + showLoading, + ]) return ( @@ -888,11 +939,24 @@ const ForwardingSettings = () => { ))} + + setCurrentRefresh((Math.random() + 1).toString(36).substring(7))} + color="primary" + variant="ghost" + className="float-end" + > + + + ) } +ForwardingSettings.propTypes = { + refresh: PropTypes.string, +} -const OutOfOffice = () => { +const OutOfOffice = ({ refreshFunction }) => { const dispatch = useDispatch() let query = useQuery() const userId = query.get('userId') @@ -932,7 +996,9 @@ const OutOfOffice = () => { ExternalMessage: values.ExternalMessage ? values.ExternalMessage : '', } //window.alert(JSON.stringify(shippedValues)) - genericPostRequest({ path: '/api/ExecSetOoO', values: shippedValues }) + genericPostRequest({ path: '/api/ExecSetOoO', values: shippedValues }).then(() => { + refreshFunction() + }) } const initialState = { ...user, @@ -1049,18 +1115,26 @@ const OutOfOffice = () => { ) } -const OutOfOfficeSettings = () => { +const OutOfOfficeSettings = ({ refresh }) => { const query = useQuery() const userId = query.get('userId') const tenantDomain = query.get('tenantDomain') const tenantFilter = tenantDomain + const [currentRefresh, setCurrentRefresh] = useState('') + + useEffect(() => { + if (refresh !== currentRefresh) { + setCurrentRefresh(refresh) + } + }, [refresh, currentRefresh, setCurrentRefresh]) + const { data: details, isFetching, error, } = useGenericGetRequestQuery({ path: '/api/ListOoO', - params: { userId, tenantFilter }, + params: { userId, tenantFilter, currentRefresh }, }) const combinedRegex = /(<([^>]+)>)|| /gi const content = [ @@ -1087,22 +1161,42 @@ const OutOfOfficeSettings = () => { ] return ( - {isFetching && ( - - Loading - - )} - {!isFetching && ( - - {content.map((item, index) => ( -
-
{item.heading}
-

{item.body}

-
- ))} -
- )} - {error && Could not connect to API: {error.message}} + + {isFetching && ( + <> + {content.map((item, index) => ( +
+
{item.heading}
+

+ +

+
+ ))} + + )} + {!isFetching && ( + <> + {content.map((item, index) => ( +
+
{item.heading}
+

{item.body}

+
+ ))} + + )} + + {error && Could not connect to API: {error.message}} +
+ + setCurrentRefresh((Math.random() + 1).toString(36).substring(7))} + color="primary" + variant="ghost" + className="float-end" + > + + +
) } From 423ed7e4254b32ff9fdd89a399792f9fc0c64b83 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 29 Aug 2024 23:10:27 -0400 Subject: [PATCH 34/49] Update EditMailboxPermissions.jsx --- .../administration/EditMailboxPermissions.jsx | 63 +++++++++---------- 1 file changed, 29 insertions(+), 34 deletions(-) diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.jsx b/src/views/email-exchange/administration/EditMailboxPermissions.jsx index bb6613f63d33..9283001ca1f3 100644 --- a/src/views/email-exchange/administration/EditMailboxPermissions.jsx +++ b/src/views/email-exchange/administration/EditMailboxPermissions.jsx @@ -791,7 +791,6 @@ const ForwardingSettings = ({ refresh }) => { const userId = query.get('userId') const tenantDomain = query.get('tenantDomain') const [content, setContent] = useState([]) - const [showLoading, setShowLoading] = useState(false) const [currentRefresh, setCurrentRefresh] = useState('') const { data: details, @@ -799,7 +798,7 @@ const ForwardingSettings = ({ refresh }) => { isSuccess, error, } = useGenericPostRequestQuery({ - path: `/api/ListExoRequest?Cmdlet=Get-Mailbox&TenantFilter=${tenantDomain}&Select=ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward&refresh=${refresh}`, + path: `/api/ListExoRequest?Cmdlet=Get-Mailbox&TenantFilter=${tenantDomain}&Select=ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward&refresh=${currentRefresh}`, values: { Identity: userId }, }) @@ -821,7 +820,6 @@ const ForwardingSettings = ({ refresh }) => { useEffect(() => { if (refresh !== currentRefresh) { - setShowLoading(false) setCurrentRefresh(refresh) } @@ -904,42 +902,39 @@ const ForwardingSettings = ({ refresh }) => { }, ]) } - } else if ((isFetching || usersIsFetching) && showLoading === false) { - setContent([ - { - heading: 'Forward and Deliver', - body: , - }, - { - heading: 'Forwarding Address', - body: , - }, - ]) - setShowLoading(true) } - }, [ - refresh, - currentRefresh, - users, - details, - usersSuccess, - isSuccess, - isFetching, - usersIsFetching, - showLoading, - ]) + }, [refresh, currentRefresh, users, details, usersSuccess, isSuccess]) return ( - - {content.map((item, index) => ( -
-
{item.heading}
-

{item.body}

-
- ))} + + {isFetching || usersIsFetching ? ( + <> +
+
Forward and Deliver
+

+ +

+
+
+
Forwarding Address
+

+ +

+
+ + ) : ( + <> + {content.map((item, index) => ( +
+
{item.heading}
+

{item.body}

+
+ ))} + + )}
- + setCurrentRefresh((Math.random() + 1).toString(36).substring(7))} color="primary" From 6495cb15b3d68fd6275ed9886557c20d65768cbd Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 29 Aug 2024 23:11:43 -0400 Subject: [PATCH 35/49] add proptypes --- .../administration/EditMailboxPermissions.jsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.jsx b/src/views/email-exchange/administration/EditMailboxPermissions.jsx index 9283001ca1f3..bddce9e02628 100644 --- a/src/views/email-exchange/administration/EditMailboxPermissions.jsx +++ b/src/views/email-exchange/administration/EditMailboxPermissions.jsx @@ -1109,6 +1109,9 @@ const OutOfOffice = ({ refreshFunction }) => { ) } +OutOfOffice.propTypes = { + refreshFunction: PropTypes.func, +} const OutOfOfficeSettings = ({ refresh }) => { const query = useQuery() @@ -1195,3 +1198,6 @@ const OutOfOfficeSettings = ({ refresh }) => {
) } +OutOfOfficeSettings.propTypes = { + refresh: PropTypes.string, +} From 9eb600c5a1fe70bcd66a78a616a187a61bc22614 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 30 Aug 2024 13:44:07 +0200 Subject: [PATCH 36/49] added get bitlocker key --- src/views/identity/administration/Devices.jsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/views/identity/administration/Devices.jsx b/src/views/identity/administration/Devices.jsx index 664f7552757c..f7808c39034a 100644 --- a/src/views/identity/administration/Devices.jsx +++ b/src/views/identity/administration/Devices.jsx @@ -36,6 +36,13 @@ const DevicesList = () => { modalUrl: `/api/ExecDeviceDelete?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}&Action=Enable`, modalMessage: 'Are you sure you want to enable this device.', }, + { + label: 'Retrieve Bitlocker Keys', + color: 'info', + modal: true, + modalUrl: `/api/ExecGetRecoveryKey?TenantFilter=${tenant.defaultDomainName}&GUID=${row.id}`, + modalMessage: 'Are you sure you want to retrieve the Bitlocker keys?', + }, { label: 'Disable Device', color: 'info', From cb32a993ed4aa1e60240ab7cb09802f79cd1a1c2 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Fri, 30 Aug 2024 09:01:59 -0400 Subject: [PATCH 37/49] Move entire request to post body --- .../administration/EditMailboxPermissions.jsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.jsx b/src/views/email-exchange/administration/EditMailboxPermissions.jsx index bddce9e02628..740aa2417455 100644 --- a/src/views/email-exchange/administration/EditMailboxPermissions.jsx +++ b/src/views/email-exchange/administration/EditMailboxPermissions.jsx @@ -798,8 +798,14 @@ const ForwardingSettings = ({ refresh }) => { isSuccess, error, } = useGenericPostRequestQuery({ - path: `/api/ListExoRequest?Cmdlet=Get-Mailbox&TenantFilter=${tenantDomain}&Select=ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward&refresh=${currentRefresh}`, - values: { Identity: userId }, + path: `/api/ListExoRequest`, + values: { + TenantFilter: tenantDomain, + Cmdlet: 'Get-Mailbox', + cmdParams: { Identity: userId }, + Select: 'ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward', + refresh: currentRefresh, + }, }) const { From 2e15063054f1c58f386cb1bf1d3e8cac7516386a Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 30 Aug 2024 15:47:46 +0200 Subject: [PATCH 38/49] Right of Boom logo --- public/img/RoB-light.svg | 17 +++++++++++++++++ public/img/RoB.svg | 25 +++++++++++++++++++++++++ public/img/datto.png | Bin 15316 -> 0 bytes src/components/layout/AppFooter.jsx | 10 +++++++--- 4 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 public/img/RoB-light.svg create mode 100644 public/img/RoB.svg delete mode 100644 public/img/datto.png diff --git a/public/img/RoB-light.svg b/public/img/RoB-light.svg new file mode 100644 index 000000000000..0673b2a8a449 --- /dev/null +++ b/public/img/RoB-light.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/RoB.svg b/public/img/RoB.svg new file mode 100644 index 000000000000..d188e1eb541b --- /dev/null +++ b/public/img/RoB.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/img/datto.png b/public/img/datto.png deleted file mode 100644 index b0fad6f50233e46eed52acb6d6c5e037aabecfda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15316 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 diff --git a/src/components/layout/AppFooter.jsx b/src/components/layout/AppFooter.jsx index c720c8f5a35b..09087af3a00e 100644 --- a/src/components/layout/AppFooter.jsx +++ b/src/components/layout/AppFooter.jsx @@ -10,7 +10,7 @@ const AppFooter = () => { const isDark = currentTheme === 'impact' || (currentTheme === 'default' && preferredTheme === 'impact') - const datto = isDark ? '/img/datto.png' : '/img/datto.png' + const RoB = isDark ? '/img/RoB.svg' : '/img/RoB-light.svg' const huntress = isDark ? '/img/huntress_teal.png' : '/img/huntress_teal.png' const rewst = isDark ? '/img/rewst_dark.png' : '/img/rewst.png' const ninjaone = isDark ? '/img/ninjaone_dark.png' : '/img/ninjaone.png' @@ -24,8 +24,12 @@ const AppFooter = () => { - - + + From 46b15c72b3b907618fe273d88e6a7188a2ae58fb Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Fri, 30 Aug 2024 18:59:28 +0200 Subject: [PATCH 39/49] update version --- package.json | 2 +- public/version_latest.txt | 2 +- version_latest.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index b74d149fe82e..2739d1d2801a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cipp", - "version": "6.3.0", + "version": "6.4.0", "description": "The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners.", "homepage": "https://cipp.app/", "bugs": { diff --git a/public/version_latest.txt b/public/version_latest.txt index 798e38995c4d..19b860c1872d 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -6.3.0 +6.4.0 diff --git a/version_latest.txt b/version_latest.txt index 798e38995c4d..19b860c1872d 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -6.3.0 +6.4.0 From 557efcddba65c731f21495873513371abd491bf2 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 5 Sep 2024 08:42:29 -0400 Subject: [PATCH 40/49] Update .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 47dfb11e20c3..0c9f36fe2e8a 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,5 @@ npm-debug.log* yarn-debug.log* yarn-error.log* -__* \ No newline at end of file +__* +.next/* From b8c26ec862d6cdd9552cd5498c2b5ea6a19fbd4b Mon Sep 17 00:00:00 2001 From: John Duprey Date: Mon, 30 Sep 2024 16:49:12 -0400 Subject: [PATCH 41/49] CippAppPermissionBuilder fixes --- .../utilities/CippAppPermissionBuilder.jsx | 29 +++++++++++++------ 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/src/components/utilities/CippAppPermissionBuilder.jsx b/src/components/utilities/CippAppPermissionBuilder.jsx index d270cfc4a7a7..8959b4f826fa 100644 --- a/src/components/utilities/CippAppPermissionBuilder.jsx +++ b/src/components/utilities/CippAppPermissionBuilder.jsx @@ -60,7 +60,6 @@ const CippAppPermissionBuilder = ({ } = useGenericGetRequestQuery({ path: 'api/ExecServicePrincipals', }) - const [createServicePrincipal, createResult] = useLazyGenericGetRequestQuery() const removeServicePrincipal = (appId) => { @@ -407,9 +406,17 @@ const CippAppPermissionBuilder = ({ ]) const ApiPermissionRow = ({ servicePrincipal = null }) => { + const { + data: servicePrincipalData = [], + isFetching: spFetching, + isSuccess: spIdSuccess, + } = useGenericGetRequestQuery({ + path: 'api/ExecServicePrincipals?Id=' + servicePrincipal.id, + }) + return ( <> - {spSuccess && servicePrincipal !== null && ( + {spSuccess && servicePrincipal !== null && spIdSuccess && ( @@ -457,7 +464,7 @@ const CippAppPermissionBuilder = ({ '.applicationPermissions' } label="Application Permissions" - values={servicePrincipal?.appRoles + values={servicePrincipalData?.Results?.appRoles ?.filter((role) => { return newPermissions?.Permissions[ servicePrincipal.appId @@ -524,8 +531,9 @@ const CippAppPermissionBuilder = ({ }, { selector: (row) => - servicePrincipal.appRoles.find((role) => role.id === row.id) - .description, + servicePrincipalData?.Results?.appRoles.find( + (role) => role.id === row.id, + ).description, name: 'Description', cell: cellGenericFormatter({ wrap: true }), maxWidth: '60%', @@ -577,7 +585,7 @@ const CippAppPermissionBuilder = ({ - {servicePrincipal?.publishedPermissionScopes?.length == 0 && ( + {servicePrincipalData?.Results?.publishedPermissionScopes?.length == 0 && ( No Published Delegated Permissions found. @@ -594,8 +602,8 @@ const CippAppPermissionBuilder = ({ } label="Delegated Permissions" values={ - servicePrincipal?.publishedPermissionScopes?.length > 0 - ? servicePrincipal?.publishedPermissionScopes + servicePrincipalData?.Results?.publishedPermissionScopes?.length > 0 + ? servicePrincipalData?.Results?.publishedPermissionScopes .filter((scopes) => { return newPermissions?.Permissions[ servicePrincipal.appId @@ -664,7 +672,7 @@ const CippAppPermissionBuilder = ({ }, { selector: (row) => - servicePrincipal.publishedPermissionScopes.find( + servicePrincipalData?.Results?.publishedPermissionScopes.find( (scope) => scope?.id === row?.id, )?.userConsentDescription ?? 'No Description', name: 'Description', @@ -921,6 +929,9 @@ const CippAppPermissionBuilder = ({ Object.keys( newPermissions?.MissingPermissions[perm], ).map((type) => { + if (!updatedPermissions.Permissions[perm][type]) { + updatedPermissions.Permissions[perm][type] = [] + } newPermissions?.MissingPermissions[perm][type].map( (p) => { updatedPermissions.Permissions[perm][type].push(p) From 3b87108c37caa7715f47a8f32b9fc296dbf05620 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Fri, 4 Oct 2024 16:55:05 -0400 Subject: [PATCH 42/49] Add zipdeploy --- deployment/AzureDeploymentTemplate.json | 53 +++++++------------ ...AzureDeploymentTemplate_regionoptions.json | 50 +++++++---------- 2 files changed, 36 insertions(+), 67 deletions(-) diff --git a/deployment/AzureDeploymentTemplate.json b/deployment/AzureDeploymentTemplate.json index dc3222498ec6..8bc7b610d9e3 100644 --- a/deployment/AzureDeploymentTemplate.json +++ b/deployment/AzureDeploymentTemplate.json @@ -57,7 +57,7 @@ "objectId": "[reference(resourceId('Microsoft.Web/sites', variables('funcAppName')),'2019-08-01', 'full').identity.principalId]", "permissions": { "keys": [], - "secrets": ["all"], + "secrets": [ "all" ], "certificates": [] } } @@ -116,7 +116,7 @@ ] } ], - "dependsOn": ["[resourceId('Microsoft.Web/sites', variables('funcAppName'))]"] + "dependsOn": [ "[resourceId('Microsoft.Web/sites', variables('funcAppName'))]" ] }, { "apiVersion": "2015-08-01", @@ -135,7 +135,7 @@ "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('serverFarmName'))]", "siteConfig": { "Use32BitWorkerProcess": false, - "powerShellVersion": "7.2", + "powerShellVersion": "7.4", "appSettings": [ { "name": "AzureWebJobsStorage", @@ -154,20 +154,8 @@ "value": "~4" }, { - "name": "ApplicationID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationId)')]" - }, - { - "name": "ApplicationSecret", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationSecret)')]" - }, - { - "name": "RefreshToken", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/RefreshToken)')]" - }, - { - "name": "TenantID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/tenantid)')]" + "name": "WEBSITE_RUN_FROM_PACKAGE", + "value": "1" }, { "name": "FUNCTIONS_WORKER_RUNTIME", @@ -175,24 +163,19 @@ } ] } - }, - "resources": [ - { - "apiVersion": "2015-08-01", - "name": "web", - "type": "sourcecontrols", - "dependsOn": ["[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]"], - "properties": { - "RepoUrl": "[parameters('GithubAPIRepository')]", - "repositoryToken": "[parameters('GithubToken')]", - "token": "[parameters('GithubToken')]", - - "branch": "master", - "publishRunbook": true, - "IsManualIntegration": true - } - } - ] + } + }, + { + "name": "[concat(variables('funcAppName'), '/ZipDeploy')]", + "type": "Microsoft.Web/sites/extensions", + "apiVersion": "2021-02-01", + "location": "[resourceGroup().location]", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', variables('funcAppName'))]" + ], + "properties": { + "packageUri": "https://cippreleases.blob.core.windows.net/cipp-api/latest.zip" + } }, { "type": "Microsoft.Storage/storageAccounts", diff --git a/deployment/AzureDeploymentTemplate_regionoptions.json b/deployment/AzureDeploymentTemplate_regionoptions.json index ac6691593a0b..ff4d9331da35 100644 --- a/deployment/AzureDeploymentTemplate_regionoptions.json +++ b/deployment/AzureDeploymentTemplate_regionoptions.json @@ -57,7 +57,7 @@ "objectId": "[reference(resourceId('Microsoft.Web/sites', variables('funcAppName')),'2019-08-01', 'full').identity.principalId]", "permissions": { "keys": [], - "secrets": ["all"], + "secrets": [ "all" ], "certificates": [] } } @@ -116,7 +116,7 @@ ] } ], - "dependsOn": ["[resourceId('Microsoft.Web/sites', variables('funcAppName'))]"] + "dependsOn": [ "[resourceId('Microsoft.Web/sites', variables('funcAppName'))]" ] }, { "apiVersion": "2015-08-01", @@ -135,7 +135,7 @@ "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('serverFarmName'))]", "siteConfig": { "Use32BitWorkerProcess": false, - "powerShellVersion": "7.2", + "powerShellVersion": "7.4", "appSettings": [ { "name": "AzureWebJobsStorage", @@ -154,20 +154,8 @@ "value": "~4" }, { - "name": "ApplicationID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationId)')]" - }, - { - "name": "ApplicationSecret", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/ApplicationSecret)')]" - }, - { - "name": "RefreshToken", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/RefreshToken)')]" - }, - { - "name": "TenantID", - "value": "[concat('@Microsoft.KeyVault(SecretUri=https://',variables('uniqueResourceNameBase'), '.vault.azure.net/secrets/tenantid)')]" + "name": "WEBSITE_RUN_FROM_PACKAGE", + "value": "1" }, { "name": "FUNCTIONS_WORKER_RUNTIME", @@ -175,21 +163,19 @@ } ] } - }, - "resources": [ - { - "apiVersion": "2015-08-01", - "name": "web", - "type": "sourcecontrols", - "dependsOn": ["[resourceId('Microsoft.Web/sites/', variables('funcAppName'))]"], - "properties": { - "RepoUrl": "[parameters('GithubAPIRepository')]", - "branch": "master", - "publishRunbook": true, - "IsManualIntegration": true - } - } - ] + } + }, + { + "name": "[concat(variables('funcAppName'), '/ZipDeploy')]", + "type": "Microsoft.Web/sites/extensions", + "apiVersion": "2021-02-01", + "location": "[resourceGroup().location]", + "dependsOn": [ + "[resourceId('Microsoft.Web/sites', variables('funcAppName'))]" + ], + "properties": { + "packageUri": "https://cippreleases.blob.core.windows.net/cipp-api/latest.zip" + } }, { "type": "Microsoft.Storage/storageAccounts", From 37fb0e6eaff8b652ac2600d37b3a741ca4f61e90 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Fri, 4 Oct 2024 16:58:45 -0400 Subject: [PATCH 43/49] Cleanup api reference --- deployment/AzureDeploymentTemplate.json | 7 ------- deployment/AzureDeploymentTemplate_regionoptions.json | 7 ------- 2 files changed, 14 deletions(-) diff --git a/deployment/AzureDeploymentTemplate.json b/deployment/AzureDeploymentTemplate.json index 8bc7b610d9e3..aa445e3fd6c8 100644 --- a/deployment/AzureDeploymentTemplate.json +++ b/deployment/AzureDeploymentTemplate.json @@ -22,13 +22,6 @@ "metadata": { "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token" } - }, - "GithubAPIRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP-API", - "type": "string", - "metadata": { - "description": "URL to your Github backend fork." - } } }, "variables": { diff --git a/deployment/AzureDeploymentTemplate_regionoptions.json b/deployment/AzureDeploymentTemplate_regionoptions.json index ff4d9331da35..1abff7bcc162 100644 --- a/deployment/AzureDeploymentTemplate_regionoptions.json +++ b/deployment/AzureDeploymentTemplate_regionoptions.json @@ -22,13 +22,6 @@ "metadata": { "description": "Your Github Repository token (see https://docs.microsoft.com/en-us/azure/static-web-apps/publish-azure-resource-manager?tabs=azure-cli#create-a-github-personal-access-token)" } - }, - "GithubAPIRepository": { - "defaultValue": "https://github.com/KelvinTegelaar/CIPP-API", - "type": "string", - "metadata": { - "description": "URL to your Github backend fork." - } } }, "variables": { From f3862a240db2f77359712af2df1057380d282448 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Fri, 4 Oct 2024 19:08:41 -0400 Subject: [PATCH 44/49] up version --- package.json | 2 +- public/version_latest.txt | 2 +- version_latest.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 2739d1d2801a..1c73c05ffb68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cipp", - "version": "6.4.0", + "version": "6.4.1", "description": "The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners.", "homepage": "https://cipp.app/", "bugs": { diff --git a/public/version_latest.txt b/public/version_latest.txt index 19b860c1872d..4c77920fd2c5 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -6.4.0 +6.4.1 diff --git a/version_latest.txt b/version_latest.txt index 19b860c1872d..4c77920fd2c5 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -6.4.0 +6.4.1 From 6fcf6138b7da6106f9c0ee5210f6bbd41b9a87f1 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:25:39 +0100 Subject: [PATCH 45/49] updated extensions --- .vscode/extensions.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index c21abba6989f..38b71fec4e7f 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,7 +2,6 @@ "recommendations": [ "github.vscode-codeql", "dbaeumer.vscode-eslint", - "eg2.vscode-npm-script", "christian-kohler.npm-intellisense", "esbenp.prettier-vscode", "stylelint.vscode-stylelint", From f624f90eff52e1eaa86d643596fdd204d06b8d55 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:03:34 +0100 Subject: [PATCH 46/49] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1c73c05ffb68..4fa734663e0b 100644 --- a/package.json +++ b/package.json @@ -120,7 +120,7 @@ "vite-plugin-eslint": "^1.8.1" }, "engines": { - "node": "18", + "node": ">=20.17.0", "npm": ">=8.3.0" }, "overrides": { From 41eea9a338deee8c904e77ec36853369f31b1f5e Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:03:43 +0100 Subject: [PATCH 47/49] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4fa734663e0b..a8a975f0c44c 100644 --- a/package.json +++ b/package.json @@ -120,7 +120,7 @@ "vite-plugin-eslint": "^1.8.1" }, "engines": { - "node": ">=20.17.0", + "node": "20.17.0", "npm": ">=8.3.0" }, "overrides": { From fdeb93a3a81082e304ff947172f876da9f7bb87b Mon Sep 17 00:00:00 2001 From: Nate Moss Date: Tue, 14 Jan 2025 11:45:45 -0500 Subject: [PATCH 48/49] update static web app for v7 --- .../workflows/azure-static-web-apps-lively-river-0dd9a610f.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/azure-static-web-apps-lively-river-0dd9a610f.yml b/.github/workflows/azure-static-web-apps-lively-river-0dd9a610f.yml index 2cc5af2a5b25..b111cd837f39 100644 --- a/.github/workflows/azure-static-web-apps-lively-river-0dd9a610f.yml +++ b/.github/workflows/azure-static-web-apps-lively-river-0dd9a610f.yml @@ -29,7 +29,7 @@ jobs: # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig app_location: "/" # App source code path api_location: "" # Api source code path - optional - output_location: "" # Built app content directory - optional + output_location: "/out" # Built app content directory - optional ###### End of Repository/Build Configurations ###### close_pull_request_job: From 22e78f6649693db28b34df0e03c392aaef43a302 Mon Sep 17 00:00:00 2001 From: Nate Moss Date: Tue, 14 Jan 2025 12:48:29 -0500 Subject: [PATCH 49/49] conflict cleanup --- .browserslistrc | 11 - .cspell.json | 14 - .editorconfig | 696 +- .env | 5 - .eslintrc.cjs | 9 - .eslintrc.json | 17 + .gitattributes | 3 +- .github/workflows/dev_deploy.yml | 8 +- .gitignore | 23 +- .jscpd.json | 15 - .mega-linter.yml | 9 - .node-version | 1 - .prettierignore | 4 - .prettierrc.json | 7 - .secretlintignore | 2 - .secretlintrc.json | 7 - .stylelintrc.json | 14 - .vscode/launch.json | 11 +- .vscode/settings.json | 1 + .yamllint.yaml | 2 - Generate-Import-Map.js | 35 - Importmap.ps1 | 22 - LICENSE.CustomLicenses | 3 - LICENSE.md | 661 - Tools/Start-CippDevEmulators.ps1 | 4 +- Tools/Start-CippDevEmulatorsWithKitty.ps1 | 24 + Tools/Update intune Templates.ps1 | 31 + deployment/AzureDeploymentTemplate.json | 2 +- ...AzureDeploymentTemplate_regionoptions.json | 2 +- ...AzureDeploymentTemplate_regionoptions.json | 2 + generate-placeholders.js | 180 + index.html | 37 - jsconfig.json | 11 - next.config.js | 19 + package-lock.json | 9380 - package.json | 173 +- public/GDAPRoles.json | 722 - public/MFAStates.json | 14 - public/android-chrome-192x192.png | Bin 6199 -> 11919 bytes public/android-chrome-512x512.png | Bin 16644 -> 33773 bytes public/apple-touch-icon.png | Bin 6074 -> 11446 bytes .../assets/avatars/avatar-adler-atthowe.jpg | Bin 0 -> 25327 bytes public/assets/avatars/avatar-andi-jevons.jpg | Bin 0 -> 25525 bytes public/assets/avatars/avatar-bell-covely.jpg | Bin 0 -> 18479 bytes .../assets/avatars/avatar-candace-royden.jpg | Bin 0 -> 27432 bytes public/assets/avatars/avatar-chen-simmons.jpg | Bin 0 -> 19892 bytes public/assets/avatars/avatar-eda-annies.jpg | Bin 0 -> 24122 bytes .../assets/avatars/avatar-emelia-brizland.jpg | Bin 0 -> 26316 bytes .../assets/avatars/avatar-fabiano-jorioz.jpg | Bin 0 -> 24600 bytes .../assets/avatars/avatar-giraud-lamlin.jpg | Bin 0 -> 27670 bytes public/assets/avatars/avatar-horia-tepar.jpg | Bin 0 -> 21300 bytes .../avatars/avatar-jenilee-felderer.jpg | Bin 0 -> 26854 bytes .../assets/avatars/avatar-meggie-heinonen.jpg | Bin 0 -> 15525 bytes .../avatars/avatar-priscilla-parades.jpg | Bin 0 -> 25087 bytes public/assets/avatars/avatar-rustin-rathe.jpg | Bin 0 -> 23866 bytes public/assets/avatars/avatar-sean-picott.jpg | Bin 0 -> 16793 bytes .../assets/avatars/avatar-wilhelm-engall.jpg | Bin 0 -> 23254 bytes public/assets/flags/flag-de.svg | 6 + public/assets/flags/flag-es.svg | 5 + public/assets/flags/flag-uk.svg | 19 + public/assets/home-features-auth.png | Bin 0 -> 236651 bytes public/assets/home-features-filters.png | Bin 0 -> 35285 bytes public/assets/home-features-states.png | Bin 0 -> 109536 bytes public/assets/home-flows.png | Bin 0 -> 224113 bytes public/assets/home-hero.png | Bin 0 -> 509137 bytes public/assets/illustration-not-found.svg | 41 + public/assets/illustration-reports.png | Bin 0 -> 61091 bytes .../illustrations/undraw_analysis_dq08.svg | 1 + .../illustrations/undraw_apps_re_ienc.svg | 1 + .../illustrations/undraw_articles_wbpb.svg | 1 + .../undraw_audio_conversation_re_3t38.svg | 1 + .../undraw_bug_fixing_oc-7-a.svg | 1 + .../undraw_business_chat_re_gg4h.svg | 1 + .../undraw_button_style_re_uctt.svg | 1 + .../undraw_cloud_hosting_7xb1.svg | 1 + .../undraw_engineering_team_a7n2.svg | 1 + .../undraw_experience_design_re_dmqq.svg | 1 + .../undraw_innovative_re_rr5i.svg | 1 + .../illustrations/undraw_lost_re_xqjt.svg | 1 + .../illustrations/undraw_mindfulness_8gqa.svg | 1 + .../undraw_multitasking_re_ffpb.svg | 1 + .../undraw_not_found_re_bh2e.svg | 1 + .../undraw_online_test_re_kyfx.svg | 1 + .../illustrations/undraw_open_note_6nva.svg | 1 + .../undraw_server_status_re_n8ln.svg | 1 + .../undraw_solution_mindset_re_57bf.svg | 1 + .../undraw_speed_test_re_pe1f.svg | 1 + ...ign_up_ln1s_-1-_s4bc_-1-_ee41_-1-_kf4d.svg | 1 + .../illustrations/undraw_website_ij0l.svg | 1 + .../illustrations/undraw_writer_q06d.svg | 1 + public/assets/integrations/cipp-api.png | Bin 0 -> 21961 bytes public/assets/integrations/gradient.png | Bin 0 -> 19120 bytes public/assets/integrations/gradient_dark.png | Bin 0 -> 11059 bytes public/assets/integrations/halo.png | Bin 0 -> 42518 bytes public/assets/integrations/halo.svg | 1 + public/assets/integrations/hibp.png | Bin 0 -> 51465 bytes public/assets/integrations/hudu.png | Bin 0 -> 8238 bytes public/assets/integrations/hudu_dark.png | Bin 0 -> 6675 bytes public/assets/integrations/ninjaone.png | Bin 0 -> 17068 bytes public/assets/integrations/ninjaone_dark.png | Bin 0 -> 20555 bytes public/assets/integrations/pwpush_dark.png | Bin 0 -> 48155 bytes public/assets/integrations/pwpush_light.png | Bin 0 -> 11949 bytes public/assets/integrations/sherweb.png | Bin 0 -> 51355 bytes public/assets/integrations/sherweb_dark.png | Bin 0 -> 45297 bytes public/assets/logo.svg | 11 + public/assets/logos/logo-amplify.svg | 15 + public/assets/logos/logo-auth0.svg | 1 + public/assets/logos/logo-figma.svg | 7 + public/assets/logos/logo-firebase.svg | 35 + public/assets/logos/logo-jwt.svg | 27 + public/assets/logos/logo-react.svg | 4 + public/assets/logos/logo-typescript.svg | 4 + public/assets/pages-dropdown.png | Bin 0 -> 90220 bytes public/assets/products/product-1.png | Bin 0 -> 32797 bytes public/assets/products/product-10.png | Bin 0 -> 44063 bytes public/assets/products/product-2.png | Bin 0 -> 33784 bytes public/assets/products/product-3.png | Bin 0 -> 29205 bytes public/assets/products/product-4.png | Bin 0 -> 31555 bytes public/assets/products/product-5.png | Bin 0 -> 40287 bytes public/assets/products/product-6.png | Bin 0 -> 37519 bytes public/assets/products/product-7.png | Bin 0 -> 41121 bytes public/assets/products/product-8.png | Bin 0 -> 39925 bytes public/assets/products/product-9.png | Bin 0 -> 39272 bytes public/assets/support-adrian.png | Bin 0 -> 204254 bytes public/assets/support-alexandru.png | Bin 0 -> 206854 bytes public/assets/support-stefania.png | Bin 0 -> 218888 bytes public/browserconfig.xml | 9 - public/favicon-16x16.png | Bin 1236 -> 991 bytes public/favicon-32x32.png | Bin 1600 -> 1877 bytes public/favicon.ico | Bin 15086 -> 15406 bytes ...One\342\224\254\302\253 Logo white@4x.png" | Bin 72799 -> 0 bytes public/img/augmentt-dark.png | Bin 2768 -> 0 bytes public/img/augmentt-light.png | Bin 3778 -> 0 bytes public/img/huntress_teal.png | Bin 6121 -> 0 bytes public/img/ninjaone.png | Bin 13636 -> 0 bytes public/img/ninjaone_dark.png | Bin 14381 -> 0 bytes public/img/rewst.png | Bin 9250 -> 0 bytes public/img/rewst_dark.png | Bin 14869 -> 0 bytes public/languageList.json | 242 + public/logo.png | Bin 0 -> 16372 bytes public/manifest.json | 21 +- public/mstile-310x310.png | Bin 9752 -> 0 bytes ...missionsList.json => permissionsList.json} | 0 public/robots.txt | 3 + public/safari-pinned-tab.svg | 37 - public/sponsors/RoB-light.png | Bin 0 -> 4003 bytes public/sponsors/RoB-light.svg | 17 + public/sponsors/RoB.png | Bin 0 -> 2280 bytes public/sponsors/RoB.svg | 25 + public/sponsors/augmentt-dark.png | Bin 0 -> 2748 bytes public/sponsors/augmentt-light.png | Bin 0 -> 3238 bytes public/sponsors/huntress_teal.png | Bin 0 -> 2662 bytes public/sponsors/ninjaone.png | Bin 0 -> 3456 bytes public/sponsors/ninjaone_white.png | Bin 0 -> 2264 bytes public/sponsors/rewst.png | Bin 0 -> 4517 bytes public/sponsors/rewst_dark.png | Bin 0 -> 4406 bytes public/version.json | 3 + public/version_latest.txt | 4 + src/App.jsx | 90 - src/App.test.js | 14 - src/_nav.jsx | 893 - src/api/ApiCall.jsx | 204 + src/assets/images/CIPP.png | Bin 38867 -> 0 bytes src/assets/images/CIPP_Dark.png | Bin 21291 -> 0 bytes src/assets/images/avatars/0.jpg | Bin 2609 -> 0 bytes src/assets/images/logo-square.png | Bin 27250 -> 0 bytes src/assets/images/logo.png | Bin 19032 -> 0 bytes src/components/CSVReader.jsx | 137 + .../CippCards/CippBannerListCard.jsx | 183 + src/components/CippCards/CippButtonCard.jsx | 66 + src/components/CippCards/CippChartCard.jsx | 198 + src/components/CippCards/CippDomainCards.jsx | 613 + .../CippCards/CippExchangeInfoCard.jsx | 192 + src/components/CippCards/CippImageCard.jsx | 92 + src/components/CippCards/CippInfoBar.jsx | 58 + src/components/CippCards/CippInfoCard.jsx | 71 + src/components/CippCards/CippListitemCard.jsx | 124 + src/components/CippCards/CippPageCard.jsx | 65 + .../CippCards/CippPropertyListCard.jsx | 173 + .../CippCards/CippRemediationCard.jsx | 79 + .../CippCards/CippUniversalSearch.jsx | 145 + src/components/CippCards/CippUserInfoCard.jsx | 155 + .../CippComponents/CippApiDialog.jsx | 263 + .../CippComponents/CippApiResults.jsx | 254 + .../CippAppPermissionBuilder.jsx | 1105 + .../CippComponents/CippAutocomplete.jsx | 176 + .../CippComponents/CippCardTabPanel.jsx | 17 + .../CippComponents/CippCodeBlock.jsx | 76 + .../CippComponents/CippComponentDialog.jsx | 24 + .../CippComponents/CippCopyToClipboard.jsx | 60 + .../CippComponents/CippCsvExportButton.jsx | 64 + .../CippComponents/CippDevOptions.jsx | 35 + .../CippDropzone.jsx | 52 +- .../CippComponents/CippFormComponent.jsx | 400 + .../CippComponents/CippFormCondition.jsx | 151 + .../CippFormContactSelector.jsx | 37 + .../CippComponents/CippFormDomainSelector.jsx | 40 + .../CippComponents/CippFormInputArray.jsx | 75 + .../CippFormLicenseSelector.jsx | 41 + .../CippComponents/CippFormTenantSelector.jsx | 47 + .../CippComponents/CippFormUserSelector.jsx | 46 + .../CippComponents/CippGeoLocation.jsx | 90 + src/components/CippComponents/CippMap.jsx | 46 + .../CippComponents/CippMessageViewer.jsx | 543 + .../CippComponents/CippOffCanvas.jsx | 103 + .../CippComponents/CippPropertyList.jsx | 130 + .../CippComponents/CippSettingsSideBar.jsx | 82 + .../CippComponents/CippTableDialog.jsx | 28 + .../CippComponents/CippTablePage.jsx | 75 + .../CippComponents/CippTenantSelector.jsx | 245 + src/components/CippComponents/CippTimeAgo.jsx | 21 + .../CippComponents/CippTranslations.jsx | 45 + .../ConnectorTemplateDetails.jsx | 22 + .../CippComponents/MailboxRestoreDetails.jsx | 119 + .../CippAddEditGdapRoleTemplate.jsx | 50 + .../CippFormPages/CippAddEditUser.jsx | 332 + .../CippFormPages/CippAddGroupForm.jsx | 123 + .../CippAddGroupTemplateForm.jsx | 94 + .../CippExchangeSettingsForm.jsx | 528 + src/components/CippFormPages/CippFormPage.jsx | 155 + .../CippFormPages/CippFormSection.jsx | 68 + .../CippFormPages/CippFormSkeleton.jsx | 19 + .../CippFormPages/CippInviteGuest.jsx | 49 + src/components/CippFormPages/CippJSONView.jsx | 257 + .../CippFormPages/CippSchedulerForm.jsx | 297 + .../CippIntegrationFieldMapping.jsx | 196 + .../CippIntegrationSettings.jsx | 93 + .../CippIntegrationTenantMapping.jsx | 293 + .../CippSettings/CippBackendCard.jsx | 79 + .../CippSettings/CippBackupSettings.jsx | 46 + .../CippSettings/CippCacheSettings.jsx | 82 + .../CippSettings/CippCustomRoles.jsx | 487 + .../CippSettings/CippDnsSettings.jsx | 65 + .../CippSettings/CippGDAPResults.jsx | 216 + .../CippSettings/CippPasswordSettings.jsx | 65 + .../CippSettings/CippPermissionCheck.jsx | 160 + .../CippSettings/CippPermissionReport.jsx | 241 + .../CippSettings/CippPermissionResults.jsx | 239 + .../CippSettings/CippTenantResults.jsx | 80 + .../CippSettings/CippVersionProperties.jsx | 81 + .../CippStandards/CippStandardAccordion.jsx | 244 + .../CippStandards/CippStandardDialog.jsx | 177 + .../CippStandards/CippStandardsSideBar.jsx | 252 + .../CippTable/CIPPTableToptoolbar.js | 527 + src/components/CippTable/CippDataTable.js | 346 + .../CippTable/CippDataTableButton.jsx | 70 + .../CippTable/CippGraphExplorerFilter.js | 736 + .../CippTable/util-columnsFromAPI.js | 69 + .../CippTable/util-handleActionsList.js | 0 src/components/CippTable/util-tablemode.js | 88 + .../CippWizard/CIPPDeploymentStep.js | 322 + src/components/CippWizard/CippCAForm.jsx | 96 + .../CippWizard/CippIntunePolicy.jsx | 131 + .../CippWizard/CippPSACredentialsStep.js | 230 + .../CippWizard/CippPSASyncOptions.js | 161 + src/components/CippWizard/CippTenantStep.jsx | 35 + src/components/CippWizard/CippWizard.jsx | 72 + .../CippWizard/CippWizardAppApproval.jsx | 58 + .../CippWizard/CippWizardAutoComplete.jsx | 48 + .../CippWizard/CippWizardAutopilotOptions.jsx | 31 + .../CippWizard/CippWizardBulkOptions.jsx | 47 + .../CippWizard/CippWizardCSVImport.jsx | 154 + .../CippWizard/CippWizardConfirmation.js | 85 + .../CippWizard/CippWizardGroupTemplates.jsx | 151 + .../CippWizard/CippWizardOffboarding.jsx | 306 + .../CippWizard/CippWizardOptionsList.jsx | 89 + src/components/CippWizard/CippWizardPage.jsx | 61 + .../CippWizard/CippWizardStepButtons.jsx | 64 + src/components/CippWizard/wizard-steps.js | 146 + src/components/PrivateRoute.js | 35 + src/components/action-list-item.js | 18 + src/components/action-list.js | 23 + src/components/actions-menu.js | 94 + src/components/bulk-actions-menu.js | 78 + src/components/buttons/CsvButton.jsx | 22 - src/components/buttons/PdfButton.jsx | 58 - src/components/buttons/TableModalButton.jsx | 54 - src/components/buttons/TitleButton.jsx | 33 - src/components/buttons/index.js | 6 - src/components/chart.js | 9 + src/components/confirmation-dialog.js | 104 + .../contentcards/ActionContentCard.jsx | 63 - .../contentcards/CippAccordionItem.jsx | 49 - .../contentcards/CippButtonCard.jsx | 37 - src/components/contentcards/CippChartCard.jsx | 86 - .../contentcards/CippPrettyCard.jsx | 46 - .../contentcards/DatatableContentCard.jsx | 51 - .../contentcards/ListGroupContentCard.jsx | 88 - .../contentcards/TableContentCard.jsx | 53 - src/components/contentcards/index.js | 6 - src/components/csvExportButton.js | 46 + src/components/file-dropzone.js | 80 + src/components/filter-dialog-item.js | 148 + src/components/filter-dialog.js | 117 + src/components/forms/RFFComponents.jsx | 621 - src/components/forms/index.js | 29 - src/components/header/AppHeaderDropdown.jsx | 130 - src/components/header/AppHeaderSearch.jsx | 24 - src/components/header/index.js | 4 - src/components/images-dialog.js | 184 + src/components/layout/AppBreadcrumb.jsx | 49 - src/components/layout/AppFooter.jsx | 56 - src/components/layout/AppHeader.jsx | 280 - src/components/layout/AppSidebar.jsx | 57 - src/components/layout/AppSidebarNav.jsx | 97 - src/components/layout/CippCallout.css | 28 - src/components/layout/CippCallout.jsx | 70 - src/components/layout/CippContentCard.jsx | 36 - src/components/layout/CippMasonry.jsx | 102 - src/components/layout/CippPage.jsx | 89 - src/components/layout/CippWizard.jsx | 131 - src/components/layout/index.js | 25 - src/components/linearProgressWithLabel.jsx | 12 + src/components/logo.js | 14 + src/components/pagination.js | 92 + src/components/pdfExportButton.js | 50 + src/components/property-list-item.js | 84 + src/components/property-list.js | 12 + src/components/query-field.js | 91 + src/components/quill-editor.js | 125 + src/components/resource-error.js | 50 + src/components/resource-loading.js | 33 + src/components/resource-unavailable.js | 64 + src/components/rtl.js | 34 + src/components/scrollbar.js | 5 + src/components/tables/CellBadge.jsx | 57 - src/components/tables/CellBoolean.jsx | 103 - src/components/tables/CellBytes.jsx | 24 - src/components/tables/CellCopyButton.jsx | 16 - src/components/tables/CellDate.jsx | 82 - .../tables/CellDelegatedPrivilege.jsx | 25 - src/components/tables/CellGenericFormat.jsx | 71 - src/components/tables/CellLicense.jsx | 24 - src/components/tables/CellLogo.jsx | 20 - src/components/tables/CellMathFormatter.jsx | 59 - src/components/tables/CellNullText.jsx | 14 - src/components/tables/CellProgressBar.jsx | 52 - src/components/tables/CellTable.jsx | 114 - src/components/tables/CellTip.jsx | 54 - src/components/tables/CippDatatable.jsx | 68 - src/components/tables/CippOffcanvasTable.jsx | 27 - src/components/tables/CippTable.jsx | 1070 - src/components/tables/WizardTableField.jsx | 80 - src/components/tables/index.js | 32 - src/components/toaster.js | 50 + .../utilities/CippActionsOffcanvas.jsx | 487 - .../utilities/CippAppPermissionBuilder.jsx | 1019 - src/components/utilities/CippCamelCase.jsx | 19 - src/components/utilities/CippCodeBlock.jsx | 81 - .../utilities/CippCodeOffcanvas.jsx | 111 - .../utilities/CippCopyToClipboard.jsx | 27 - src/components/utilities/CippFuzzySearch.jsx | 25 - .../utilities/CippGraphUserFilter.jsx | 30 - src/components/utilities/CippJsonView.jsx | 260 - src/components/utilities/CippLazy.jsx | 19 - .../utilities/CippListOffcanvas.jsx | 70 - src/components/utilities/CippOffcanvas.jsx | 54 - src/components/utilities/CippProfile.jsx | 72 - .../utilities/CippScheduleOffcanvas.jsx | 276 - .../utilities/CippTableOffcanvas.jsx | 78 - .../utilities/CippTenantOffcanvas.jsx | 118 - src/components/utilities/CippauthCheck.jsx | 27 - src/components/utilities/ErrorBoundary.jsx | 32 - src/components/utilities/FastSwitcher.jsx | 158 - src/components/utilities/Loading.jsx | 37 - src/components/utilities/ModalRoot.jsx | 82 - src/components/utilities/PageSizeSwitcher.jsx | 41 - src/components/utilities/PrivateRoute.jsx | 41 - src/components/utilities/ReportImage.jsx | 46 - src/components/utilities/SharedModal.jsx | 138 - src/components/utilities/StatusIcon.jsx | 55 - .../utilities/TenantListSelector.jsx | 28 - src/components/utilities/TenantSelector.jsx | 146 - .../utilities/TenantSelectorMultiple.jsx | 58 - src/components/utilities/ThemeSwitcher.jsx | 72 - src/components/utilities/Toasts.jsx | 68 - src/components/utilities/UniversalSearch.jsx | 105 - src/components/utilities/UsageLocation.jsx | 38 - src/components/utilities/index.js | 48 - .../utilities/validateAlphabeticalSort.jsx | 23 - src/components/widget-previewer.js | 41 + src/contexts/settings-context.js | 153 + src/data/AuditLogSchema.json | 918 +- src/data/BPAField.schema.v1.json | 233 - src/data/BPAField.uischema.v1.json | 26 - src/data/BPAReport.schema.v1.json | 257 - src/data/BPAReport.uischema.v1.json | 29 - src/data/CIPPDefaultGDAPRoles.json | 50 + src/data/Extensions.json | 281 +- src/data/GraphExplorerPresets.json | 153 + src/data/LicenseExamples.json | 14074 - src/data/M365Licenses.json | 142 +- src/data/alerts.json | 5 + src/data/audit-log-translations.json | 561 + src/data/classificationDetermination.json | 5 - src/data/intuneCollection.json | 232365 +++++++++++++++ src/data/standards.json | 927 +- src/data/translator.json | 152 - src/helpers.js | 22 - src/hooks/use-auth.js | 4 + src/hooks/use-dialog.js | 28 + src/hooks/use-filters.js | 143 + src/hooks/use-mocked-user.js | 10 + src/hooks/use-mounted.js | 15 + src/hooks/use-page-view.js | 3 + src/hooks/use-popover.js | 26 + src/hooks/use-securescore.js | 112 + src/hooks/use-selection.js | 35 + src/hooks/use-settings.js | 4 + src/hooks/use-window-scroll.js | 16 + src/hooks/useConfirmModal.jsx | 21 - src/hooks/useNavFavouriteCheck.jsx | 55 - src/hooks/useQuery.jsx | 10 - src/hooks/useRouteNavCompare.jsx | 33 - src/icons/iconly/bulk/azure.js | 39 + src/icons/iconly/bulk/bag.js | 21 + src/icons/iconly/bulk/buy.js | 21 + src/icons/iconly/bulk/calendar.js | 29 + src/icons/iconly/bulk/category.js | 21 + src/icons/iconly/bulk/chart.js | 29 + src/icons/iconly/bulk/defender.js | 51 + src/icons/iconly/bulk/document.js | 21 + src/icons/iconly/bulk/exchange.js | 39 + src/icons/iconly/bulk/graph.js | 21 + src/icons/iconly/bulk/intune.js | 26 + src/icons/iconly/bulk/microsoft.js | 10 + src/icons/iconly/bulk/settings.js | 21 + src/icons/iconly/bulk/show.js | 21 + src/icons/iconly/bulk/three-user.js | 39 + src/icons/iconly/bulk/ticket.js | 21 + src/icons/iconly/bulk/two-user.js | 30 + src/importsMap.jsx | 165 - src/index.js | 17 + src/index.jsx | 27 - src/layout/DefaultLayout.jsx | 110 - src/layouts/HeaderedTabbedLayout.jsx | 140 + src/layouts/TabbedLayout.jsx | 35 + src/layouts/account-popover.js | 165 + src/layouts/config.js | 476 + src/layouts/footer.js | 34 + src/layouts/index.js | 263 + src/layouts/mobile-nav-item.js | 173 + src/layouts/mobile-nav.js | 154 + src/layouts/notifications-popover.js | 187 + src/layouts/organization-popover.js | 40 + src/layouts/side-nav-item.js | 199 + src/layouts/side-nav.js | 246 + src/layouts/top-nav.js | 102 + src/libs/nprogress.js | 6 + src/pages/401.js | 46 + src/pages/404.js | 46 + src/pages/500.js | 65 + src/pages/_app.js | 91 + src/pages/_document.js | 63 + src/pages/cipp/advanced/exchange-cmdlets.js | 166 + src/pages/cipp/advanced/timers.js | 104 + src/pages/cipp/extension-sync/index.js | 43 + src/pages/cipp/integrations/configure.js | 200 + src/pages/cipp/integrations/index.js | 138 + src/pages/cipp/integrations/sync.js | 35 + src/pages/cipp/logs/index.js | 115 + src/pages/cipp/preferences.js | 279 + src/pages/cipp/scheduler/index.js | 84 + src/pages/cipp/scheduler/job.jsx | 27 + src/pages/cipp/settings/backend.js | 122 + src/pages/cipp/settings/backup.js | 265 + src/pages/cipp/settings/index.js | 41 + src/pages/cipp/settings/licenses.js | 105 + src/pages/cipp/settings/notifications.js | 180 + src/pages/cipp/settings/partner-webhooks.js | 268 + src/pages/cipp/settings/permissions.js | 38 + src/pages/cipp/settings/tabOptions.json | 30 + src/pages/cipp/settings/tenants.js | 131 + src/pages/cipp/statistics/index.js | 17 + src/pages/cipp/super-admin/custom-roles.js | 36 + .../cipp/super-admin/function-offloading.js | 81 + .../cipp/super-admin/sam-app-permissions.js | 67 + src/pages/cipp/super-admin/sam-app-roles.js | 98 + src/pages/cipp/super-admin/tabOptions.json | 22 + src/pages/cipp/super-admin/tenant-mode.js | 94 + src/pages/domains.js | 149 + .../email/administration/contacts/add.jsx | 110 + .../email/administration/contacts/index.js | 51 + .../administration/deleted-mailboxes/index.js | 19 + .../administration/mailbox-rules/index.js | 59 + .../administration/mailboxes/addshared.jsx | 73 + .../email/administration/mailboxes/index.js | 116 + .../email/administration/quarantine/index.js | 210 + .../tenant-allow-block-lists/add.jsx | 109 + .../tenant-allow-block-lists/index.js | 61 + .../email/connectionfilter/deploy/index.js | 17 + .../list-connectionfilter/add.jsx | 87 + .../list-connectionfilter/index.js | 62 + .../connectionfilter/list-templates/index.js | 59 + .../connectors/deploy-connector/index.js | 17 + .../list-connector-templates/index.js | 47 + .../email/connectors/list-connectors/add.jsx | 87 + .../email/connectors/list-connectors/index.js | 96 + .../SharedMailboxEnabledAccount/index.js | 47 + .../reports/antiphishing-filters/index.js | 101 + .../reports/mailbox-cas-settings/index.js | 29 + .../email/reports/mailbox-statistics/index.js | 36 + .../email/reports/malware-filters/index.js | 92 + .../reports/safeattachments-filters/index.js | 91 + .../email/reports/safelinks-filters/index.js | 83 + .../resources/management/list-rooms/add.jsx | 96 + .../resources/management/list-rooms/index.js | 25 + .../resources/management/room-lists/index.js | 51 + .../management/room-lists/list/view.jsx | 31 + src/pages/email/spamfilter/deploy/index.js | 17 + .../email/spamfilter/list-spamfilter/add.jsx | 87 + .../email/spamfilter/list-spamfilter/index.js | 107 + .../email/spamfilter/list-templates/index.js | 57 + src/pages/email/tools/mail-test/index.js | 17 + .../tools/mailbox-restore-wizard/index.js | 17 + .../email/tools/mailbox-restores/add.jsx | 295 + .../email/tools/mailbox-restores/index.js | 76 + src/pages/email/tools/message-trace/index.js | 347 + src/pages/email/tools/message-viewer/index.js | 10 + .../email/transport/deploy-rules/index.js | 17 + src/pages/email/transport/list-rules/add.jsx | 87 + src/pages/email/transport/list-rules/index.js | 78 + .../email/transport/list-templates/index.js | 54 + .../endpoint/MEM/add-policy-template/index.js | 16 + src/pages/endpoint/MEM/add-policy/index.js | 41 + .../MEM/list-appprotection-policies/index.js | 65 + .../MEM/list-compliance-policies/index.js | 111 + src/pages/endpoint/MEM/list-policies/index.js | 106 + .../endpoint/MEM/list-templates/index.js | 41 + src/pages/endpoint/applications/list/add.jsx | 718 + src/pages/endpoint/applications/list/index.js | 108 + .../endpoint/applications/queue/index.js | 61 + .../endpoint/autopilot/add-device/index.js | 63 + .../endpoint/autopilot/add-profile/index.js | 17 + .../autopilot/add-status-page/index.js | 17 + .../endpoint/autopilot/list-devices/index.js | 82 + .../endpoint/autopilot/list-profiles/add.jsx | 163 + .../endpoint/autopilot/list-profiles/index.js | 45 + .../autopilot/list-status-pages/add.jsx | 123 + .../autopilot/list-status-pages/index.js | 38 + .../reports/analyticsdevicescore/index.js | 71 + src/pages/endpoint/reports/devices/index.js | 140 + src/pages/fullPageLoading.js | 30 + .../administration/deleted-items/index.js | 59 + .../deploy-group-template/index.js | 16 + .../identity/administration/devices/index.js | 87 + .../administration/group-templates/add.jsx | 36 + .../administration/group-templates/deploy.js | 43 + .../administration/group-templates/index.js | 50 + .../identity/administration/groups/add.jsx | 37 + .../identity/administration/groups/edit.jsx | 214 + .../identity/administration/groups/index.js | 130 + src/pages/identity/administration/index.js | 17 + .../identity/administration/jit-admin/add.jsx | 183 + .../administration/jit-admin/index.js | 26 + .../offboarding-wizard/index.js | 72 + .../administration/risky-users/index.js | 65 + .../identity/administration/roles/index.js | 36 + .../identity/administration/users/add.jsx | 89 + .../identity/administration/users/bulk-add.js | 78 + .../identity/administration/users/index.js | 391 + .../identity/administration/users/invite.jsx | 37 + .../administration/users/user/bec.jsx | 584 + .../users/user/conditional-access.jsx | 249 + .../administration/users/user/devices.jsx | 376 + .../administration/users/user/edit.jsx | 100 + .../administration/users/user/exchange.jsx | 238 + .../administration/users/user/index.jsx | 692 + .../administration/users/user/tabOptions.json | 22 + .../reports/azure-ad-connect-report/index.js | 33 + .../reports/inactive-users-report/index.js | 34 + src/pages/identity/reports/index.js | 17 + .../identity/reports/mfa-report/index.js | 34 + .../identity/reports/risk-detections/index.js | 83 + .../identity/reports/signin-report/index.js | 34 + src/pages/index.js | 322 + src/pages/logout/index.js | 17 + src/pages/onboarding.js | 69 + .../security/defender/deployment/index.js | 446 + .../defender/list-defender-tvm/index.js | 29 + .../security/defender/list-defender/index.js | 30 + .../security/incidents/list-alerts/index.js | 73 + .../incidents/list-incidents/index.js | 94 + .../reports/list-device-compliance/index.js | 34 + src/pages/teams-share/onedrive/index.js | 69 + src/pages/teams-share/sharepoint/add-site.js | 127 + .../teams-share/sharepoint/bulk-add-site.js | 64 + src/pages/teams-share/sharepoint/index.js | 168 + .../teams-share/teams/business-voice/index.js | 97 + src/pages/teams-share/teams/list-team/add.jsx | 96 + .../teams-share/teams/list-team/index.js | 37 + .../teams-share/teams/teams-activity/index.js | 18 + .../administration/add-subscription/index.jsx | 93 + .../alert-configuration/alert.jsx | 555 + .../alert-configuration/index.js | 59 + .../app-consent-requests/index.js | 129 + .../administration/appapproval/index.js | 52 + .../application-consent/index.js | 15 + .../tenant/administration/audit-logs/index.js | 169 + .../tenant/administration/audit-logs/log.js | 208 + .../authentication-methods/index.js | 54 + .../administration/enterprise-apps/index.js | 54 + .../administration/graph-explorer/index.js | 37 + src/pages/tenant/administration/index.js | 17 + .../list-csp-licenses/index.jsx | 107 + .../administration/list-licenses/index.js | 34 + .../partner-relationships/index.js | 41 + .../administration/securescore/index.js | 293 + .../securescore/tabOptions.json | 10 + .../administration/securescore/table.js | 82 + .../tenant-offboarding-wizard/index.js | 17 + .../administration/tenantlookup/index.js | 17 + .../tenant/administration/tenants/index.js | 57 + src/pages/tenant/backup/backup-wizard/add.jsx | 183 + .../tenant/backup/backup-wizard/index.js | 54 + .../tenant/backup/backup-wizard/restore.jsx | 306 + .../conditional/deploy-vacation/add.jsx | 109 + .../conditional/deploy-vacation/index.js | 34 + src/pages/tenant/conditional/deploy/index.js | 17 + .../conditional/list-named-locations/add.jsx | 135 + .../conditional/list-named-locations/index.js | 88 + .../conditional/list-policies/deploy.js | 36 + .../tenant/conditional/list-policies/index.js | 123 + .../tenant/conditional/list-template/index.js | 40 + src/pages/tenant/gdap-management/index.js | 201 + .../tenant/gdap-management/invites/add.js | 255 + .../tenant/gdap-management/invites/index.js | 35 + .../tenant/gdap-management/offboarding.js | 271 + .../gdap-management/onboarding/index.js | 66 + .../gdap-management/onboarding/start.js | 572 + .../gdap-management/relationships/index.js | 109 + .../relationships/relationship/index.js | 211 + .../relationships/relationship/mappings.js | 78 + .../relationship/tabOptions.json | 10 + .../gdap-management/role-templates/add.js | 44 + .../gdap-management/role-templates/edit.js | 74 + .../gdap-management/role-templates/index.js | 117 + src/pages/tenant/gdap-management/roles/add.js | 112 + .../tenant/gdap-management/roles/index.js | 79 + .../tenant/gdap-management/tabOptions.json | 30 + src/pages/tenant/reports/index.js | 17 + .../tenant/standards/bpa-report/builder.js | 523 + .../tenant/standards/bpa-report/index.js | 64 + src/pages/tenant/standards/bpa-report/view.js | 246 + .../standards/domains-analyser/index.js | 68 + src/pages/tenant/standards/index.js | 17 + .../standards/individual-domains/index.js | 24 + .../standards/list-applied-standards/index.js | 17 + .../tenant/standards/list-standards/index.js | 129 + src/pages/tenant/standards/template.jsx | 233 + .../tenant/tools/bpa-report-builder/index.js | 17 + src/pages/tenant/tools/geoiplookup/index.js | 142 + src/pages/tenant/tools/tenantlookup/index.js | 125 + src/pages/tools/breachlookup/index.js | 252 + src/pages/tools/templatelib/index.jsx | 105 + src/pages/tools/tenantbreachlookup/index.js | 59 + src/pages/unauthenticated.js | 53 + src/paths.js | 7 + src/routes.json | 1085 - src/scss/_custom.scss | 713 - src/scss/_example.scss | 112 - src/scss/_layout.scss | 84 - src/scss/_tenantselector.scss | 219 - src/scss/_themes.scss | 624 - src/scss/_variables.scss | 1808 - src/scss/style.scss | 14 - src/sections/dashboard/account/account-2fa.js | 30 + .../dashboard/account/account-details.js | 165 + .../dashboard/account/account-password.js | 95 + .../dashboard/calendar/calendar-container.js | 46 + .../calendar/calendar-event-dialog.js | 291 + .../dashboard/calendar/calendar-toolbar.js | 124 + .../card-headings/card-heading-1.js | 7 + .../card-headings/card-heading-2.js | 10 + .../card-headings/card-heading-3.js | 50 + .../components/data-states/data-state-1.js | 25 + .../components/data-states/data-state-2.js | 11 + .../components/data-states/data-state-3.js | 11 + .../dashboard/components/images-uploader.js | 120 + .../dashboard/components/lists/list-1.js | 48 + .../dashboard/components/lists/list-2.js | 63 + .../dashboard/components/lists/list-3.js | 143 + .../dashboard/components/lists/list-4.js | 104 + .../dashboard/components/lists/list-5.js | 113 + .../dashboard/components/onboarding/wizard.js | 135 + .../page-headings/page-heading-1.js | 33 + .../page-headings/page-heading-2.js | 104 + .../page-headings/page-heading-3.js | 59 + .../dashboard/components/stats/stats-1.js | 99 + .../dashboard/components/stats/stats-2.js | 59 + .../dashboard/customers/customer-details.js | 138 + .../dashboard/customers/customer-dialog.js | 200 + .../customers/customer-latest-orders.js | 260 + .../dashboard/customers/customer-log.js | 57 + .../dashboard/customers/customer-note-add.js | 97 + .../dashboard/customers/customer-note-card.js | 65 + .../dashboard/customers/customer-notes.js | 45 + .../customers/customer-order-menu.js | 64 + .../customers/customer-orders-table.js | 190 + .../customers/customer-properties.js | 45 + .../dashboard/customers/customers-search.js | 225 + .../customers/customers-table-menu.js | 64 + .../dashboard/customers/customers-table.js | 291 + .../dashboard/foundation/inputs/input-1.js | 32 + .../dashboard/foundation/inputs/input-2.js | 33 + .../dashboard/foundation/inputs/input-3.js | 26 + .../dashboard/foundation/inputs/input-4.js | 31 + .../dashboard/foundation/inputs/input-5.js | 26 + .../dashboard/foundation/tables/table-1.js | 130 + .../dashboard/invoices/invoice-details.js | 60 + .../dashboard/invoices/invoice-line-items.js | 133 + .../invoices/invoice-payment-history.js | 115 + .../dashboard/invoices/invoice-payment.js | 67 + .../invoices/invoice-pdf-document.js | 287 + .../dashboard/invoices/invoice-pdf-preview.js | 276 + .../invoices/invoice-quick-actions.js | 196 + .../dashboard/invoices/invoices-search.js | 239 + .../dashboard/invoices/invoices-stats.js | 179 + .../dashboard/invoices/invoices-table-menu.js | 64 + .../dashboard/invoices/invoices-table.js | 300 + .../dashboard/orders/order-create-dialog.js | 130 + .../dashboard/orders/order-details-dialog.js | 259 + .../dashboard/orders/order-details.js | 99 + .../dashboard/orders/order-line-items.js | 150 + .../dashboard/orders/order-payment-dialog.js | 215 + .../dashboard/orders/order-payment.js | 41 + .../dashboard/orders/order-quick-actions.js | 82 + .../dashboard/orders/orders-dnd-draggable.js | 101 + .../dashboard/orders/orders-dnd-droppable.js | 80 + src/sections/dashboard/orders/orders-dnd.js | 246 + .../dashboard/orders/orders-search.js | 305 + .../dashboard/orders/orders-table-menu.js | 64 + src/sections/dashboard/orders/orders-table.js | 335 + .../organization-billing-details.js | 51 + .../organization/organization-billing-plan.js | 148 + .../organization-invite-dialog.js | 196 + .../overview/overview-account-setup.js | 65 + .../dashboard/overview/overview-bills.js | 167 + .../overview/overview-latest-customers.js | 83 + .../overview/overview-notifications.js | 159 + .../overview/overview-orders-summary.js | 147 + .../dashboard/overview/overview-summary.js | 53 + .../products/product-Insights-reviews.js | 119 + .../products/product-Insights-sales.js | 106 + .../products/product-create-dialog.js | 117 + .../products/product-details-dialog.js | 215 + .../dashboard/products/product-details.js | 81 + .../products/product-insights-channel.js | 138 + .../products/product-insights-rate.js | 133 + .../products/product-quick-actions.js | 144 + .../products/product-variant-dialog.js | 322 + .../products/product-variants-table.js | 179 + .../dashboard/products/product-variants.js | 203 + .../dashboard/products/products-search.js | 216 + .../dashboard/products/products-stats.js | 71 + .../dashboard/products/products-table-menu.js | 64 + .../dashboard/products/products-table.js | 301 + .../dashboard/sales/sales-breakdown.js | 179 + src/sections/dashboard/sales/sales-kpi.js | 160 + src/setupTests.js | 15 - src/store/ApiClient.js | 23 - src/store/actions/index.js | 4 - src/store/actions/resetAuth.js | 6 - src/store/actions/resetState.js | 6 - src/store/api/adconnect.js | 20 - src/store/api/app.js | 143 - src/store/api/auth.js | 11 - src/store/api/baseApi.js | 9 - src/store/api/baseQuery.js | 55 - src/store/api/datatable.js | 11 - src/store/api/devices.js | 25 - src/store/api/domains.js | 68 - src/store/api/groups.js | 83 - src/store/api/licenses.js | 20 - src/store/api/mailbox.js | 43 - src/store/api/oneDrive.js | 23 - src/store/api/reports.js | 21 - src/store/api/security.js | 94 - src/store/api/sharepoint.js | 37 - src/store/api/tenants.js | 88 - src/store/api/users.js | 132 - src/store/features/app.js | 96 - src/store/features/auth.js | 26 - src/store/features/switcher.js | 52 - src/store/index.js | 20 +- src/store/middleware/errorMiddleware.js | 58 - .../middleware/unauthenticatedMiddleware.js | 18 - src/store/root-reducer.js | 6 + src/store/root.js | 46 - src/store/store.js | 22 - src/store/{features => }/toasts.js | 26 +- src/theme/base/create-components.js | 444 + src/theme/base/create-options.js | 27 + src/theme/base/create-typography.js | 75 + src/theme/colors.js | 81 + src/theme/dark/create-components.js | 221 + src/theme/dark/create-options.js | 16 + src/theme/dark/create-palette.js | 36 + src/theme/dark/create-shadows.js | 29 + src/theme/index.js | 62 + src/theme/light/create-components.js | 223 + src/theme/light/create-options.js | 16 + src/theme/light/create-palette.js | 36 + src/theme/light/create-shadows.js | 35 + src/theme/utils.js | 19 + src/utils/apply-filters.js | 171 + src/utils/apply-pagination.js | 3 + src/utils/apply-sort.js | 37 + src/utils/code-style.js | 158 + src/utils/create-emotion-cache.js | 5 + src/utils/create-resource-id.js | 5 + src/utils/deep-copy.js | 24 + src/utils/docs.js | 39 + src/utils/filter-operators.js | 71 + src/utils/get-cipp-error.js | 27 + src/utils/get-cipp-filter-variant.js | 49 + src/utils/get-cipp-formatting.js | 427 + src/utils/get-cipp-license-translation.js | 25 + src/utils/get-cipp-role-translation.js | 13 + src/utils/get-cipp-translation.js | 18 + src/utils/get-cipp-validator.js | 30 + src/utils/get-initials.js | 6 + src/utils/jwt.js | 70 + src/utils/noop.js | 1 + src/utils/obj-from-array.js | 4 + src/utils/wait.js | 1 + src/validators.js | 24 - src/views/cipp/AppApproval.jsx | 212 - src/views/cipp/ExtensionMappings.jsx | 385 - src/views/cipp/ExtensionSync.jsx | 97 - src/views/cipp/Extensions.jsx | 234 - src/views/cipp/Logs.jsx | 241 - src/views/cipp/Scheduler.jsx | 558 - src/views/cipp/Setup.jsx | 352 - src/views/cipp/Statistics.jsx | 153 - src/views/cipp/TemplateLibrary.jsx | 149 - src/views/cipp/UserSettings.jsx | 293 - src/views/cipp/app-settings/CIPPSettings.jsx | 117 - .../cipp/app-settings/SettingsBackend.jsx | 229 - .../SettingsExtensionMappings.jsx | 651 - .../cipp/app-settings/SettingsExtensions.jsx | 157 - .../cipp/app-settings/SettingsGeneral.jsx | 424 - .../cipp/app-settings/SettingsLicenses.jsx | 142 - .../cipp/app-settings/SettingsMaintenance.jsx | 246 - .../app-settings/SettingsNotifications.jsx | 211 - .../cipp/app-settings/SettingsPartner.jsx | 290 - .../cipp/app-settings/SettingsSuperAdmin.jsx | 190 - .../cipp/app-settings/SettingsTenants.jsx | 295 - .../SettingsWebhookSubscriptions.jsx | 79 - .../components/SettingsAppPermissions.jsx | 75 - .../components/SettingsCustomRoles.jsx | 489 - .../components/SettingsDNSResolver.jsx | 65 - .../components/SettingsGeneralRow.jsx | 245 - .../components/SettingsPassword.jsx | 83 - .../components/SettingsSAMRoles.jsx | 149 - .../administration/AddContact.jsx | 95 - .../administration/AddSharedMailbox.jsx | 117 - .../AddTenantAllowBlockList.jsx | 126 - .../administration/ContactsList.jsx | 130 - .../administration/DeletedMailboxes.jsx | 159 - .../EditCalendarPermissions.jsx | 236 - .../administration/EditContact.jsx | 307 - .../administration/EditMailboxPermissions.jsx | 1209 - .../ListTenantAllowBlockList.jsx | 125 - .../administration/MailboxRuleList.jsx | 127 - .../administration/MailboxesList.jsx | 395 - .../administration/QuarantineList.jsx | 226 - .../administration/ViewMobileDevices.jsx | 198 - .../connectors/AddConnectorTemplate.jsx | 61 - .../connectors/ConnectorList.jsx | 179 - .../connectors/DeployConnector.jsx | 207 - .../connectors/ListConnectorTemplates.jsx | 113 - .../reports/AntiPhishingFilters.jsx | 293 - .../MailboxClientAccessSettingsList.jsx | 98 - .../reports/MailboxStatisticsList.jsx | 143 - .../email-exchange/reports/MalwareFilters.jsx | 217 - .../email-exchange/reports/MessageTrace.jsx | 221 - .../reports/SafeAttachmentsFilters.jsx | 181 - .../reports/SafeLinksFilters.jsx | 226 - .../reports/SharedMailboxEnabledAccount.jsx | 103 - .../email-exchange/rooms/AddRoomMailbox.jsx | 118 - .../email-exchange/rooms/ListRoomLists.jsx | 76 - src/views/email-exchange/rooms/ListRooms.jsx | 93 - .../spamfilter/AddSpamfilterTemplate.jsx | 61 - .../spamfilter/DeploySpamfilter.jsx | 214 - .../spamfilter/ListSpamfilterTemplates.jsx | 120 - .../email-exchange/spamfilter/Spamfilter.jsx | 195 - src/views/email-exchange/tools/MailTest.jsx | 126 - .../tools/MailboxRestoreWizard.jsx | 223 - .../email-exchange/tools/MailboxRestores.jsx | 179 - .../email-exchange/tools/MessageViewer.jsx | 342 - .../transport/AddTransportTemplate.jsx | 61 - .../transport/DeployTransport.jsx | 208 - .../transport/ListTransportTemplates.jsx | 111 - .../transport/TransportRules.jsx | 147 - .../applications/ApplicationsAddChocoApp.jsx | 331 - .../applications/ApplicationsAddOffice.jsx | 247 - .../applications/ApplicationsAddRMM.jsx | 366 - .../applications/ApplicationsAddWinGet.jsx | 313 - .../applications/ApplicationsList.jsx | 209 - .../applications/ListApplicationQueue.jsx | 139 - .../endpoint/autopilot/AutopilotAddDevice.jsx | 318 - .../autopilot/AutopilotAddProfile.jsx | 296 - .../autopilot/AutopilotAddStatusPage.jsx | 235 - .../autopilot/AutopilotListDevices.jsx | 175 - .../autopilot/AutopilotListProfiles.jsx | 113 - .../autopilot/AutopilotListStatusPages.jsx | 86 - src/views/endpoint/intune/Devices.jsx | 329 - src/views/endpoint/intune/MEMAddPolicy.jsx | 350 - .../endpoint/intune/MEMAddPolicyTemplate.jsx | 102 - src/views/endpoint/intune/MEMCAPolicies.jsx | 11 - src/views/endpoint/intune/MEMEditPolicy.jsx | 170 - .../endpoint/intune/MEMListAppProtection.jsx | 140 - .../endpoint/intune/MEMListCompliance.jsx | 164 - src/views/endpoint/intune/MEMListPolicies.jsx | 190 - .../intune/MEMListPolicyTemplates.jsx | 140 - src/views/home/Home.jsx | 548 - .../identity/administration/AddGroup.jsx | 205 - .../administration/AddGroupTemplate.jsx | 125 - src/views/identity/administration/AddUser.jsx | 508 - .../identity/administration/AddUserBulk.jsx | 255 - src/views/identity/administration/Deleted.jsx | 121 - .../administration/DeployGroupTemplate.jsx | 293 - .../administration/DeployJITAdmin.jsx | 365 - src/views/identity/administration/Devices.jsx | 201 - .../identity/administration/EditGroup.jsx | 338 - .../identity/administration/EditUser.jsx | 586 - .../administration/GroupTemplates.jsx | 137 - src/views/identity/administration/Groups.jsx | 220 - .../identity/administration/InviteGuest.jsx | 151 - .../administration/OffboardingWizard.jsx | 480 - .../identity/administration/RiskyUsers.jsx | 218 - src/views/identity/administration/Roles.jsx | 110 - .../administration/User365Management.jsx | 38 - .../identity/administration/UserActions.jsx | 153 - .../identity/administration/UserCAPs.jsx | 36 - .../identity/administration/UserDetails.jsx | 102 - .../identity/administration/UserDevices.jsx | 154 - .../administration/UserEmailDetails.jsx | 40 - .../administration/UserEmailPermissions.jsx | 38 - .../administration/UserEmailSettings.jsx | 88 - .../administration/UserEmailUsage.jsx | 62 - .../identity/administration/UserGroups.jsx | 98 - .../administration/UserLastLoginDetails.jsx | 54 - .../administration/UserMailboxRuleList.jsx | 140 - .../administration/UserOneDriveUsage.jsx | 60 - .../administration/UserSigninLogs.jsx | 263 - src/views/identity/administration/Users.jsx | 730 - src/views/identity/administration/ViewBEC.jsx | 460 - .../identity/administration/ViewGroup.jsx | 7 - .../identity/administration/ViewUser.jsx | 114 - .../identity/reports/AzureADConnectReport.jsx | 49 - src/views/identity/reports/InactiveUsers.jsx | 61 - src/views/identity/reports/MFAReport.jsx | 188 - src/views/identity/reports/RiskDetections.jsx | 230 - src/views/identity/reports/SignIns.jsx | 220 - src/views/pages/LogoutRedirect/PageLogOut.jsx | 38 - src/views/pages/license/License.jsx | 749 - src/views/pages/login/Login.jsx | 29 - src/views/pages/login/Logout.jsx | 23 - src/views/pages/page401/Page401.jsx | 38 - src/views/pages/page403/Page403.jsx | 31 - src/views/pages/page404/Page404.jsx | 35 - src/views/pages/page500/Page500.jsx | 63 - .../security/defender/DeployDefender.jsx | 453 - src/views/security/defender/ListDefender.jsx | 95 - src/views/security/defender/ListVuln.jsx | 108 - src/views/security/incidents/ListAlerts.jsx | 224 - .../security/incidents/ListIncidents.jsx | 322 - .../reports/ListDeviceComplianceReport.jsx | 91 - .../teams-share/onedrive/OneDriveList.jsx | 152 - src/views/teams-share/sharepoint/AddSite.jsx | 110 - .../teams-share/sharepoint/AddSiteBulk.jsx | 241 - .../teams-share/sharepoint/SharepointList.jsx | 214 - src/views/teams-share/teams/BusinessVoice.jsx | 215 - .../teams-share/teams/TeamApplications.jsx | 60 - src/views/teams-share/teams/TeamChannels.jsx | 79 - src/views/teams-share/teams/TeamDetails.jsx | 58 - .../teams-share/teams/TeamGuestPolicies.jsx | 47 - .../teams-share/teams/TeamMemberPolicies.jsx | 63 - src/views/teams-share/teams/TeamMembers.jsx | 46 - .../teams/TeamMessagingSettings.jsx | 73 - src/views/teams-share/teams/TeamOwners.jsx | 46 - src/views/teams-share/teams/TeamsActivity.jsx | 54 - src/views/teams-share/teams/TeamsAddTeam.jsx | 119 - src/views/teams-share/teams/TeamsListTeam.jsx | 87 - .../teams-share/teams/ViewTeamSettings.jsx | 97 - .../tenant/administration/AlertRules.jsx | 587 - .../tenant/administration/AlertWizard.jsx | 469 - .../tenant/administration/AuthMethods.jsx | 141 - src/views/tenant/administration/Domains.jsx | 132 - .../tenant/administration/EditTenant.jsx | 155 - .../administration/GDAPInviteWizard.jsx | 432 - .../tenant/administration/GDAPRoleWizard.jsx | 182 - .../tenant/administration/GDAPWizard.jsx | 239 - .../tenant/administration/GeoIPLookup.jsx | 233 - .../tenant/administration/GraphExplorer.jsx | 719 - .../tenant/administration/ListAlertsQueue.jsx | 101 - .../administration/ListAppConsentRequests.jsx | 161 - .../tenant/administration/ListAuditLogs.jsx | 284 - .../administration/ListEnterpriseApps.jsx | 122 - .../tenant/administration/ListGDAPInvites.jsx | 63 - .../tenant/administration/ListGDAPQueue.jsx | 44 - .../administration/ListGDAPRelationships.jsx | 261 - .../tenant/administration/ListGDAPRoles.jsx | 55 - .../tenant/administration/ListLicences.jsx | 70 - .../tenant/administration/ListOauthApps.jsx | 73 - .../administration/PartnerRelationships.jsx | 78 - .../tenant/administration/SecureScore.jsx | 420 - .../tenant/administration/ServiceHealth.jsx | 61 - .../tenant/administration/TenantLookup.jsx | 164 - .../TenantOffboardingWizard.jsx | 259 - .../administration/TenantOnboarding.jsx | 153 - .../administration/TenantOnboardingWizard.jsx | 290 - src/views/tenant/administration/Tenants.jsx | 85 - .../onboarding/RelationshipOnboarding.jsx | 212 - src/views/tenant/backup/CreateBackup.jsx | 271 - src/views/tenant/backup/RestoreBackup.jsx | 242 - .../tenant/conditional/AddCATemplate.jsx | 63 - .../tenant/conditional/ConditionalAccess.jsx | 279 - src/views/tenant/conditional/DeployCA.jsx | 303 - .../conditional/DeployNamedLocation.jsx | 221 - .../tenant/conditional/DeployVacation.jsx | 196 - .../tenant/conditional/ListCATemplates.jsx | 120 - .../tenant/conditional/NamedLocations.jsx | 179 - src/views/tenant/conditional/TestCAPolicy.jsx | 288 - .../tenant/standards/BPAReportBuilder.jsx | 306 - .../tenant/standards/BestPracticeAnalyser.jsx | 471 - .../tenant/standards/DomainsAnalyser.jsx | 319 - .../tenant/standards/IndividualDomain.jsx | 1289 - .../tenant/standards/ListAppliedStandards.jsx | 1166 - src/views/tenant/standards/ListStandards.jsx | 116 - staticwebapp.config.json | 31 +- version_latest.txt | 4 + vite.config.js | 49 - yarn.lock | 6983 + 1036 files changed, 300878 insertions(+), 85954 deletions(-) delete mode 100644 .browserslistrc delete mode 100644 .cspell.json delete mode 100644 .env create mode 100644 .eslintrc.json delete mode 100644 .jscpd.json delete mode 100644 .mega-linter.yml delete mode 100644 .node-version delete mode 100644 .prettierignore delete mode 100644 .prettierrc.json delete mode 100644 .secretlintignore delete mode 100644 .secretlintrc.json delete mode 100644 .stylelintrc.json create mode 100644 .vscode/settings.json delete mode 100644 .yamllint.yaml delete mode 100644 Generate-Import-Map.js delete mode 100644 Importmap.ps1 delete mode 100644 LICENSE.CustomLicenses delete mode 100644 LICENSE.md create mode 100644 Tools/Start-CippDevEmulatorsWithKitty.ps1 create mode 100644 Tools/Update intune Templates.ps1 create mode 100644 generate-placeholders.js delete mode 100644 index.html delete mode 100644 jsconfig.json create mode 100644 next.config.js delete mode 100644 package-lock.json delete mode 100644 public/GDAPRoles.json delete mode 100644 public/MFAStates.json create mode 100644 public/assets/avatars/avatar-adler-atthowe.jpg create mode 100644 public/assets/avatars/avatar-andi-jevons.jpg create mode 100644 public/assets/avatars/avatar-bell-covely.jpg create mode 100644 public/assets/avatars/avatar-candace-royden.jpg create mode 100644 public/assets/avatars/avatar-chen-simmons.jpg create mode 100644 public/assets/avatars/avatar-eda-annies.jpg create mode 100644 public/assets/avatars/avatar-emelia-brizland.jpg create mode 100644 public/assets/avatars/avatar-fabiano-jorioz.jpg create mode 100644 public/assets/avatars/avatar-giraud-lamlin.jpg create mode 100644 public/assets/avatars/avatar-horia-tepar.jpg create mode 100644 public/assets/avatars/avatar-jenilee-felderer.jpg create mode 100644 public/assets/avatars/avatar-meggie-heinonen.jpg create mode 100644 public/assets/avatars/avatar-priscilla-parades.jpg create mode 100644 public/assets/avatars/avatar-rustin-rathe.jpg create mode 100644 public/assets/avatars/avatar-sean-picott.jpg create mode 100644 public/assets/avatars/avatar-wilhelm-engall.jpg create mode 100644 public/assets/flags/flag-de.svg create mode 100644 public/assets/flags/flag-es.svg create mode 100644 public/assets/flags/flag-uk.svg create mode 100644 public/assets/home-features-auth.png create mode 100644 public/assets/home-features-filters.png create mode 100644 public/assets/home-features-states.png create mode 100644 public/assets/home-flows.png create mode 100644 public/assets/home-hero.png create mode 100644 public/assets/illustration-not-found.svg create mode 100644 public/assets/illustration-reports.png create mode 100644 public/assets/illustrations/undraw_analysis_dq08.svg create mode 100644 public/assets/illustrations/undraw_apps_re_ienc.svg create mode 100644 public/assets/illustrations/undraw_articles_wbpb.svg create mode 100644 public/assets/illustrations/undraw_audio_conversation_re_3t38.svg create mode 100644 public/assets/illustrations/undraw_bug_fixing_oc-7-a.svg create mode 100644 public/assets/illustrations/undraw_business_chat_re_gg4h.svg create mode 100644 public/assets/illustrations/undraw_button_style_re_uctt.svg create mode 100644 public/assets/illustrations/undraw_cloud_hosting_7xb1.svg create mode 100644 public/assets/illustrations/undraw_engineering_team_a7n2.svg create mode 100644 public/assets/illustrations/undraw_experience_design_re_dmqq.svg create mode 100644 public/assets/illustrations/undraw_innovative_re_rr5i.svg create mode 100644 public/assets/illustrations/undraw_lost_re_xqjt.svg create mode 100644 public/assets/illustrations/undraw_mindfulness_8gqa.svg create mode 100644 public/assets/illustrations/undraw_multitasking_re_ffpb.svg create mode 100644 public/assets/illustrations/undraw_not_found_re_bh2e.svg create mode 100644 public/assets/illustrations/undraw_online_test_re_kyfx.svg create mode 100644 public/assets/illustrations/undraw_open_note_6nva.svg create mode 100644 public/assets/illustrations/undraw_server_status_re_n8ln.svg create mode 100644 public/assets/illustrations/undraw_solution_mindset_re_57bf.svg create mode 100644 public/assets/illustrations/undraw_speed_test_re_pe1f.svg create mode 100644 public/assets/illustrations/undraw_undraw_undraw_undraw_sign_up_ln1s_-1-_s4bc_-1-_ee41_-1-_kf4d.svg create mode 100644 public/assets/illustrations/undraw_website_ij0l.svg create mode 100644 public/assets/illustrations/undraw_writer_q06d.svg create mode 100644 public/assets/integrations/cipp-api.png create mode 100644 public/assets/integrations/gradient.png create mode 100644 public/assets/integrations/gradient_dark.png create mode 100644 public/assets/integrations/halo.png create mode 100644 public/assets/integrations/halo.svg create mode 100644 public/assets/integrations/hibp.png create mode 100644 public/assets/integrations/hudu.png create mode 100644 public/assets/integrations/hudu_dark.png create mode 100644 public/assets/integrations/ninjaone.png create mode 100644 public/assets/integrations/ninjaone_dark.png create mode 100644 public/assets/integrations/pwpush_dark.png create mode 100644 public/assets/integrations/pwpush_light.png create mode 100644 public/assets/integrations/sherweb.png create mode 100644 public/assets/integrations/sherweb_dark.png create mode 100644 public/assets/logo.svg create mode 100644 public/assets/logos/logo-amplify.svg create mode 100644 public/assets/logos/logo-auth0.svg create mode 100644 public/assets/logos/logo-figma.svg create mode 100644 public/assets/logos/logo-firebase.svg create mode 100644 public/assets/logos/logo-jwt.svg create mode 100644 public/assets/logos/logo-react.svg create mode 100644 public/assets/logos/logo-typescript.svg create mode 100644 public/assets/pages-dropdown.png create mode 100644 public/assets/products/product-1.png create mode 100644 public/assets/products/product-10.png create mode 100644 public/assets/products/product-2.png create mode 100644 public/assets/products/product-3.png create mode 100644 public/assets/products/product-4.png create mode 100644 public/assets/products/product-5.png create mode 100644 public/assets/products/product-6.png create mode 100644 public/assets/products/product-7.png create mode 100644 public/assets/products/product-8.png create mode 100644 public/assets/products/product-9.png create mode 100644 public/assets/support-adrian.png create mode 100644 public/assets/support-alexandru.png create mode 100644 public/assets/support-stefania.png delete mode 100644 public/browserconfig.xml delete mode 100644 "public/img/NinjaOne\342\224\254\302\253 Logo white@4x.png" delete mode 100644 public/img/augmentt-dark.png delete mode 100644 public/img/augmentt-light.png delete mode 100644 public/img/huntress_teal.png delete mode 100644 public/img/ninjaone.png delete mode 100644 public/img/ninjaone_dark.png delete mode 100644 public/img/rewst.png delete mode 100644 public/img/rewst_dark.png create mode 100644 public/languageList.json create mode 100644 public/logo.png delete mode 100644 public/mstile-310x310.png rename public/{PermissionsList.json => permissionsList.json} (100%) create mode 100644 public/robots.txt delete mode 100644 public/safari-pinned-tab.svg create mode 100644 public/sponsors/RoB-light.png create mode 100644 public/sponsors/RoB-light.svg create mode 100644 public/sponsors/RoB.png create mode 100644 public/sponsors/RoB.svg create mode 100644 public/sponsors/augmentt-dark.png create mode 100644 public/sponsors/augmentt-light.png create mode 100644 public/sponsors/huntress_teal.png create mode 100644 public/sponsors/ninjaone.png create mode 100644 public/sponsors/ninjaone_white.png create mode 100644 public/sponsors/rewst.png create mode 100644 public/sponsors/rewst_dark.png create mode 100644 public/version.json delete mode 100644 src/App.jsx delete mode 100644 src/App.test.js delete mode 100644 src/_nav.jsx create mode 100644 src/api/ApiCall.jsx delete mode 100644 src/assets/images/CIPP.png delete mode 100644 src/assets/images/CIPP_Dark.png delete mode 100644 src/assets/images/avatars/0.jpg delete mode 100644 src/assets/images/logo-square.png delete mode 100644 src/assets/images/logo.png create mode 100644 src/components/CSVReader.jsx create mode 100644 src/components/CippCards/CippBannerListCard.jsx create mode 100644 src/components/CippCards/CippButtonCard.jsx create mode 100644 src/components/CippCards/CippChartCard.jsx create mode 100644 src/components/CippCards/CippDomainCards.jsx create mode 100644 src/components/CippCards/CippExchangeInfoCard.jsx create mode 100644 src/components/CippCards/CippImageCard.jsx create mode 100644 src/components/CippCards/CippInfoBar.jsx create mode 100644 src/components/CippCards/CippInfoCard.jsx create mode 100644 src/components/CippCards/CippListitemCard.jsx create mode 100644 src/components/CippCards/CippPageCard.jsx create mode 100644 src/components/CippCards/CippPropertyListCard.jsx create mode 100644 src/components/CippCards/CippRemediationCard.jsx create mode 100644 src/components/CippCards/CippUniversalSearch.jsx create mode 100644 src/components/CippCards/CippUserInfoCard.jsx create mode 100644 src/components/CippComponents/CippApiDialog.jsx create mode 100644 src/components/CippComponents/CippApiResults.jsx create mode 100644 src/components/CippComponents/CippAppPermissionBuilder.jsx create mode 100644 src/components/CippComponents/CippAutocomplete.jsx create mode 100644 src/components/CippComponents/CippCardTabPanel.jsx create mode 100644 src/components/CippComponents/CippCodeBlock.jsx create mode 100644 src/components/CippComponents/CippComponentDialog.jsx create mode 100644 src/components/CippComponents/CippCopyToClipboard.jsx create mode 100644 src/components/CippComponents/CippCsvExportButton.jsx create mode 100644 src/components/CippComponents/CippDevOptions.jsx rename src/components/{utilities => CippComponents}/CippDropzone.jsx (68%) create mode 100644 src/components/CippComponents/CippFormComponent.jsx create mode 100644 src/components/CippComponents/CippFormCondition.jsx create mode 100644 src/components/CippComponents/CippFormContactSelector.jsx create mode 100644 src/components/CippComponents/CippFormDomainSelector.jsx create mode 100644 src/components/CippComponents/CippFormInputArray.jsx create mode 100644 src/components/CippComponents/CippFormLicenseSelector.jsx create mode 100644 src/components/CippComponents/CippFormTenantSelector.jsx create mode 100644 src/components/CippComponents/CippFormUserSelector.jsx create mode 100644 src/components/CippComponents/CippGeoLocation.jsx create mode 100644 src/components/CippComponents/CippMap.jsx create mode 100644 src/components/CippComponents/CippMessageViewer.jsx create mode 100644 src/components/CippComponents/CippOffCanvas.jsx create mode 100644 src/components/CippComponents/CippPropertyList.jsx create mode 100644 src/components/CippComponents/CippSettingsSideBar.jsx create mode 100644 src/components/CippComponents/CippTableDialog.jsx create mode 100644 src/components/CippComponents/CippTablePage.jsx create mode 100644 src/components/CippComponents/CippTenantSelector.jsx create mode 100644 src/components/CippComponents/CippTimeAgo.jsx create mode 100644 src/components/CippComponents/CippTranslations.jsx create mode 100644 src/components/CippComponents/ConnectorTemplateDetails.jsx create mode 100644 src/components/CippComponents/MailboxRestoreDetails.jsx create mode 100644 src/components/CippFormPages/CippAddEditGdapRoleTemplate.jsx create mode 100644 src/components/CippFormPages/CippAddEditUser.jsx create mode 100644 src/components/CippFormPages/CippAddGroupForm.jsx create mode 100644 src/components/CippFormPages/CippAddGroupTemplateForm.jsx create mode 100644 src/components/CippFormPages/CippExchangeSettingsForm.jsx create mode 100644 src/components/CippFormPages/CippFormPage.jsx create mode 100644 src/components/CippFormPages/CippFormSection.jsx create mode 100644 src/components/CippFormPages/CippFormSkeleton.jsx create mode 100644 src/components/CippFormPages/CippInviteGuest.jsx create mode 100644 src/components/CippFormPages/CippJSONView.jsx create mode 100644 src/components/CippFormPages/CippSchedulerForm.jsx create mode 100644 src/components/CippIntegrations/CippIntegrationFieldMapping.jsx create mode 100644 src/components/CippIntegrations/CippIntegrationSettings.jsx create mode 100644 src/components/CippIntegrations/CippIntegrationTenantMapping.jsx create mode 100644 src/components/CippSettings/CippBackendCard.jsx create mode 100644 src/components/CippSettings/CippBackupSettings.jsx create mode 100644 src/components/CippSettings/CippCacheSettings.jsx create mode 100644 src/components/CippSettings/CippCustomRoles.jsx create mode 100644 src/components/CippSettings/CippDnsSettings.jsx create mode 100644 src/components/CippSettings/CippGDAPResults.jsx create mode 100644 src/components/CippSettings/CippPasswordSettings.jsx create mode 100644 src/components/CippSettings/CippPermissionCheck.jsx create mode 100644 src/components/CippSettings/CippPermissionReport.jsx create mode 100644 src/components/CippSettings/CippPermissionResults.jsx create mode 100644 src/components/CippSettings/CippTenantResults.jsx create mode 100644 src/components/CippSettings/CippVersionProperties.jsx create mode 100644 src/components/CippStandards/CippStandardAccordion.jsx create mode 100644 src/components/CippStandards/CippStandardDialog.jsx create mode 100644 src/components/CippStandards/CippStandardsSideBar.jsx create mode 100644 src/components/CippTable/CIPPTableToptoolbar.js create mode 100644 src/components/CippTable/CippDataTable.js create mode 100644 src/components/CippTable/CippDataTableButton.jsx create mode 100644 src/components/CippTable/CippGraphExplorerFilter.js create mode 100644 src/components/CippTable/util-columnsFromAPI.js create mode 100644 src/components/CippTable/util-handleActionsList.js create mode 100644 src/components/CippTable/util-tablemode.js create mode 100644 src/components/CippWizard/CIPPDeploymentStep.js create mode 100644 src/components/CippWizard/CippCAForm.jsx create mode 100644 src/components/CippWizard/CippIntunePolicy.jsx create mode 100644 src/components/CippWizard/CippPSACredentialsStep.js create mode 100644 src/components/CippWizard/CippPSASyncOptions.js create mode 100644 src/components/CippWizard/CippTenantStep.jsx create mode 100644 src/components/CippWizard/CippWizard.jsx create mode 100644 src/components/CippWizard/CippWizardAppApproval.jsx create mode 100644 src/components/CippWizard/CippWizardAutoComplete.jsx create mode 100644 src/components/CippWizard/CippWizardAutopilotOptions.jsx create mode 100644 src/components/CippWizard/CippWizardBulkOptions.jsx create mode 100644 src/components/CippWizard/CippWizardCSVImport.jsx create mode 100644 src/components/CippWizard/CippWizardConfirmation.js create mode 100644 src/components/CippWizard/CippWizardGroupTemplates.jsx create mode 100644 src/components/CippWizard/CippWizardOffboarding.jsx create mode 100644 src/components/CippWizard/CippWizardOptionsList.jsx create mode 100644 src/components/CippWizard/CippWizardPage.jsx create mode 100644 src/components/CippWizard/CippWizardStepButtons.jsx create mode 100644 src/components/CippWizard/wizard-steps.js create mode 100644 src/components/PrivateRoute.js create mode 100644 src/components/action-list-item.js create mode 100644 src/components/action-list.js create mode 100644 src/components/actions-menu.js create mode 100644 src/components/bulk-actions-menu.js delete mode 100644 src/components/buttons/CsvButton.jsx delete mode 100644 src/components/buttons/PdfButton.jsx delete mode 100644 src/components/buttons/TableModalButton.jsx delete mode 100644 src/components/buttons/TitleButton.jsx delete mode 100644 src/components/buttons/index.js create mode 100644 src/components/chart.js create mode 100644 src/components/confirmation-dialog.js delete mode 100644 src/components/contentcards/ActionContentCard.jsx delete mode 100644 src/components/contentcards/CippAccordionItem.jsx delete mode 100644 src/components/contentcards/CippButtonCard.jsx delete mode 100644 src/components/contentcards/CippChartCard.jsx delete mode 100644 src/components/contentcards/CippPrettyCard.jsx delete mode 100644 src/components/contentcards/DatatableContentCard.jsx delete mode 100644 src/components/contentcards/ListGroupContentCard.jsx delete mode 100644 src/components/contentcards/TableContentCard.jsx delete mode 100644 src/components/contentcards/index.js create mode 100644 src/components/csvExportButton.js create mode 100644 src/components/file-dropzone.js create mode 100644 src/components/filter-dialog-item.js create mode 100644 src/components/filter-dialog.js delete mode 100644 src/components/forms/RFFComponents.jsx delete mode 100644 src/components/forms/index.js delete mode 100644 src/components/header/AppHeaderDropdown.jsx delete mode 100644 src/components/header/AppHeaderSearch.jsx delete mode 100644 src/components/header/index.js create mode 100644 src/components/images-dialog.js delete mode 100644 src/components/layout/AppBreadcrumb.jsx delete mode 100644 src/components/layout/AppFooter.jsx delete mode 100644 src/components/layout/AppHeader.jsx delete mode 100644 src/components/layout/AppSidebar.jsx delete mode 100644 src/components/layout/AppSidebarNav.jsx delete mode 100644 src/components/layout/CippCallout.css delete mode 100644 src/components/layout/CippCallout.jsx delete mode 100644 src/components/layout/CippContentCard.jsx delete mode 100644 src/components/layout/CippMasonry.jsx delete mode 100644 src/components/layout/CippPage.jsx delete mode 100644 src/components/layout/CippWizard.jsx delete mode 100644 src/components/layout/index.js create mode 100644 src/components/linearProgressWithLabel.jsx create mode 100644 src/components/logo.js create mode 100644 src/components/pagination.js create mode 100644 src/components/pdfExportButton.js create mode 100644 src/components/property-list-item.js create mode 100644 src/components/property-list.js create mode 100644 src/components/query-field.js create mode 100644 src/components/quill-editor.js create mode 100644 src/components/resource-error.js create mode 100644 src/components/resource-loading.js create mode 100644 src/components/resource-unavailable.js create mode 100644 src/components/rtl.js create mode 100644 src/components/scrollbar.js delete mode 100644 src/components/tables/CellBadge.jsx delete mode 100644 src/components/tables/CellBoolean.jsx delete mode 100644 src/components/tables/CellBytes.jsx delete mode 100644 src/components/tables/CellCopyButton.jsx delete mode 100644 src/components/tables/CellDate.jsx delete mode 100644 src/components/tables/CellDelegatedPrivilege.jsx delete mode 100644 src/components/tables/CellGenericFormat.jsx delete mode 100644 src/components/tables/CellLicense.jsx delete mode 100644 src/components/tables/CellLogo.jsx delete mode 100644 src/components/tables/CellMathFormatter.jsx delete mode 100644 src/components/tables/CellNullText.jsx delete mode 100644 src/components/tables/CellProgressBar.jsx delete mode 100644 src/components/tables/CellTable.jsx delete mode 100644 src/components/tables/CellTip.jsx delete mode 100644 src/components/tables/CippDatatable.jsx delete mode 100644 src/components/tables/CippOffcanvasTable.jsx delete mode 100644 src/components/tables/CippTable.jsx delete mode 100644 src/components/tables/WizardTableField.jsx delete mode 100644 src/components/tables/index.js create mode 100644 src/components/toaster.js delete mode 100644 src/components/utilities/CippActionsOffcanvas.jsx delete mode 100644 src/components/utilities/CippAppPermissionBuilder.jsx delete mode 100644 src/components/utilities/CippCamelCase.jsx delete mode 100644 src/components/utilities/CippCodeBlock.jsx delete mode 100644 src/components/utilities/CippCodeOffcanvas.jsx delete mode 100644 src/components/utilities/CippCopyToClipboard.jsx delete mode 100644 src/components/utilities/CippFuzzySearch.jsx delete mode 100644 src/components/utilities/CippGraphUserFilter.jsx delete mode 100644 src/components/utilities/CippJsonView.jsx delete mode 100644 src/components/utilities/CippLazy.jsx delete mode 100644 src/components/utilities/CippListOffcanvas.jsx delete mode 100644 src/components/utilities/CippOffcanvas.jsx delete mode 100644 src/components/utilities/CippProfile.jsx delete mode 100644 src/components/utilities/CippScheduleOffcanvas.jsx delete mode 100644 src/components/utilities/CippTableOffcanvas.jsx delete mode 100644 src/components/utilities/CippTenantOffcanvas.jsx delete mode 100644 src/components/utilities/CippauthCheck.jsx delete mode 100644 src/components/utilities/ErrorBoundary.jsx delete mode 100644 src/components/utilities/FastSwitcher.jsx delete mode 100644 src/components/utilities/Loading.jsx delete mode 100644 src/components/utilities/ModalRoot.jsx delete mode 100644 src/components/utilities/PageSizeSwitcher.jsx delete mode 100644 src/components/utilities/PrivateRoute.jsx delete mode 100644 src/components/utilities/ReportImage.jsx delete mode 100644 src/components/utilities/SharedModal.jsx delete mode 100644 src/components/utilities/StatusIcon.jsx delete mode 100644 src/components/utilities/TenantListSelector.jsx delete mode 100644 src/components/utilities/TenantSelector.jsx delete mode 100644 src/components/utilities/TenantSelectorMultiple.jsx delete mode 100644 src/components/utilities/ThemeSwitcher.jsx delete mode 100644 src/components/utilities/Toasts.jsx delete mode 100644 src/components/utilities/UniversalSearch.jsx delete mode 100644 src/components/utilities/UsageLocation.jsx delete mode 100644 src/components/utilities/index.js delete mode 100644 src/components/utilities/validateAlphabeticalSort.jsx create mode 100644 src/components/widget-previewer.js create mode 100644 src/contexts/settings-context.js delete mode 100644 src/data/BPAField.schema.v1.json delete mode 100644 src/data/BPAField.uischema.v1.json delete mode 100644 src/data/BPAReport.schema.v1.json delete mode 100644 src/data/BPAReport.uischema.v1.json create mode 100644 src/data/CIPPDefaultGDAPRoles.json create mode 100644 src/data/GraphExplorerPresets.json delete mode 100644 src/data/LicenseExamples.json create mode 100644 src/data/audit-log-translations.json delete mode 100644 src/data/classificationDetermination.json create mode 100644 src/data/intuneCollection.json delete mode 100644 src/data/translator.json delete mode 100644 src/helpers.js create mode 100644 src/hooks/use-auth.js create mode 100644 src/hooks/use-dialog.js create mode 100644 src/hooks/use-filters.js create mode 100644 src/hooks/use-mocked-user.js create mode 100644 src/hooks/use-mounted.js create mode 100644 src/hooks/use-page-view.js create mode 100644 src/hooks/use-popover.js create mode 100644 src/hooks/use-securescore.js create mode 100644 src/hooks/use-selection.js create mode 100644 src/hooks/use-settings.js create mode 100644 src/hooks/use-window-scroll.js delete mode 100644 src/hooks/useConfirmModal.jsx delete mode 100644 src/hooks/useNavFavouriteCheck.jsx delete mode 100644 src/hooks/useQuery.jsx delete mode 100644 src/hooks/useRouteNavCompare.jsx create mode 100644 src/icons/iconly/bulk/azure.js create mode 100644 src/icons/iconly/bulk/bag.js create mode 100644 src/icons/iconly/bulk/buy.js create mode 100644 src/icons/iconly/bulk/calendar.js create mode 100644 src/icons/iconly/bulk/category.js create mode 100644 src/icons/iconly/bulk/chart.js create mode 100644 src/icons/iconly/bulk/defender.js create mode 100644 src/icons/iconly/bulk/document.js create mode 100644 src/icons/iconly/bulk/exchange.js create mode 100644 src/icons/iconly/bulk/graph.js create mode 100644 src/icons/iconly/bulk/intune.js create mode 100644 src/icons/iconly/bulk/microsoft.js create mode 100644 src/icons/iconly/bulk/settings.js create mode 100644 src/icons/iconly/bulk/show.js create mode 100644 src/icons/iconly/bulk/three-user.js create mode 100644 src/icons/iconly/bulk/ticket.js create mode 100644 src/icons/iconly/bulk/two-user.js delete mode 100644 src/importsMap.jsx create mode 100644 src/index.js delete mode 100644 src/index.jsx delete mode 100644 src/layout/DefaultLayout.jsx create mode 100644 src/layouts/HeaderedTabbedLayout.jsx create mode 100644 src/layouts/TabbedLayout.jsx create mode 100644 src/layouts/account-popover.js create mode 100644 src/layouts/config.js create mode 100644 src/layouts/footer.js create mode 100644 src/layouts/index.js create mode 100644 src/layouts/mobile-nav-item.js create mode 100644 src/layouts/mobile-nav.js create mode 100644 src/layouts/notifications-popover.js create mode 100644 src/layouts/organization-popover.js create mode 100644 src/layouts/side-nav-item.js create mode 100644 src/layouts/side-nav.js create mode 100644 src/layouts/top-nav.js create mode 100644 src/libs/nprogress.js create mode 100644 src/pages/401.js create mode 100644 src/pages/404.js create mode 100644 src/pages/500.js create mode 100644 src/pages/_app.js create mode 100644 src/pages/_document.js create mode 100644 src/pages/cipp/advanced/exchange-cmdlets.js create mode 100644 src/pages/cipp/advanced/timers.js create mode 100644 src/pages/cipp/extension-sync/index.js create mode 100644 src/pages/cipp/integrations/configure.js create mode 100644 src/pages/cipp/integrations/index.js create mode 100644 src/pages/cipp/integrations/sync.js create mode 100644 src/pages/cipp/logs/index.js create mode 100644 src/pages/cipp/preferences.js create mode 100644 src/pages/cipp/scheduler/index.js create mode 100644 src/pages/cipp/scheduler/job.jsx create mode 100644 src/pages/cipp/settings/backend.js create mode 100644 src/pages/cipp/settings/backup.js create mode 100644 src/pages/cipp/settings/index.js create mode 100644 src/pages/cipp/settings/licenses.js create mode 100644 src/pages/cipp/settings/notifications.js create mode 100644 src/pages/cipp/settings/partner-webhooks.js create mode 100644 src/pages/cipp/settings/permissions.js create mode 100644 src/pages/cipp/settings/tabOptions.json create mode 100644 src/pages/cipp/settings/tenants.js create mode 100644 src/pages/cipp/statistics/index.js create mode 100644 src/pages/cipp/super-admin/custom-roles.js create mode 100644 src/pages/cipp/super-admin/function-offloading.js create mode 100644 src/pages/cipp/super-admin/sam-app-permissions.js create mode 100644 src/pages/cipp/super-admin/sam-app-roles.js create mode 100644 src/pages/cipp/super-admin/tabOptions.json create mode 100644 src/pages/cipp/super-admin/tenant-mode.js create mode 100644 src/pages/domains.js create mode 100644 src/pages/email/administration/contacts/add.jsx create mode 100644 src/pages/email/administration/contacts/index.js create mode 100644 src/pages/email/administration/deleted-mailboxes/index.js create mode 100644 src/pages/email/administration/mailbox-rules/index.js create mode 100644 src/pages/email/administration/mailboxes/addshared.jsx create mode 100644 src/pages/email/administration/mailboxes/index.js create mode 100644 src/pages/email/administration/quarantine/index.js create mode 100644 src/pages/email/administration/tenant-allow-block-lists/add.jsx create mode 100644 src/pages/email/administration/tenant-allow-block-lists/index.js create mode 100644 src/pages/email/connectionfilter/deploy/index.js create mode 100644 src/pages/email/connectionfilter/list-connectionfilter/add.jsx create mode 100644 src/pages/email/connectionfilter/list-connectionfilter/index.js create mode 100644 src/pages/email/connectionfilter/list-templates/index.js create mode 100644 src/pages/email/connectors/deploy-connector/index.js create mode 100644 src/pages/email/connectors/list-connector-templates/index.js create mode 100644 src/pages/email/connectors/list-connectors/add.jsx create mode 100644 src/pages/email/connectors/list-connectors/index.js create mode 100644 src/pages/email/reports/SharedMailboxEnabledAccount/index.js create mode 100644 src/pages/email/reports/antiphishing-filters/index.js create mode 100644 src/pages/email/reports/mailbox-cas-settings/index.js create mode 100644 src/pages/email/reports/mailbox-statistics/index.js create mode 100644 src/pages/email/reports/malware-filters/index.js create mode 100644 src/pages/email/reports/safeattachments-filters/index.js create mode 100644 src/pages/email/reports/safelinks-filters/index.js create mode 100644 src/pages/email/resources/management/list-rooms/add.jsx create mode 100644 src/pages/email/resources/management/list-rooms/index.js create mode 100644 src/pages/email/resources/management/room-lists/index.js create mode 100644 src/pages/email/resources/management/room-lists/list/view.jsx create mode 100644 src/pages/email/spamfilter/deploy/index.js create mode 100644 src/pages/email/spamfilter/list-spamfilter/add.jsx create mode 100644 src/pages/email/spamfilter/list-spamfilter/index.js create mode 100644 src/pages/email/spamfilter/list-templates/index.js create mode 100644 src/pages/email/tools/mail-test/index.js create mode 100644 src/pages/email/tools/mailbox-restore-wizard/index.js create mode 100644 src/pages/email/tools/mailbox-restores/add.jsx create mode 100644 src/pages/email/tools/mailbox-restores/index.js create mode 100644 src/pages/email/tools/message-trace/index.js create mode 100644 src/pages/email/tools/message-viewer/index.js create mode 100644 src/pages/email/transport/deploy-rules/index.js create mode 100644 src/pages/email/transport/list-rules/add.jsx create mode 100644 src/pages/email/transport/list-rules/index.js create mode 100644 src/pages/email/transport/list-templates/index.js create mode 100644 src/pages/endpoint/MEM/add-policy-template/index.js create mode 100644 src/pages/endpoint/MEM/add-policy/index.js create mode 100644 src/pages/endpoint/MEM/list-appprotection-policies/index.js create mode 100644 src/pages/endpoint/MEM/list-compliance-policies/index.js create mode 100644 src/pages/endpoint/MEM/list-policies/index.js create mode 100644 src/pages/endpoint/MEM/list-templates/index.js create mode 100644 src/pages/endpoint/applications/list/add.jsx create mode 100644 src/pages/endpoint/applications/list/index.js create mode 100644 src/pages/endpoint/applications/queue/index.js create mode 100644 src/pages/endpoint/autopilot/add-device/index.js create mode 100644 src/pages/endpoint/autopilot/add-profile/index.js create mode 100644 src/pages/endpoint/autopilot/add-status-page/index.js create mode 100644 src/pages/endpoint/autopilot/list-devices/index.js create mode 100644 src/pages/endpoint/autopilot/list-profiles/add.jsx create mode 100644 src/pages/endpoint/autopilot/list-profiles/index.js create mode 100644 src/pages/endpoint/autopilot/list-status-pages/add.jsx create mode 100644 src/pages/endpoint/autopilot/list-status-pages/index.js create mode 100644 src/pages/endpoint/reports/analyticsdevicescore/index.js create mode 100644 src/pages/endpoint/reports/devices/index.js create mode 100644 src/pages/fullPageLoading.js create mode 100644 src/pages/identity/administration/deleted-items/index.js create mode 100644 src/pages/identity/administration/deploy-group-template/index.js create mode 100644 src/pages/identity/administration/devices/index.js create mode 100644 src/pages/identity/administration/group-templates/add.jsx create mode 100644 src/pages/identity/administration/group-templates/deploy.js create mode 100644 src/pages/identity/administration/group-templates/index.js create mode 100644 src/pages/identity/administration/groups/add.jsx create mode 100644 src/pages/identity/administration/groups/edit.jsx create mode 100644 src/pages/identity/administration/groups/index.js create mode 100644 src/pages/identity/administration/index.js create mode 100644 src/pages/identity/administration/jit-admin/add.jsx create mode 100644 src/pages/identity/administration/jit-admin/index.js create mode 100644 src/pages/identity/administration/offboarding-wizard/index.js create mode 100644 src/pages/identity/administration/risky-users/index.js create mode 100644 src/pages/identity/administration/roles/index.js create mode 100644 src/pages/identity/administration/users/add.jsx create mode 100644 src/pages/identity/administration/users/bulk-add.js create mode 100644 src/pages/identity/administration/users/index.js create mode 100644 src/pages/identity/administration/users/invite.jsx create mode 100644 src/pages/identity/administration/users/user/bec.jsx create mode 100644 src/pages/identity/administration/users/user/conditional-access.jsx create mode 100644 src/pages/identity/administration/users/user/devices.jsx create mode 100644 src/pages/identity/administration/users/user/edit.jsx create mode 100644 src/pages/identity/administration/users/user/exchange.jsx create mode 100644 src/pages/identity/administration/users/user/index.jsx create mode 100644 src/pages/identity/administration/users/user/tabOptions.json create mode 100644 src/pages/identity/reports/azure-ad-connect-report/index.js create mode 100644 src/pages/identity/reports/inactive-users-report/index.js create mode 100644 src/pages/identity/reports/index.js create mode 100644 src/pages/identity/reports/mfa-report/index.js create mode 100644 src/pages/identity/reports/risk-detections/index.js create mode 100644 src/pages/identity/reports/signin-report/index.js create mode 100644 src/pages/index.js create mode 100644 src/pages/logout/index.js create mode 100644 src/pages/onboarding.js create mode 100644 src/pages/security/defender/deployment/index.js create mode 100644 src/pages/security/defender/list-defender-tvm/index.js create mode 100644 src/pages/security/defender/list-defender/index.js create mode 100644 src/pages/security/incidents/list-alerts/index.js create mode 100644 src/pages/security/incidents/list-incidents/index.js create mode 100644 src/pages/security/reports/list-device-compliance/index.js create mode 100644 src/pages/teams-share/onedrive/index.js create mode 100644 src/pages/teams-share/sharepoint/add-site.js create mode 100644 src/pages/teams-share/sharepoint/bulk-add-site.js create mode 100644 src/pages/teams-share/sharepoint/index.js create mode 100644 src/pages/teams-share/teams/business-voice/index.js create mode 100644 src/pages/teams-share/teams/list-team/add.jsx create mode 100644 src/pages/teams-share/teams/list-team/index.js create mode 100644 src/pages/teams-share/teams/teams-activity/index.js create mode 100644 src/pages/tenant/administration/add-subscription/index.jsx create mode 100644 src/pages/tenant/administration/alert-configuration/alert.jsx create mode 100644 src/pages/tenant/administration/alert-configuration/index.js create mode 100644 src/pages/tenant/administration/app-consent-requests/index.js create mode 100644 src/pages/tenant/administration/appapproval/index.js create mode 100644 src/pages/tenant/administration/application-consent/index.js create mode 100644 src/pages/tenant/administration/audit-logs/index.js create mode 100644 src/pages/tenant/administration/audit-logs/log.js create mode 100644 src/pages/tenant/administration/authentication-methods/index.js create mode 100644 src/pages/tenant/administration/enterprise-apps/index.js create mode 100644 src/pages/tenant/administration/graph-explorer/index.js create mode 100644 src/pages/tenant/administration/index.js create mode 100644 src/pages/tenant/administration/list-csp-licenses/index.jsx create mode 100644 src/pages/tenant/administration/list-licenses/index.js create mode 100644 src/pages/tenant/administration/partner-relationships/index.js create mode 100644 src/pages/tenant/administration/securescore/index.js create mode 100644 src/pages/tenant/administration/securescore/tabOptions.json create mode 100644 src/pages/tenant/administration/securescore/table.js create mode 100644 src/pages/tenant/administration/tenant-offboarding-wizard/index.js create mode 100644 src/pages/tenant/administration/tenantlookup/index.js create mode 100644 src/pages/tenant/administration/tenants/index.js create mode 100644 src/pages/tenant/backup/backup-wizard/add.jsx create mode 100644 src/pages/tenant/backup/backup-wizard/index.js create mode 100644 src/pages/tenant/backup/backup-wizard/restore.jsx create mode 100644 src/pages/tenant/conditional/deploy-vacation/add.jsx create mode 100644 src/pages/tenant/conditional/deploy-vacation/index.js create mode 100644 src/pages/tenant/conditional/deploy/index.js create mode 100644 src/pages/tenant/conditional/list-named-locations/add.jsx create mode 100644 src/pages/tenant/conditional/list-named-locations/index.js create mode 100644 src/pages/tenant/conditional/list-policies/deploy.js create mode 100644 src/pages/tenant/conditional/list-policies/index.js create mode 100644 src/pages/tenant/conditional/list-template/index.js create mode 100644 src/pages/tenant/gdap-management/index.js create mode 100644 src/pages/tenant/gdap-management/invites/add.js create mode 100644 src/pages/tenant/gdap-management/invites/index.js create mode 100644 src/pages/tenant/gdap-management/offboarding.js create mode 100644 src/pages/tenant/gdap-management/onboarding/index.js create mode 100644 src/pages/tenant/gdap-management/onboarding/start.js create mode 100644 src/pages/tenant/gdap-management/relationships/index.js create mode 100644 src/pages/tenant/gdap-management/relationships/relationship/index.js create mode 100644 src/pages/tenant/gdap-management/relationships/relationship/mappings.js create mode 100644 src/pages/tenant/gdap-management/relationships/relationship/tabOptions.json create mode 100644 src/pages/tenant/gdap-management/role-templates/add.js create mode 100644 src/pages/tenant/gdap-management/role-templates/edit.js create mode 100644 src/pages/tenant/gdap-management/role-templates/index.js create mode 100644 src/pages/tenant/gdap-management/roles/add.js create mode 100644 src/pages/tenant/gdap-management/roles/index.js create mode 100644 src/pages/tenant/gdap-management/tabOptions.json create mode 100644 src/pages/tenant/reports/index.js create mode 100644 src/pages/tenant/standards/bpa-report/builder.js create mode 100644 src/pages/tenant/standards/bpa-report/index.js create mode 100644 src/pages/tenant/standards/bpa-report/view.js create mode 100644 src/pages/tenant/standards/domains-analyser/index.js create mode 100644 src/pages/tenant/standards/index.js create mode 100644 src/pages/tenant/standards/individual-domains/index.js create mode 100644 src/pages/tenant/standards/list-applied-standards/index.js create mode 100644 src/pages/tenant/standards/list-standards/index.js create mode 100644 src/pages/tenant/standards/template.jsx create mode 100644 src/pages/tenant/tools/bpa-report-builder/index.js create mode 100644 src/pages/tenant/tools/geoiplookup/index.js create mode 100644 src/pages/tenant/tools/tenantlookup/index.js create mode 100644 src/pages/tools/breachlookup/index.js create mode 100644 src/pages/tools/templatelib/index.jsx create mode 100644 src/pages/tools/tenantbreachlookup/index.js create mode 100644 src/pages/unauthenticated.js create mode 100644 src/paths.js delete mode 100644 src/routes.json delete mode 100644 src/scss/_custom.scss delete mode 100644 src/scss/_example.scss delete mode 100644 src/scss/_layout.scss delete mode 100644 src/scss/_tenantselector.scss delete mode 100644 src/scss/_themes.scss delete mode 100644 src/scss/_variables.scss delete mode 100644 src/scss/style.scss create mode 100644 src/sections/dashboard/account/account-2fa.js create mode 100644 src/sections/dashboard/account/account-details.js create mode 100644 src/sections/dashboard/account/account-password.js create mode 100644 src/sections/dashboard/calendar/calendar-container.js create mode 100644 src/sections/dashboard/calendar/calendar-event-dialog.js create mode 100644 src/sections/dashboard/calendar/calendar-toolbar.js create mode 100644 src/sections/dashboard/components/card-headings/card-heading-1.js create mode 100644 src/sections/dashboard/components/card-headings/card-heading-2.js create mode 100644 src/sections/dashboard/components/card-headings/card-heading-3.js create mode 100644 src/sections/dashboard/components/data-states/data-state-1.js create mode 100644 src/sections/dashboard/components/data-states/data-state-2.js create mode 100644 src/sections/dashboard/components/data-states/data-state-3.js create mode 100644 src/sections/dashboard/components/images-uploader.js create mode 100644 src/sections/dashboard/components/lists/list-1.js create mode 100644 src/sections/dashboard/components/lists/list-2.js create mode 100644 src/sections/dashboard/components/lists/list-3.js create mode 100644 src/sections/dashboard/components/lists/list-4.js create mode 100644 src/sections/dashboard/components/lists/list-5.js create mode 100644 src/sections/dashboard/components/onboarding/wizard.js create mode 100644 src/sections/dashboard/components/page-headings/page-heading-1.js create mode 100644 src/sections/dashboard/components/page-headings/page-heading-2.js create mode 100644 src/sections/dashboard/components/page-headings/page-heading-3.js create mode 100644 src/sections/dashboard/components/stats/stats-1.js create mode 100644 src/sections/dashboard/components/stats/stats-2.js create mode 100644 src/sections/dashboard/customers/customer-details.js create mode 100644 src/sections/dashboard/customers/customer-dialog.js create mode 100644 src/sections/dashboard/customers/customer-latest-orders.js create mode 100644 src/sections/dashboard/customers/customer-log.js create mode 100644 src/sections/dashboard/customers/customer-note-add.js create mode 100644 src/sections/dashboard/customers/customer-note-card.js create mode 100644 src/sections/dashboard/customers/customer-notes.js create mode 100644 src/sections/dashboard/customers/customer-order-menu.js create mode 100644 src/sections/dashboard/customers/customer-orders-table.js create mode 100644 src/sections/dashboard/customers/customer-properties.js create mode 100644 src/sections/dashboard/customers/customers-search.js create mode 100644 src/sections/dashboard/customers/customers-table-menu.js create mode 100644 src/sections/dashboard/customers/customers-table.js create mode 100644 src/sections/dashboard/foundation/inputs/input-1.js create mode 100644 src/sections/dashboard/foundation/inputs/input-2.js create mode 100644 src/sections/dashboard/foundation/inputs/input-3.js create mode 100644 src/sections/dashboard/foundation/inputs/input-4.js create mode 100644 src/sections/dashboard/foundation/inputs/input-5.js create mode 100644 src/sections/dashboard/foundation/tables/table-1.js create mode 100644 src/sections/dashboard/invoices/invoice-details.js create mode 100644 src/sections/dashboard/invoices/invoice-line-items.js create mode 100644 src/sections/dashboard/invoices/invoice-payment-history.js create mode 100644 src/sections/dashboard/invoices/invoice-payment.js create mode 100644 src/sections/dashboard/invoices/invoice-pdf-document.js create mode 100644 src/sections/dashboard/invoices/invoice-pdf-preview.js create mode 100644 src/sections/dashboard/invoices/invoice-quick-actions.js create mode 100644 src/sections/dashboard/invoices/invoices-search.js create mode 100644 src/sections/dashboard/invoices/invoices-stats.js create mode 100644 src/sections/dashboard/invoices/invoices-table-menu.js create mode 100644 src/sections/dashboard/invoices/invoices-table.js create mode 100644 src/sections/dashboard/orders/order-create-dialog.js create mode 100644 src/sections/dashboard/orders/order-details-dialog.js create mode 100644 src/sections/dashboard/orders/order-details.js create mode 100644 src/sections/dashboard/orders/order-line-items.js create mode 100644 src/sections/dashboard/orders/order-payment-dialog.js create mode 100644 src/sections/dashboard/orders/order-payment.js create mode 100644 src/sections/dashboard/orders/order-quick-actions.js create mode 100644 src/sections/dashboard/orders/orders-dnd-draggable.js create mode 100644 src/sections/dashboard/orders/orders-dnd-droppable.js create mode 100644 src/sections/dashboard/orders/orders-dnd.js create mode 100644 src/sections/dashboard/orders/orders-search.js create mode 100644 src/sections/dashboard/orders/orders-table-menu.js create mode 100644 src/sections/dashboard/orders/orders-table.js create mode 100644 src/sections/dashboard/organization/organization-billing-details.js create mode 100644 src/sections/dashboard/organization/organization-billing-plan.js create mode 100644 src/sections/dashboard/organization/organization-invite-dialog.js create mode 100644 src/sections/dashboard/overview/overview-account-setup.js create mode 100644 src/sections/dashboard/overview/overview-bills.js create mode 100644 src/sections/dashboard/overview/overview-latest-customers.js create mode 100644 src/sections/dashboard/overview/overview-notifications.js create mode 100644 src/sections/dashboard/overview/overview-orders-summary.js create mode 100644 src/sections/dashboard/overview/overview-summary.js create mode 100644 src/sections/dashboard/products/product-Insights-reviews.js create mode 100644 src/sections/dashboard/products/product-Insights-sales.js create mode 100644 src/sections/dashboard/products/product-create-dialog.js create mode 100644 src/sections/dashboard/products/product-details-dialog.js create mode 100644 src/sections/dashboard/products/product-details.js create mode 100644 src/sections/dashboard/products/product-insights-channel.js create mode 100644 src/sections/dashboard/products/product-insights-rate.js create mode 100644 src/sections/dashboard/products/product-quick-actions.js create mode 100644 src/sections/dashboard/products/product-variant-dialog.js create mode 100644 src/sections/dashboard/products/product-variants-table.js create mode 100644 src/sections/dashboard/products/product-variants.js create mode 100644 src/sections/dashboard/products/products-search.js create mode 100644 src/sections/dashboard/products/products-stats.js create mode 100644 src/sections/dashboard/products/products-table-menu.js create mode 100644 src/sections/dashboard/products/products-table.js create mode 100644 src/sections/dashboard/sales/sales-breakdown.js create mode 100644 src/sections/dashboard/sales/sales-kpi.js delete mode 100644 src/setupTests.js delete mode 100644 src/store/ApiClient.js delete mode 100644 src/store/actions/index.js delete mode 100644 src/store/actions/resetAuth.js delete mode 100644 src/store/actions/resetState.js delete mode 100644 src/store/api/adconnect.js delete mode 100644 src/store/api/app.js delete mode 100644 src/store/api/auth.js delete mode 100644 src/store/api/baseApi.js delete mode 100644 src/store/api/baseQuery.js delete mode 100644 src/store/api/datatable.js delete mode 100644 src/store/api/devices.js delete mode 100644 src/store/api/domains.js delete mode 100644 src/store/api/groups.js delete mode 100644 src/store/api/licenses.js delete mode 100644 src/store/api/mailbox.js delete mode 100644 src/store/api/oneDrive.js delete mode 100644 src/store/api/reports.js delete mode 100644 src/store/api/security.js delete mode 100644 src/store/api/sharepoint.js delete mode 100644 src/store/api/tenants.js delete mode 100644 src/store/api/users.js delete mode 100644 src/store/features/app.js delete mode 100644 src/store/features/auth.js delete mode 100644 src/store/features/switcher.js delete mode 100644 src/store/middleware/errorMiddleware.js delete mode 100644 src/store/middleware/unauthenticatedMiddleware.js create mode 100644 src/store/root-reducer.js delete mode 100644 src/store/root.js delete mode 100644 src/store/store.js rename src/store/{features => }/toasts.js (56%) create mode 100644 src/theme/base/create-components.js create mode 100644 src/theme/base/create-options.js create mode 100644 src/theme/base/create-typography.js create mode 100644 src/theme/colors.js create mode 100644 src/theme/dark/create-components.js create mode 100644 src/theme/dark/create-options.js create mode 100644 src/theme/dark/create-palette.js create mode 100644 src/theme/dark/create-shadows.js create mode 100644 src/theme/index.js create mode 100644 src/theme/light/create-components.js create mode 100644 src/theme/light/create-options.js create mode 100644 src/theme/light/create-palette.js create mode 100644 src/theme/light/create-shadows.js create mode 100644 src/theme/utils.js create mode 100644 src/utils/apply-filters.js create mode 100644 src/utils/apply-pagination.js create mode 100644 src/utils/apply-sort.js create mode 100644 src/utils/code-style.js create mode 100644 src/utils/create-emotion-cache.js create mode 100644 src/utils/create-resource-id.js create mode 100644 src/utils/deep-copy.js create mode 100644 src/utils/docs.js create mode 100644 src/utils/filter-operators.js create mode 100644 src/utils/get-cipp-error.js create mode 100644 src/utils/get-cipp-filter-variant.js create mode 100644 src/utils/get-cipp-formatting.js create mode 100644 src/utils/get-cipp-license-translation.js create mode 100644 src/utils/get-cipp-role-translation.js create mode 100644 src/utils/get-cipp-translation.js create mode 100644 src/utils/get-cipp-validator.js create mode 100644 src/utils/get-initials.js create mode 100644 src/utils/jwt.js create mode 100644 src/utils/noop.js create mode 100644 src/utils/obj-from-array.js create mode 100644 src/utils/wait.js delete mode 100644 src/validators.js delete mode 100644 src/views/cipp/AppApproval.jsx delete mode 100644 src/views/cipp/ExtensionMappings.jsx delete mode 100644 src/views/cipp/ExtensionSync.jsx delete mode 100644 src/views/cipp/Extensions.jsx delete mode 100644 src/views/cipp/Logs.jsx delete mode 100644 src/views/cipp/Scheduler.jsx delete mode 100644 src/views/cipp/Setup.jsx delete mode 100644 src/views/cipp/Statistics.jsx delete mode 100644 src/views/cipp/TemplateLibrary.jsx delete mode 100644 src/views/cipp/UserSettings.jsx delete mode 100644 src/views/cipp/app-settings/CIPPSettings.jsx delete mode 100644 src/views/cipp/app-settings/SettingsBackend.jsx delete mode 100644 src/views/cipp/app-settings/SettingsExtensionMappings.jsx delete mode 100644 src/views/cipp/app-settings/SettingsExtensions.jsx delete mode 100644 src/views/cipp/app-settings/SettingsGeneral.jsx delete mode 100644 src/views/cipp/app-settings/SettingsLicenses.jsx delete mode 100644 src/views/cipp/app-settings/SettingsMaintenance.jsx delete mode 100644 src/views/cipp/app-settings/SettingsNotifications.jsx delete mode 100644 src/views/cipp/app-settings/SettingsPartner.jsx delete mode 100644 src/views/cipp/app-settings/SettingsSuperAdmin.jsx delete mode 100644 src/views/cipp/app-settings/SettingsTenants.jsx delete mode 100644 src/views/cipp/app-settings/SettingsWebhookSubscriptions.jsx delete mode 100644 src/views/cipp/app-settings/components/SettingsAppPermissions.jsx delete mode 100644 src/views/cipp/app-settings/components/SettingsCustomRoles.jsx delete mode 100644 src/views/cipp/app-settings/components/SettingsDNSResolver.jsx delete mode 100644 src/views/cipp/app-settings/components/SettingsGeneralRow.jsx delete mode 100644 src/views/cipp/app-settings/components/SettingsPassword.jsx delete mode 100644 src/views/cipp/app-settings/components/SettingsSAMRoles.jsx delete mode 100644 src/views/email-exchange/administration/AddContact.jsx delete mode 100644 src/views/email-exchange/administration/AddSharedMailbox.jsx delete mode 100644 src/views/email-exchange/administration/AddTenantAllowBlockList.jsx delete mode 100644 src/views/email-exchange/administration/ContactsList.jsx delete mode 100644 src/views/email-exchange/administration/DeletedMailboxes.jsx delete mode 100644 src/views/email-exchange/administration/EditCalendarPermissions.jsx delete mode 100644 src/views/email-exchange/administration/EditContact.jsx delete mode 100644 src/views/email-exchange/administration/EditMailboxPermissions.jsx delete mode 100644 src/views/email-exchange/administration/ListTenantAllowBlockList.jsx delete mode 100644 src/views/email-exchange/administration/MailboxRuleList.jsx delete mode 100644 src/views/email-exchange/administration/MailboxesList.jsx delete mode 100644 src/views/email-exchange/administration/QuarantineList.jsx delete mode 100644 src/views/email-exchange/administration/ViewMobileDevices.jsx delete mode 100644 src/views/email-exchange/connectors/AddConnectorTemplate.jsx delete mode 100644 src/views/email-exchange/connectors/ConnectorList.jsx delete mode 100644 src/views/email-exchange/connectors/DeployConnector.jsx delete mode 100644 src/views/email-exchange/connectors/ListConnectorTemplates.jsx delete mode 100644 src/views/email-exchange/reports/AntiPhishingFilters.jsx delete mode 100644 src/views/email-exchange/reports/MailboxClientAccessSettingsList.jsx delete mode 100644 src/views/email-exchange/reports/MailboxStatisticsList.jsx delete mode 100644 src/views/email-exchange/reports/MalwareFilters.jsx delete mode 100644 src/views/email-exchange/reports/MessageTrace.jsx delete mode 100644 src/views/email-exchange/reports/SafeAttachmentsFilters.jsx delete mode 100644 src/views/email-exchange/reports/SafeLinksFilters.jsx delete mode 100644 src/views/email-exchange/reports/SharedMailboxEnabledAccount.jsx delete mode 100644 src/views/email-exchange/rooms/AddRoomMailbox.jsx delete mode 100644 src/views/email-exchange/rooms/ListRoomLists.jsx delete mode 100644 src/views/email-exchange/rooms/ListRooms.jsx delete mode 100644 src/views/email-exchange/spamfilter/AddSpamfilterTemplate.jsx delete mode 100644 src/views/email-exchange/spamfilter/DeploySpamfilter.jsx delete mode 100644 src/views/email-exchange/spamfilter/ListSpamfilterTemplates.jsx delete mode 100644 src/views/email-exchange/spamfilter/Spamfilter.jsx delete mode 100644 src/views/email-exchange/tools/MailTest.jsx delete mode 100644 src/views/email-exchange/tools/MailboxRestoreWizard.jsx delete mode 100644 src/views/email-exchange/tools/MailboxRestores.jsx delete mode 100644 src/views/email-exchange/tools/MessageViewer.jsx delete mode 100644 src/views/email-exchange/transport/AddTransportTemplate.jsx delete mode 100644 src/views/email-exchange/transport/DeployTransport.jsx delete mode 100644 src/views/email-exchange/transport/ListTransportTemplates.jsx delete mode 100644 src/views/email-exchange/transport/TransportRules.jsx delete mode 100644 src/views/endpoint/applications/ApplicationsAddChocoApp.jsx delete mode 100644 src/views/endpoint/applications/ApplicationsAddOffice.jsx delete mode 100644 src/views/endpoint/applications/ApplicationsAddRMM.jsx delete mode 100644 src/views/endpoint/applications/ApplicationsAddWinGet.jsx delete mode 100644 src/views/endpoint/applications/ApplicationsList.jsx delete mode 100644 src/views/endpoint/applications/ListApplicationQueue.jsx delete mode 100644 src/views/endpoint/autopilot/AutopilotAddDevice.jsx delete mode 100644 src/views/endpoint/autopilot/AutopilotAddProfile.jsx delete mode 100644 src/views/endpoint/autopilot/AutopilotAddStatusPage.jsx delete mode 100644 src/views/endpoint/autopilot/AutopilotListDevices.jsx delete mode 100644 src/views/endpoint/autopilot/AutopilotListProfiles.jsx delete mode 100644 src/views/endpoint/autopilot/AutopilotListStatusPages.jsx delete mode 100644 src/views/endpoint/intune/Devices.jsx delete mode 100644 src/views/endpoint/intune/MEMAddPolicy.jsx delete mode 100644 src/views/endpoint/intune/MEMAddPolicyTemplate.jsx delete mode 100644 src/views/endpoint/intune/MEMCAPolicies.jsx delete mode 100644 src/views/endpoint/intune/MEMEditPolicy.jsx delete mode 100644 src/views/endpoint/intune/MEMListAppProtection.jsx delete mode 100644 src/views/endpoint/intune/MEMListCompliance.jsx delete mode 100644 src/views/endpoint/intune/MEMListPolicies.jsx delete mode 100644 src/views/endpoint/intune/MEMListPolicyTemplates.jsx delete mode 100644 src/views/home/Home.jsx delete mode 100644 src/views/identity/administration/AddGroup.jsx delete mode 100644 src/views/identity/administration/AddGroupTemplate.jsx delete mode 100644 src/views/identity/administration/AddUser.jsx delete mode 100644 src/views/identity/administration/AddUserBulk.jsx delete mode 100644 src/views/identity/administration/Deleted.jsx delete mode 100644 src/views/identity/administration/DeployGroupTemplate.jsx delete mode 100644 src/views/identity/administration/DeployJITAdmin.jsx delete mode 100644 src/views/identity/administration/Devices.jsx delete mode 100644 src/views/identity/administration/EditGroup.jsx delete mode 100644 src/views/identity/administration/EditUser.jsx delete mode 100644 src/views/identity/administration/GroupTemplates.jsx delete mode 100644 src/views/identity/administration/Groups.jsx delete mode 100644 src/views/identity/administration/InviteGuest.jsx delete mode 100644 src/views/identity/administration/OffboardingWizard.jsx delete mode 100644 src/views/identity/administration/RiskyUsers.jsx delete mode 100644 src/views/identity/administration/Roles.jsx delete mode 100644 src/views/identity/administration/User365Management.jsx delete mode 100644 src/views/identity/administration/UserActions.jsx delete mode 100644 src/views/identity/administration/UserCAPs.jsx delete mode 100644 src/views/identity/administration/UserDetails.jsx delete mode 100644 src/views/identity/administration/UserDevices.jsx delete mode 100644 src/views/identity/administration/UserEmailDetails.jsx delete mode 100644 src/views/identity/administration/UserEmailPermissions.jsx delete mode 100644 src/views/identity/administration/UserEmailSettings.jsx delete mode 100644 src/views/identity/administration/UserEmailUsage.jsx delete mode 100644 src/views/identity/administration/UserGroups.jsx delete mode 100644 src/views/identity/administration/UserLastLoginDetails.jsx delete mode 100644 src/views/identity/administration/UserMailboxRuleList.jsx delete mode 100644 src/views/identity/administration/UserOneDriveUsage.jsx delete mode 100644 src/views/identity/administration/UserSigninLogs.jsx delete mode 100644 src/views/identity/administration/Users.jsx delete mode 100644 src/views/identity/administration/ViewBEC.jsx delete mode 100644 src/views/identity/administration/ViewGroup.jsx delete mode 100644 src/views/identity/administration/ViewUser.jsx delete mode 100644 src/views/identity/reports/AzureADConnectReport.jsx delete mode 100644 src/views/identity/reports/InactiveUsers.jsx delete mode 100644 src/views/identity/reports/MFAReport.jsx delete mode 100644 src/views/identity/reports/RiskDetections.jsx delete mode 100644 src/views/identity/reports/SignIns.jsx delete mode 100644 src/views/pages/LogoutRedirect/PageLogOut.jsx delete mode 100644 src/views/pages/license/License.jsx delete mode 100644 src/views/pages/login/Login.jsx delete mode 100644 src/views/pages/login/Logout.jsx delete mode 100644 src/views/pages/page401/Page401.jsx delete mode 100644 src/views/pages/page403/Page403.jsx delete mode 100644 src/views/pages/page404/Page404.jsx delete mode 100644 src/views/pages/page500/Page500.jsx delete mode 100644 src/views/security/defender/DeployDefender.jsx delete mode 100644 src/views/security/defender/ListDefender.jsx delete mode 100644 src/views/security/defender/ListVuln.jsx delete mode 100644 src/views/security/incidents/ListAlerts.jsx delete mode 100644 src/views/security/incidents/ListIncidents.jsx delete mode 100644 src/views/security/reports/ListDeviceComplianceReport.jsx delete mode 100644 src/views/teams-share/onedrive/OneDriveList.jsx delete mode 100644 src/views/teams-share/sharepoint/AddSite.jsx delete mode 100644 src/views/teams-share/sharepoint/AddSiteBulk.jsx delete mode 100644 src/views/teams-share/sharepoint/SharepointList.jsx delete mode 100644 src/views/teams-share/teams/BusinessVoice.jsx delete mode 100644 src/views/teams-share/teams/TeamApplications.jsx delete mode 100644 src/views/teams-share/teams/TeamChannels.jsx delete mode 100644 src/views/teams-share/teams/TeamDetails.jsx delete mode 100644 src/views/teams-share/teams/TeamGuestPolicies.jsx delete mode 100644 src/views/teams-share/teams/TeamMemberPolicies.jsx delete mode 100644 src/views/teams-share/teams/TeamMembers.jsx delete mode 100644 src/views/teams-share/teams/TeamMessagingSettings.jsx delete mode 100644 src/views/teams-share/teams/TeamOwners.jsx delete mode 100644 src/views/teams-share/teams/TeamsActivity.jsx delete mode 100644 src/views/teams-share/teams/TeamsAddTeam.jsx delete mode 100644 src/views/teams-share/teams/TeamsListTeam.jsx delete mode 100644 src/views/teams-share/teams/ViewTeamSettings.jsx delete mode 100644 src/views/tenant/administration/AlertRules.jsx delete mode 100644 src/views/tenant/administration/AlertWizard.jsx delete mode 100644 src/views/tenant/administration/AuthMethods.jsx delete mode 100644 src/views/tenant/administration/Domains.jsx delete mode 100644 src/views/tenant/administration/EditTenant.jsx delete mode 100644 src/views/tenant/administration/GDAPInviteWizard.jsx delete mode 100644 src/views/tenant/administration/GDAPRoleWizard.jsx delete mode 100644 src/views/tenant/administration/GDAPWizard.jsx delete mode 100644 src/views/tenant/administration/GeoIPLookup.jsx delete mode 100644 src/views/tenant/administration/GraphExplorer.jsx delete mode 100644 src/views/tenant/administration/ListAlertsQueue.jsx delete mode 100644 src/views/tenant/administration/ListAppConsentRequests.jsx delete mode 100644 src/views/tenant/administration/ListAuditLogs.jsx delete mode 100644 src/views/tenant/administration/ListEnterpriseApps.jsx delete mode 100644 src/views/tenant/administration/ListGDAPInvites.jsx delete mode 100644 src/views/tenant/administration/ListGDAPQueue.jsx delete mode 100644 src/views/tenant/administration/ListGDAPRelationships.jsx delete mode 100644 src/views/tenant/administration/ListGDAPRoles.jsx delete mode 100644 src/views/tenant/administration/ListLicences.jsx delete mode 100644 src/views/tenant/administration/ListOauthApps.jsx delete mode 100644 src/views/tenant/administration/PartnerRelationships.jsx delete mode 100644 src/views/tenant/administration/SecureScore.jsx delete mode 100644 src/views/tenant/administration/ServiceHealth.jsx delete mode 100644 src/views/tenant/administration/TenantLookup.jsx delete mode 100644 src/views/tenant/administration/TenantOffboardingWizard.jsx delete mode 100644 src/views/tenant/administration/TenantOnboarding.jsx delete mode 100644 src/views/tenant/administration/TenantOnboardingWizard.jsx delete mode 100644 src/views/tenant/administration/Tenants.jsx delete mode 100644 src/views/tenant/administration/onboarding/RelationshipOnboarding.jsx delete mode 100644 src/views/tenant/backup/CreateBackup.jsx delete mode 100644 src/views/tenant/backup/RestoreBackup.jsx delete mode 100644 src/views/tenant/conditional/AddCATemplate.jsx delete mode 100644 src/views/tenant/conditional/ConditionalAccess.jsx delete mode 100644 src/views/tenant/conditional/DeployCA.jsx delete mode 100644 src/views/tenant/conditional/DeployNamedLocation.jsx delete mode 100644 src/views/tenant/conditional/DeployVacation.jsx delete mode 100644 src/views/tenant/conditional/ListCATemplates.jsx delete mode 100644 src/views/tenant/conditional/NamedLocations.jsx delete mode 100644 src/views/tenant/conditional/TestCAPolicy.jsx delete mode 100644 src/views/tenant/standards/BPAReportBuilder.jsx delete mode 100644 src/views/tenant/standards/BestPracticeAnalyser.jsx delete mode 100644 src/views/tenant/standards/DomainsAnalyser.jsx delete mode 100644 src/views/tenant/standards/IndividualDomain.jsx delete mode 100644 src/views/tenant/standards/ListAppliedStandards.jsx delete mode 100644 src/views/tenant/standards/ListStandards.jsx delete mode 100644 vite.config.js create mode 100644 yarn.lock diff --git a/.browserslistrc b/.browserslistrc deleted file mode 100644 index c71c8b9c717b..000000000000 --- a/.browserslistrc +++ /dev/null @@ -1,11 +0,0 @@ -# https://github.com/browserslist/browserslist#readme - ->= 0.5% -last 2 major versions -not dead -Chrome >= 60 -Firefox >= 60 -Firefox ESR -iOS >= 12 -Safari >= 12 -not Explorer <= 11 diff --git a/.cspell.json b/.cspell.json deleted file mode 100644 index 22ca567e94da..000000000000 --- a/.cspell.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": "0.1", - "language": "en", - "ignorePaths": [ - "**/node_modules/**", - "**/vscode-extension/**", - "**/.git/**", - ".vscode", - "megalinter", - "package-lock.json", - "report" - ], - "words": [] -} diff --git a/.editorconfig b/.editorconfig index 54e4850b2e88..91fa6689f0b5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,14 +1,694 @@ -# Editor configuration, see http://editorconfig.org -root = true - [*] charset = utf-8 end_of_line = lf indent_size = 2 indent_style = space -insert_final_newline = true -trim_trailing_whitespace = true +insert_final_newline = false +max_line_length = 100 +tab_width = 2 +ij_continuation_indent_size = 2 +ij_formatter_off_tag = @formatter:off +ij_formatter_on_tag = @formatter:on +ij_formatter_tags_enabled = true +ij_smart_tabs = false +ij_visual_guides = 100 +ij_wrap_on_typing = false + +[*.css] +ij_continuation_indent_size = 2 +ij_visual_guides = none +ij_css_align_closing_brace_with_properties = false +ij_css_blank_lines_around_nested_selector = 1 +ij_css_blank_lines_between_blocks = 1 +ij_css_brace_placement = end_of_line +ij_css_enforce_quotes_on_format = false +ij_css_hex_color_long_format = false +ij_css_hex_color_lower_case = false +ij_css_hex_color_short_format = false +ij_css_hex_color_upper_case = false +ij_css_keep_blank_lines_in_code = 2 +ij_css_keep_indents_on_empty_lines = false +ij_css_keep_single_line_blocks = false +ij_css_properties_order = font,font-family,font-size,font-weight,font-style,font-variant,font-size-adjust,font-stretch,line-height,position,z-index,top,right,bottom,left,display,visibility,float,clear,overflow,overflow-x,overflow-y,clip,zoom,align-content,align-items,align-self,flex,flex-flow,flex-basis,flex-direction,flex-grow,flex-shrink,flex-wrap,justify-content,order,box-sizing,width,min-width,max-width,height,min-height,max-height,margin,margin-top,margin-right,margin-bottom,margin-left,padding,padding-top,padding-right,padding-bottom,padding-left,table-layout,empty-cells,caption-side,border-spacing,border-collapse,list-style,list-style-position,list-style-type,list-style-image,content,quotes,counter-reset,counter-increment,resize,cursor,user-select,nav-index,nav-up,nav-right,nav-down,nav-left,transition,transition-delay,transition-timing-function,transition-duration,transition-property,transform,transform-origin,animation,animation-name,animation-duration,animation-play-state,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,text-align,text-align-last,vertical-align,white-space,text-decoration,text-emphasis,text-emphasis-color,text-emphasis-style,text-emphasis-position,text-indent,text-justify,letter-spacing,word-spacing,text-outline,text-transform,text-wrap,text-overflow,text-overflow-ellipsis,text-overflow-mode,word-wrap,word-break,tab-size,hyphens,pointer-events,opacity,color,border,border-width,border-style,border-color,border-top,border-top-width,border-top-style,border-top-color,border-right,border-right-width,border-right-style,border-right-color,border-bottom,border-bottom-width,border-bottom-style,border-bottom-color,border-left,border-left-width,border-left-style,border-left-color,border-radius,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,border-image,border-image-source,border-image-slice,border-image-width,border-image-outset,border-image-repeat,outline,outline-width,outline-style,outline-color,outline-offset,background,background-color,background-image,background-repeat,background-attachment,background-position,background-position-x,background-position-y,background-clip,background-origin,background-size,box-decoration-break,box-shadow,text-shadow +ij_css_space_after_colon = true +ij_css_space_before_opening_brace = true +ij_css_use_double_quotes = true +ij_css_value_alignment = do_not_align + +[*.ejs] +ij_visual_guides = none + +[*.feature] +tab_width = 4 +ij_visual_guides = none +ij_gherkin_keep_indents_on_empty_lines = false + +[*.haml] +tab_width = 4 +ij_visual_guides = none +ij_haml_keep_indents_on_empty_lines = false + +[*.less] +tab_width = 4 +ij_visual_guides = none +ij_less_align_closing_brace_with_properties = false +ij_less_blank_lines_around_nested_selector = 1 +ij_less_blank_lines_between_blocks = 1 +ij_less_brace_placement = 0 +ij_less_enforce_quotes_on_format = false +ij_less_hex_color_long_format = false +ij_less_hex_color_lower_case = false +ij_less_hex_color_short_format = false +ij_less_hex_color_upper_case = false +ij_less_keep_blank_lines_in_code = 2 +ij_less_keep_indents_on_empty_lines = false +ij_less_keep_single_line_blocks = false +ij_less_properties_order = font,font-family,font-size,font-weight,font-style,font-variant,font-size-adjust,font-stretch,line-height,position,z-index,top,right,bottom,left,display,visibility,float,clear,overflow,overflow-x,overflow-y,clip,zoom,align-content,align-items,align-self,flex,flex-flow,flex-basis,flex-direction,flex-grow,flex-shrink,flex-wrap,justify-content,order,box-sizing,width,min-width,max-width,height,min-height,max-height,margin,margin-top,margin-right,margin-bottom,margin-left,padding,padding-top,padding-right,padding-bottom,padding-left,table-layout,empty-cells,caption-side,border-spacing,border-collapse,list-style,list-style-position,list-style-type,list-style-image,content,quotes,counter-reset,counter-increment,resize,cursor,user-select,nav-index,nav-up,nav-right,nav-down,nav-left,transition,transition-delay,transition-timing-function,transition-duration,transition-property,transform,transform-origin,animation,animation-name,animation-duration,animation-play-state,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,text-align,text-align-last,vertical-align,white-space,text-decoration,text-emphasis,text-emphasis-color,text-emphasis-style,text-emphasis-position,text-indent,text-justify,letter-spacing,word-spacing,text-outline,text-transform,text-wrap,text-overflow,text-overflow-ellipsis,text-overflow-mode,word-wrap,word-break,tab-size,hyphens,pointer-events,opacity,color,border,border-width,border-style,border-color,border-top,border-top-width,border-top-style,border-top-color,border-right,border-right-width,border-right-style,border-right-color,border-bottom,border-bottom-width,border-bottom-style,border-bottom-color,border-left,border-left-width,border-left-style,border-left-color,border-radius,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,border-image,border-image-source,border-image-slice,border-image-width,border-image-outset,border-image-repeat,outline,outline-width,outline-style,outline-color,outline-offset,background,background-color,background-image,background-repeat,background-attachment,background-position,background-position-x,background-position-y,background-clip,background-origin,background-size,box-decoration-break,box-shadow,text-shadow +ij_less_space_after_colon = true +ij_less_space_before_opening_brace = true +ij_less_use_double_quotes = true +ij_less_value_alignment = 0 + +[*.sass] +tab_width = 4 +ij_visual_guides = none +ij_sass_align_closing_brace_with_properties = false +ij_sass_blank_lines_around_nested_selector = 1 +ij_sass_blank_lines_between_blocks = 1 +ij_sass_brace_placement = 0 +ij_sass_enforce_quotes_on_format = false +ij_sass_hex_color_long_format = false +ij_sass_hex_color_lower_case = false +ij_sass_hex_color_short_format = false +ij_sass_hex_color_upper_case = false +ij_sass_keep_blank_lines_in_code = 2 +ij_sass_keep_indents_on_empty_lines = false +ij_sass_keep_single_line_blocks = false +ij_sass_properties_order = font,font-family,font-size,font-weight,font-style,font-variant,font-size-adjust,font-stretch,line-height,position,z-index,top,right,bottom,left,display,visibility,float,clear,overflow,overflow-x,overflow-y,clip,zoom,align-content,align-items,align-self,flex,flex-flow,flex-basis,flex-direction,flex-grow,flex-shrink,flex-wrap,justify-content,order,box-sizing,width,min-width,max-width,height,min-height,max-height,margin,margin-top,margin-right,margin-bottom,margin-left,padding,padding-top,padding-right,padding-bottom,padding-left,table-layout,empty-cells,caption-side,border-spacing,border-collapse,list-style,list-style-position,list-style-type,list-style-image,content,quotes,counter-reset,counter-increment,resize,cursor,user-select,nav-index,nav-up,nav-right,nav-down,nav-left,transition,transition-delay,transition-timing-function,transition-duration,transition-property,transform,transform-origin,animation,animation-name,animation-duration,animation-play-state,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,text-align,text-align-last,vertical-align,white-space,text-decoration,text-emphasis,text-emphasis-color,text-emphasis-style,text-emphasis-position,text-indent,text-justify,letter-spacing,word-spacing,text-outline,text-transform,text-wrap,text-overflow,text-overflow-ellipsis,text-overflow-mode,word-wrap,word-break,tab-size,hyphens,pointer-events,opacity,color,border,border-width,border-style,border-color,border-top,border-top-width,border-top-style,border-top-color,border-right,border-right-width,border-right-style,border-right-color,border-bottom,border-bottom-width,border-bottom-style,border-bottom-color,border-left,border-left-width,border-left-style,border-left-color,border-radius,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,border-image,border-image-source,border-image-slice,border-image-width,border-image-outset,border-image-repeat,outline,outline-width,outline-style,outline-color,outline-offset,background,background-color,background-image,background-repeat,background-attachment,background-position,background-position-x,background-position-y,background-clip,background-origin,background-size,box-decoration-break,box-shadow,text-shadow +ij_sass_space_after_colon = true +ij_sass_space_before_opening_brace = true +ij_sass_use_double_quotes = true +ij_sass_value_alignment = 0 + +[*.scss] +tab_width = 4 +ij_visual_guides = none +ij_scss_align_closing_brace_with_properties = false +ij_scss_blank_lines_around_nested_selector = 1 +ij_scss_blank_lines_between_blocks = 1 +ij_scss_brace_placement = 0 +ij_scss_enforce_quotes_on_format = false +ij_scss_hex_color_long_format = false +ij_scss_hex_color_lower_case = false +ij_scss_hex_color_short_format = false +ij_scss_hex_color_upper_case = false +ij_scss_keep_blank_lines_in_code = 2 +ij_scss_keep_indents_on_empty_lines = false +ij_scss_keep_single_line_blocks = false +ij_scss_properties_order = font,font-family,font-size,font-weight,font-style,font-variant,font-size-adjust,font-stretch,line-height,position,z-index,top,right,bottom,left,display,visibility,float,clear,overflow,overflow-x,overflow-y,clip,zoom,align-content,align-items,align-self,flex,flex-flow,flex-basis,flex-direction,flex-grow,flex-shrink,flex-wrap,justify-content,order,box-sizing,width,min-width,max-width,height,min-height,max-height,margin,margin-top,margin-right,margin-bottom,margin-left,padding,padding-top,padding-right,padding-bottom,padding-left,table-layout,empty-cells,caption-side,border-spacing,border-collapse,list-style,list-style-position,list-style-type,list-style-image,content,quotes,counter-reset,counter-increment,resize,cursor,user-select,nav-index,nav-up,nav-right,nav-down,nav-left,transition,transition-delay,transition-timing-function,transition-duration,transition-property,transform,transform-origin,animation,animation-name,animation-duration,animation-play-state,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,text-align,text-align-last,vertical-align,white-space,text-decoration,text-emphasis,text-emphasis-color,text-emphasis-style,text-emphasis-position,text-indent,text-justify,letter-spacing,word-spacing,text-outline,text-transform,text-wrap,text-overflow,text-overflow-ellipsis,text-overflow-mode,word-wrap,word-break,tab-size,hyphens,pointer-events,opacity,color,border,border-width,border-style,border-color,border-top,border-top-width,border-top-style,border-top-color,border-right,border-right-width,border-right-style,border-right-color,border-bottom,border-bottom-width,border-bottom-style,border-bottom-color,border-left,border-left-width,border-left-style,border-left-color,border-radius,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,border-image,border-image-source,border-image-slice,border-image-width,border-image-outset,border-image-repeat,outline,outline-width,outline-style,outline-color,outline-offset,background,background-color,background-image,background-repeat,background-attachment,background-position,background-position-x,background-position-y,background-clip,background-origin,background-size,box-decoration-break,box-shadow,text-shadow +ij_scss_space_after_colon = true +ij_scss_space_before_opening_brace = true +ij_scss_use_double_quotes = true +ij_scss_value_alignment = 0 + +[*.styl] +tab_width = 4 +ij_visual_guides = none +ij_stylus_align_closing_brace_with_properties = false +ij_stylus_blank_lines_around_nested_selector = 1 +ij_stylus_blank_lines_between_blocks = 1 +ij_stylus_brace_placement = 0 +ij_stylus_enforce_quotes_on_format = false +ij_stylus_hex_color_long_format = false +ij_stylus_hex_color_lower_case = false +ij_stylus_hex_color_short_format = false +ij_stylus_hex_color_upper_case = false +ij_stylus_keep_blank_lines_in_code = 2 +ij_stylus_keep_indents_on_empty_lines = false +ij_stylus_keep_single_line_blocks = false +ij_stylus_properties_order = font,font-family,font-size,font-weight,font-style,font-variant,font-size-adjust,font-stretch,line-height,position,z-index,top,right,bottom,left,display,visibility,float,clear,overflow,overflow-x,overflow-y,clip,zoom,align-content,align-items,align-self,flex,flex-flow,flex-basis,flex-direction,flex-grow,flex-shrink,flex-wrap,justify-content,order,box-sizing,width,min-width,max-width,height,min-height,max-height,margin,margin-top,margin-right,margin-bottom,margin-left,padding,padding-top,padding-right,padding-bottom,padding-left,table-layout,empty-cells,caption-side,border-spacing,border-collapse,list-style,list-style-position,list-style-type,list-style-image,content,quotes,counter-reset,counter-increment,resize,cursor,user-select,nav-index,nav-up,nav-right,nav-down,nav-left,transition,transition-delay,transition-timing-function,transition-duration,transition-property,transform,transform-origin,animation,animation-name,animation-duration,animation-play-state,animation-timing-function,animation-delay,animation-iteration-count,animation-direction,text-align,text-align-last,vertical-align,white-space,text-decoration,text-emphasis,text-emphasis-color,text-emphasis-style,text-emphasis-position,text-indent,text-justify,letter-spacing,word-spacing,text-outline,text-transform,text-wrap,text-overflow,text-overflow-ellipsis,text-overflow-mode,word-wrap,word-break,tab-size,hyphens,pointer-events,opacity,color,border,border-width,border-style,border-color,border-top,border-top-width,border-top-style,border-top-color,border-right,border-right-width,border-right-style,border-right-color,border-bottom,border-bottom-width,border-bottom-style,border-bottom-color,border-left,border-left-width,border-left-style,border-left-color,border-radius,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,border-image,border-image-source,border-image-slice,border-image-width,border-image-outset,border-image-repeat,outline,outline-width,outline-style,outline-color,outline-offset,background,background-color,background-image,background-repeat,background-attachment,background-position,background-position-x,background-position-y,background-clip,background-origin,background-size,box-decoration-break,box-shadow,text-shadow +ij_stylus_space_after_colon = true +ij_stylus_space_before_opening_brace = true +ij_stylus_use_double_quotes = true +ij_stylus_value_alignment = 0 + +[*.vue] +ij_continuation_indent_size = 4 +ij_visual_guides = none +ij_vue_indent_children_of_top_level = template +ij_vue_interpolation_new_line_after_start_delimiter = true +ij_vue_interpolation_new_line_before_end_delimiter = true +ij_vue_interpolation_wrap = off +ij_vue_keep_indents_on_empty_lines = false +ij_vue_spaces_within_interpolation_expressions = true +ij_vue_uniform_indent = true + +[.editorconfig] +ij_visual_guides = none +ij_editorconfig_align_group_field_declarations = false +ij_editorconfig_space_after_colon = false +ij_editorconfig_space_after_comma = true +ij_editorconfig_space_before_colon = false +ij_editorconfig_space_before_comma = false +ij_editorconfig_spaces_around_assignment_operators = true + +[{*.ant,*.fxml,*.jhm,*.jnlp,*.jrxml,*.rng,*.tld,*.wsdl,*.xml,*.xsd,*.xsl,*.xslt,*.xul}] +indent_size = 4 +tab_width = 4 +ij_visual_guides = none +ij_xml_align_attributes = true +ij_xml_align_text = false +ij_xml_attribute_wrap = normal +ij_xml_block_comment_at_first_column = true +ij_xml_keep_blank_lines = 2 +ij_xml_keep_indents_on_empty_lines = false +ij_xml_keep_line_breaks = true +ij_xml_keep_line_breaks_in_text = true +ij_xml_keep_whitespaces = false +ij_xml_keep_whitespaces_around_cdata = preserve +ij_xml_keep_whitespaces_inside_cdata = false +ij_xml_line_comment_at_first_column = true +ij_xml_space_after_tag_name = false +ij_xml_space_around_equals_in_attribute = false +ij_xml_space_inside_empty_tag = false +ij_xml_text_wrap = normal + +[{*.ats,*.ts,*.tsx}] +ij_continuation_indent_size = 2 +ij_visual_guides = none +ij_typescript_align_imports = false +ij_typescript_align_multiline_array_initializer_expression = false +ij_typescript_align_multiline_binary_operation = false +ij_typescript_align_multiline_chained_methods = false +ij_typescript_align_multiline_extends_list = false +ij_typescript_align_multiline_for = false +ij_typescript_align_multiline_parameters = false +ij_typescript_align_multiline_parameters_in_calls = false +ij_typescript_align_multiline_ternary_operation = false +ij_typescript_align_object_properties = 0 +ij_typescript_align_union_types = false +ij_typescript_align_var_statements = 0 +ij_typescript_array_initializer_new_line_after_left_brace = true +ij_typescript_array_initializer_right_brace_on_new_line = true +ij_typescript_array_initializer_wrap = on_every_item +ij_typescript_assignment_wrap = on_every_item +ij_typescript_binary_operation_sign_on_next_line = true +ij_typescript_binary_operation_wrap = on_every_item +ij_typescript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/** +ij_typescript_blank_lines_after_imports = 1 +ij_typescript_blank_lines_around_class = 1 +ij_typescript_blank_lines_around_field = 0 +ij_typescript_blank_lines_around_field_in_interface = 0 +ij_typescript_blank_lines_around_function = 1 +ij_typescript_blank_lines_around_method = 1 +ij_typescript_blank_lines_around_method_in_interface = 1 +ij_typescript_block_brace_style = end_of_line +ij_typescript_call_parameters_new_line_after_left_paren = false +ij_typescript_call_parameters_right_paren_on_new_line = false +ij_typescript_call_parameters_wrap = on_every_item +ij_typescript_catch_on_new_line = false +ij_typescript_chained_call_dot_on_new_line = true +ij_typescript_class_brace_style = end_of_line +ij_typescript_comma_on_new_line = false +ij_typescript_do_while_brace_force = always +ij_typescript_else_on_new_line = false +ij_typescript_enforce_trailing_comma = remove +ij_typescript_extends_keyword_wrap = off +ij_typescript_extends_list_wrap = off +ij_typescript_field_prefix = _ +ij_typescript_file_name_style = relaxed +ij_typescript_finally_on_new_line = false +ij_typescript_for_brace_force = always +ij_typescript_for_statement_new_line_after_left_paren = false +ij_typescript_for_statement_right_paren_on_new_line = false +ij_typescript_for_statement_wrap = off +ij_typescript_force_quote_style = true +ij_typescript_force_semicolon_style = true +ij_typescript_function_expression_brace_style = end_of_line +ij_typescript_if_brace_force = always +ij_typescript_import_merge_members = global +ij_typescript_import_prefer_absolute_path = global +ij_typescript_import_sort_members = true +ij_typescript_import_sort_module_name = false +ij_typescript_import_use_node_resolution = true +ij_typescript_imports_wrap = on_every_item +ij_typescript_indent_case_from_switch = true +ij_typescript_indent_chained_calls = true +ij_typescript_indent_package_children = 0 +ij_typescript_jsdoc_include_types = false +ij_typescript_jsx_attribute_value = braces +ij_typescript_keep_blank_lines_in_code = 1 +ij_typescript_keep_first_column_comment = true +ij_typescript_keep_indents_on_empty_lines = false +ij_typescript_keep_line_breaks = true +ij_typescript_keep_simple_blocks_in_one_line = true +ij_typescript_keep_simple_methods_in_one_line = true +ij_typescript_line_comment_add_space = true +ij_typescript_line_comment_at_first_column = false +ij_typescript_method_brace_style = end_of_line +ij_typescript_method_call_chain_wrap = on_every_item +ij_typescript_method_parameters_new_line_after_left_paren = false +ij_typescript_method_parameters_right_paren_on_new_line = false +ij_typescript_method_parameters_wrap = on_every_item +ij_typescript_object_literal_wrap = on_every_item +ij_typescript_parentheses_expression_new_line_after_left_paren = false +ij_typescript_parentheses_expression_right_paren_on_new_line = false +ij_typescript_place_assignment_sign_on_next_line = false +ij_typescript_prefer_as_type_cast = false +ij_typescript_prefer_explicit_types_function_expression_returns = false +ij_typescript_prefer_explicit_types_function_returns = false +ij_typescript_prefer_explicit_types_vars_fields = false +ij_typescript_prefer_parameters_wrap = false +ij_typescript_reformat_c_style_comments = true +ij_typescript_space_after_colon = true +ij_typescript_space_after_comma = true +ij_typescript_space_after_dots_in_rest_parameter = false +ij_typescript_space_after_generator_mult = true +ij_typescript_space_after_property_colon = true +ij_typescript_space_after_quest = true +ij_typescript_space_after_type_colon = true +ij_typescript_space_after_unary_not = false +ij_typescript_space_before_async_arrow_lparen = true +ij_typescript_space_before_catch_keyword = true +ij_typescript_space_before_catch_left_brace = true +ij_typescript_space_before_catch_parentheses = true +ij_typescript_space_before_class_lbrace = true +ij_typescript_space_before_class_left_brace = true +ij_typescript_space_before_colon = true +ij_typescript_space_before_comma = false +ij_typescript_space_before_do_left_brace = true +ij_typescript_space_before_else_keyword = true +ij_typescript_space_before_else_left_brace = true +ij_typescript_space_before_finally_keyword = true +ij_typescript_space_before_finally_left_brace = true +ij_typescript_space_before_for_left_brace = true +ij_typescript_space_before_for_parentheses = true +ij_typescript_space_before_for_semicolon = false +ij_typescript_space_before_function_left_parenth = true +ij_typescript_space_before_generator_mult = false +ij_typescript_space_before_if_left_brace = true +ij_typescript_space_before_if_parentheses = true +ij_typescript_space_before_method_call_parentheses = false +ij_typescript_space_before_method_left_brace = true +ij_typescript_space_before_method_parentheses = false +ij_typescript_space_before_property_colon = false +ij_typescript_space_before_quest = true +ij_typescript_space_before_switch_left_brace = true +ij_typescript_space_before_switch_parentheses = true +ij_typescript_space_before_try_left_brace = true +ij_typescript_space_before_type_colon = false +ij_typescript_space_before_unary_not = false +ij_typescript_space_before_while_keyword = true +ij_typescript_space_before_while_left_brace = true +ij_typescript_space_before_while_parentheses = true +ij_typescript_spaces_around_additive_operators = true +ij_typescript_spaces_around_arrow_function_operator = true +ij_typescript_spaces_around_assignment_operators = true +ij_typescript_spaces_around_bitwise_operators = true +ij_typescript_spaces_around_equality_operators = true +ij_typescript_spaces_around_logical_operators = true +ij_typescript_spaces_around_multiplicative_operators = true +ij_typescript_spaces_around_relational_operators = true +ij_typescript_spaces_around_shift_operators = true +ij_typescript_spaces_around_unary_operator = false +ij_typescript_spaces_within_array_initializer_brackets = false +ij_typescript_spaces_within_brackets = false +ij_typescript_spaces_within_catch_parentheses = false +ij_typescript_spaces_within_for_parentheses = false +ij_typescript_spaces_within_if_parentheses = false +ij_typescript_spaces_within_imports = true +ij_typescript_spaces_within_interpolation_expressions = false +ij_typescript_spaces_within_method_call_parentheses = false +ij_typescript_spaces_within_method_parentheses = false +ij_typescript_spaces_within_object_literal_braces = true +ij_typescript_spaces_within_object_type_braces = true +ij_typescript_spaces_within_parentheses = false +ij_typescript_spaces_within_switch_parentheses = false +ij_typescript_spaces_within_type_assertion = false +ij_typescript_spaces_within_union_types = true +ij_typescript_spaces_within_while_parentheses = false +ij_typescript_special_else_if_treatment = true +ij_typescript_ternary_operation_signs_on_next_line = true +ij_typescript_ternary_operation_wrap = on_every_item +ij_typescript_union_types_wrap = on_every_item +ij_typescript_use_chained_calls_group_indents = false +ij_typescript_use_double_quotes = false +ij_typescript_use_explicit_js_extension = global +ij_typescript_use_path_mapping = always +ij_typescript_use_public_modifier = false +ij_typescript_use_semicolon_after_statement = true +ij_typescript_var_declaration_wrap = on_every_item +ij_typescript_while_brace_force = always +ij_typescript_while_on_new_line = false +ij_typescript_wrap_comments = false + +[{*.bash,*.sh,*.zsh}] +ij_visual_guides = none +ij_shell_binary_ops_start_line = false +ij_shell_keep_column_alignment_padding = false +ij_shell_minify_program = false +ij_shell_redirect_followed_by_space = false +ij_shell_switch_cases_indented = false + +[{*.cjs,*.js,*.mjs}] +ij_continuation_indent_size = 2 +ij_visual_guides = none +ij_javascript_align_imports = false +ij_javascript_align_multiline_array_initializer_expression = false +ij_javascript_align_multiline_binary_operation = false +ij_javascript_align_multiline_chained_methods = false +ij_javascript_align_multiline_extends_list = false +ij_javascript_align_multiline_for = false +ij_javascript_align_multiline_parameters = false +ij_javascript_align_multiline_parameters_in_calls = false +ij_javascript_align_multiline_ternary_operation = false +ij_javascript_align_object_properties = 0 +ij_javascript_align_union_types = false +ij_javascript_align_var_statements = 0 +ij_javascript_array_initializer_new_line_after_left_brace = true +ij_javascript_array_initializer_right_brace_on_new_line = true +ij_javascript_array_initializer_wrap = on_every_item +ij_javascript_assignment_wrap = on_every_item +ij_javascript_binary_operation_sign_on_next_line = true +ij_javascript_binary_operation_wrap = on_every_item +ij_javascript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/** +ij_javascript_blank_lines_after_imports = 1 +ij_javascript_blank_lines_around_class = 1 +ij_javascript_blank_lines_around_field = 0 +ij_javascript_blank_lines_around_function = 1 +ij_javascript_blank_lines_around_method = 1 +ij_javascript_block_brace_style = end_of_line +ij_javascript_call_parameters_new_line_after_left_paren = false +ij_javascript_call_parameters_right_paren_on_new_line = false +ij_javascript_call_parameters_wrap = on_every_item +ij_javascript_catch_on_new_line = false +ij_javascript_chained_call_dot_on_new_line = true +ij_javascript_class_brace_style = end_of_line +ij_javascript_comma_on_new_line = false +ij_javascript_do_while_brace_force = always +ij_javascript_else_on_new_line = false +ij_javascript_enforce_trailing_comma = remove +ij_javascript_extends_keyword_wrap = off +ij_javascript_extends_list_wrap = off +ij_javascript_field_prefix = _ +ij_javascript_file_name_style = relaxed +ij_javascript_finally_on_new_line = false +ij_javascript_for_brace_force = always +ij_javascript_for_statement_new_line_after_left_paren = false +ij_javascript_for_statement_right_paren_on_new_line = false +ij_javascript_for_statement_wrap = off +ij_javascript_force_quote_style = true +ij_javascript_force_semicolon_style = true +ij_javascript_function_expression_brace_style = end_of_line +ij_javascript_if_brace_force = always +ij_javascript_import_merge_members = global +ij_javascript_import_prefer_absolute_path = global +ij_javascript_import_sort_members = true +ij_javascript_import_sort_module_name = false +ij_javascript_import_use_node_resolution = true +ij_javascript_imports_wrap = on_every_item +ij_javascript_indent_case_from_switch = true +ij_javascript_indent_chained_calls = true +ij_javascript_indent_package_children = 0 +ij_javascript_jsx_attribute_value = braces +ij_javascript_keep_blank_lines_in_code = 1 +ij_javascript_keep_first_column_comment = true +ij_javascript_keep_indents_on_empty_lines = false +ij_javascript_keep_line_breaks = true +ij_javascript_keep_simple_blocks_in_one_line = true +ij_javascript_keep_simple_methods_in_one_line = true +ij_javascript_line_comment_add_space = true +ij_javascript_line_comment_at_first_column = false +ij_javascript_method_brace_style = end_of_line +ij_javascript_method_call_chain_wrap = on_every_item +ij_javascript_method_parameters_new_line_after_left_paren = false +ij_javascript_method_parameters_right_paren_on_new_line = false +ij_javascript_method_parameters_wrap = on_every_item +ij_javascript_object_literal_wrap = on_every_item +ij_javascript_parentheses_expression_new_line_after_left_paren = false +ij_javascript_parentheses_expression_right_paren_on_new_line = false +ij_javascript_place_assignment_sign_on_next_line = false +ij_javascript_prefer_as_type_cast = false +ij_javascript_prefer_explicit_types_function_expression_returns = false +ij_javascript_prefer_explicit_types_function_returns = false +ij_javascript_prefer_explicit_types_vars_fields = false +ij_javascript_prefer_parameters_wrap = false +ij_javascript_reformat_c_style_comments = true +ij_javascript_space_after_colon = true +ij_javascript_space_after_comma = true +ij_javascript_space_after_dots_in_rest_parameter = false +ij_javascript_space_after_generator_mult = true +ij_javascript_space_after_property_colon = true +ij_javascript_space_after_quest = true +ij_javascript_space_after_type_colon = true +ij_javascript_space_after_unary_not = false +ij_javascript_space_before_async_arrow_lparen = true +ij_javascript_space_before_catch_keyword = true +ij_javascript_space_before_catch_left_brace = true +ij_javascript_space_before_catch_parentheses = true +ij_javascript_space_before_class_lbrace = true +ij_javascript_space_before_class_left_brace = true +ij_javascript_space_before_colon = true +ij_javascript_space_before_comma = false +ij_javascript_space_before_do_left_brace = true +ij_javascript_space_before_else_keyword = true +ij_javascript_space_before_else_left_brace = true +ij_javascript_space_before_finally_keyword = true +ij_javascript_space_before_finally_left_brace = true +ij_javascript_space_before_for_left_brace = true +ij_javascript_space_before_for_parentheses = true +ij_javascript_space_before_for_semicolon = false +ij_javascript_space_before_function_left_parenth = true +ij_javascript_space_before_generator_mult = false +ij_javascript_space_before_if_left_brace = true +ij_javascript_space_before_if_parentheses = true +ij_javascript_space_before_method_call_parentheses = false +ij_javascript_space_before_method_left_brace = true +ij_javascript_space_before_method_parentheses = false +ij_javascript_space_before_property_colon = false +ij_javascript_space_before_quest = true +ij_javascript_space_before_switch_left_brace = true +ij_javascript_space_before_switch_parentheses = true +ij_javascript_space_before_try_left_brace = true +ij_javascript_space_before_type_colon = false +ij_javascript_space_before_unary_not = false +ij_javascript_space_before_while_keyword = true +ij_javascript_space_before_while_left_brace = true +ij_javascript_space_before_while_parentheses = true +ij_javascript_spaces_around_additive_operators = true +ij_javascript_spaces_around_arrow_function_operator = true +ij_javascript_spaces_around_assignment_operators = true +ij_javascript_spaces_around_bitwise_operators = true +ij_javascript_spaces_around_equality_operators = true +ij_javascript_spaces_around_logical_operators = true +ij_javascript_spaces_around_multiplicative_operators = true +ij_javascript_spaces_around_relational_operators = true +ij_javascript_spaces_around_shift_operators = true +ij_javascript_spaces_around_unary_operator = false +ij_javascript_spaces_within_array_initializer_brackets = false +ij_javascript_spaces_within_brackets = false +ij_javascript_spaces_within_catch_parentheses = false +ij_javascript_spaces_within_for_parentheses = false +ij_javascript_spaces_within_if_parentheses = false +ij_javascript_spaces_within_imports = true +ij_javascript_spaces_within_interpolation_expressions = false +ij_javascript_spaces_within_method_call_parentheses = false +ij_javascript_spaces_within_method_parentheses = false +ij_javascript_spaces_within_object_literal_braces = true +ij_javascript_spaces_within_object_type_braces = true +ij_javascript_spaces_within_parentheses = false +ij_javascript_spaces_within_switch_parentheses = false +ij_javascript_spaces_within_type_assertion = false +ij_javascript_spaces_within_union_types = true +ij_javascript_spaces_within_while_parentheses = false +ij_javascript_special_else_if_treatment = true +ij_javascript_ternary_operation_signs_on_next_line = true +ij_javascript_ternary_operation_wrap = on_every_item +ij_javascript_union_types_wrap = on_every_item +ij_javascript_use_chained_calls_group_indents = false +ij_javascript_use_double_quotes = false +ij_javascript_use_explicit_js_extension = global +ij_javascript_use_path_mapping = always +ij_javascript_use_public_modifier = false +ij_javascript_use_semicolon_after_statement = true +ij_javascript_var_declaration_wrap = on_every_item +ij_javascript_while_brace_force = always +ij_javascript_while_on_new_line = false +ij_javascript_wrap_comments = false + +[{*.cjsx,*.coffee}] +ij_continuation_indent_size = 2 +ij_visual_guides = none +ij_coffeescript_align_function_body = false +ij_coffeescript_align_imports = false +ij_coffeescript_align_multiline_array_initializer_expression = true +ij_coffeescript_align_multiline_parameters = true +ij_coffeescript_align_multiline_parameters_in_calls = false +ij_coffeescript_align_object_properties = 0 +ij_coffeescript_align_union_types = false +ij_coffeescript_align_var_statements = 0 +ij_coffeescript_array_initializer_new_line_after_left_brace = false +ij_coffeescript_array_initializer_right_brace_on_new_line = false +ij_coffeescript_array_initializer_wrap = normal +ij_coffeescript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/** +ij_coffeescript_blank_lines_around_function = 1 +ij_coffeescript_call_parameters_new_line_after_left_paren = false +ij_coffeescript_call_parameters_right_paren_on_new_line = false +ij_coffeescript_call_parameters_wrap = normal +ij_coffeescript_chained_call_dot_on_new_line = true +ij_coffeescript_comma_on_new_line = false +ij_coffeescript_enforce_trailing_comma = keep +ij_coffeescript_field_prefix = _ +ij_coffeescript_file_name_style = relaxed +ij_coffeescript_force_quote_style = false +ij_coffeescript_force_semicolon_style = false +ij_coffeescript_function_expression_brace_style = end_of_line +ij_coffeescript_import_merge_members = global +ij_coffeescript_import_prefer_absolute_path = global +ij_coffeescript_import_sort_members = true +ij_coffeescript_import_sort_module_name = false +ij_coffeescript_import_use_node_resolution = true +ij_coffeescript_imports_wrap = on_every_item +ij_coffeescript_indent_chained_calls = true +ij_coffeescript_indent_package_children = 0 +ij_coffeescript_jsx_attribute_value = braces +ij_coffeescript_keep_blank_lines_in_code = 2 +ij_coffeescript_keep_first_column_comment = true +ij_coffeescript_keep_indents_on_empty_lines = false +ij_coffeescript_keep_line_breaks = true +ij_coffeescript_keep_simple_methods_in_one_line = false +ij_coffeescript_method_parameters_new_line_after_left_paren = false +ij_coffeescript_method_parameters_right_paren_on_new_line = false +ij_coffeescript_method_parameters_wrap = off +ij_coffeescript_object_literal_wrap = on_every_item +ij_coffeescript_prefer_as_type_cast = false +ij_coffeescript_prefer_explicit_types_function_expression_returns = false +ij_coffeescript_prefer_explicit_types_function_returns = false +ij_coffeescript_prefer_explicit_types_vars_fields = false +ij_coffeescript_reformat_c_style_comments = false +ij_coffeescript_space_after_comma = true +ij_coffeescript_space_after_dots_in_rest_parameter = false +ij_coffeescript_space_after_generator_mult = true +ij_coffeescript_space_after_property_colon = true +ij_coffeescript_space_after_type_colon = true +ij_coffeescript_space_after_unary_not = false +ij_coffeescript_space_before_async_arrow_lparen = true +ij_coffeescript_space_before_class_lbrace = true +ij_coffeescript_space_before_comma = false +ij_coffeescript_space_before_function_left_parenth = true +ij_coffeescript_space_before_generator_mult = false +ij_coffeescript_space_before_property_colon = false +ij_coffeescript_space_before_type_colon = false +ij_coffeescript_space_before_unary_not = false +ij_coffeescript_spaces_around_additive_operators = true +ij_coffeescript_spaces_around_arrow_function_operator = true +ij_coffeescript_spaces_around_assignment_operators = true +ij_coffeescript_spaces_around_bitwise_operators = true +ij_coffeescript_spaces_around_equality_operators = true +ij_coffeescript_spaces_around_logical_operators = true +ij_coffeescript_spaces_around_multiplicative_operators = true +ij_coffeescript_spaces_around_relational_operators = true +ij_coffeescript_spaces_around_shift_operators = true +ij_coffeescript_spaces_around_unary_operator = false +ij_coffeescript_spaces_within_array_initializer_braces = false +ij_coffeescript_spaces_within_array_initializer_brackets = false +ij_coffeescript_spaces_within_imports = false +ij_coffeescript_spaces_within_index_brackets = false +ij_coffeescript_spaces_within_interpolation_expressions = false +ij_coffeescript_spaces_within_method_call_parentheses = false +ij_coffeescript_spaces_within_method_parentheses = false +ij_coffeescript_spaces_within_object_braces = false +ij_coffeescript_spaces_within_object_literal_braces = false +ij_coffeescript_spaces_within_object_type_braces = true +ij_coffeescript_spaces_within_range_brackets = false +ij_coffeescript_spaces_within_type_assertion = false +ij_coffeescript_spaces_within_union_types = true +ij_coffeescript_union_types_wrap = on_every_item +ij_coffeescript_use_chained_calls_group_indents = false +ij_coffeescript_use_double_quotes = true +ij_coffeescript_use_explicit_js_extension = global +ij_coffeescript_use_path_mapping = always +ij_coffeescript_use_public_modifier = false +ij_coffeescript_use_semicolon_after_statement = false +ij_coffeescript_var_declaration_wrap = normal + +[{*.har,*.jsb2,*.jsb3,*.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,bowerrc,jest.config}] +tab_width = 4 +ij_visual_guides = none +ij_json_keep_blank_lines_in_code = 0 +ij_json_keep_indents_on_empty_lines = false +ij_json_keep_line_breaks = true +ij_json_space_after_colon = true +ij_json_space_after_comma = true +ij_json_space_before_colon = true +ij_json_space_before_comma = false +ij_json_spaces_within_braces = false +ij_json_spaces_within_brackets = false +ij_json_wrap_long_lines = false + +[{*.htm,*.html,*.ng,*.sht,*.shtm,*.shtml}] +indent_size = 2 +tab_width = 2 +ij_continuation_indent_size = 2 +ij_visual_guides = none +ij_html_add_new_line_before_tags = body,div,p,form,h1,h2,h3 +ij_html_align_attributes = true +ij_html_align_text = false +ij_html_attribute_wrap = on_every_item +ij_html_block_comment_at_first_column = true +ij_html_do_not_align_children_of_min_lines = 0 +ij_html_do_not_break_if_inline_tags = title,h1,h2,h3,h4,h5,h6,p +ij_html_do_not_indent_children_of_tags = +ij_html_enforce_quotes = false +ij_html_inline_tags = a,abbr,acronym,b,basefont,bdo,big,br,cite,cite,code,dfn,em,font,i,img,input,kbd,label,q,s,samp,select,small,span,strike,strong,sub,sup,textarea,tt,u,var +ij_html_keep_blank_lines = 1 +ij_html_keep_indents_on_empty_lines = false +ij_html_keep_line_breaks = true +ij_html_keep_line_breaks_in_text = true +ij_html_keep_whitespaces = false +ij_html_keep_whitespaces_inside = span,pre,textarea +ij_html_line_comment_at_first_column = true +ij_html_new_line_after_last_attribute = when multiline +ij_html_new_line_before_first_attribute = when multiline +ij_html_quote_style = double +ij_html_remove_new_line_before_tags = br +ij_html_space_after_tag_name = false +ij_html_space_around_equality_in_attribute = false +ij_html_space_inside_empty_tag = false +ij_html_text_wrap = off +ij_html_uniform_ident = false + +[{*.jade,*.pug}] +indent_size = 4 +tab_width = 4 +ij_visual_guides = none + +[{*.markdown,*.md}] +indent_size = 2 +tab_width = 2 +ij_continuation_indent_size = 2 +ij_visual_guides = none +ij_markdown_force_one_space_after_blockquote_symbol = true +ij_markdown_force_one_space_after_header_symbol = true +ij_markdown_force_one_space_after_list_bullet = true +ij_markdown_force_one_space_between_words = true +ij_markdown_keep_indents_on_empty_lines = false +ij_markdown_max_lines_around_block_elements = 1 +ij_markdown_max_lines_around_header = 1 +ij_markdown_max_lines_between_paragraphs = 1 +ij_markdown_min_lines_around_block_elements = 1 +ij_markdown_min_lines_around_header = 1 +ij_markdown_min_lines_between_paragraphs = 1 -[*.md] -max_line_length = off -trim_trailing_whitespace = false +[{*.yaml,*.yml}] +ij_visual_guides = none +ij_yaml_align_values_properties = do_not_align +ij_yaml_autoinsert_sequence_marker = true +ij_yaml_block_mapping_on_new_line = false +ij_yaml_indent_sequence_value = true +ij_yaml_keep_indents_on_empty_lines = false +ij_yaml_keep_line_breaks = true +ij_yaml_sequence_on_new_line = false +ij_yaml_space_before_colon = false +ij_yaml_spaces_within_braces = true +ij_yaml_spaces_within_brackets = true diff --git a/.env b/.env deleted file mode 100644 index b30889fdb059..000000000000 --- a/.env +++ /dev/null @@ -1,5 +0,0 @@ -PORT=3000 -CHOKIDAR_USEPOLLING=true -BROWSER=none -GENERATE_SOURCEMAP=false -WDS_SOCKET_PORT=3000 diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 1b849791174c..1c07c9e29e00 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -15,15 +15,6 @@ module.exports = { react: { version: 'detect', }, - 'import/resolver': { - // added for `import {component} from 'src/component' style imports` - 'eslint-import-resolver-custom-alias': { - alias: { - src: './src', - }, - extensions: ['.js', '.jsx', '.json'], - }, - }, }, extends: [ 'eslint:recommended', diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 000000000000..30e559eb2fc3 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,17 @@ +{ + "extends": "next/core-web-vitals", + "rules": { + "@next/next/no-img-element": "off", + "@next/next/no-page-custom-font": "off", + "jsx-a11y/alt-text": "off", + "react/display-name": "off", + "react/no-children-prop": "off", + "react/no-unescaped-entities": "off", + "react/jsx-max-props-per-line": [ + 0, + { + "maximum": 10 + } + ] + } +} diff --git a/.gitattributes b/.gitattributes index 205021e49dd1..fbd75d33c401 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1 @@ -# Enforce Unix newlines -* text=auto eol=lf +* text=lf \ No newline at end of file diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index 6e1c3fe8b8c6..9c4e74f79fc9 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -3,7 +3,7 @@ name: CIPP Development Frontend CI/CD on: push: branches: - - dev + - interface-rewrite jobs: build_and_deploy_job: @@ -18,14 +18,14 @@ jobs: id: builddeploy uses: Azure/static-web-apps-deploy@v1 with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }} # change this to your repository secret name + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_RW }} # change this to your repository secret name repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) action: 'upload' ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig app_location: '/' # App source code path api_location: '' # Api source code path - optional - output_location: '' # Built app content directory - optional + output_location: 'out' # Built app content directory - optional ###### End of Repository/Build Configurations ###### close_pull_request_job: @@ -37,5 +37,5 @@ jobs: id: closepullrequest uses: Azure/static-web-apps-deploy@v1 with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }} # change this to your repository secret name + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_RW }} # change this to your repository secret name action: 'close' diff --git a/.gitignore b/.gitignore index 0c9f36fe2e8a..173e008feb8a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,21 @@ -# See https://help.github.com/ignore-files/ for more about ignoring files. +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies -/node_modules - +node_modules +.pnp +.pnp.js +build # testing -/coverage +coverage # production -/build +.next +out # misc -.eslintcache .DS_Store -.idea +.eslintcache +.env .env.local .env.development.local .env.test.local @@ -21,5 +24,11 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +<<<<<<< HEAD __* .next/* +======= + +# vscode debug logs +debug.log +>>>>>>> fceac3a966cf35825ceb2e2e9ba0d3e26dac40b5 diff --git a/.jscpd.json b/.jscpd.json deleted file mode 100644 index 2cee5f5d5be7..000000000000 --- a/.jscpd.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "threshold": 0, - "reporters": ["html", "markdown"], - "ignore": [ - "**/node_modules/**", - "**/.git/**", - "**/.rbenv/**", - "**/.venv/**", - "**/*cache*/**", - "**/.github/**", - "**/.idea/**", - "**/report/**", - "**/*.svg" - ] -} diff --git a/.mega-linter.yml b/.mega-linter.yml deleted file mode 100644 index 1eccaa23246b..000000000000 --- a/.mega-linter.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -# Configuration file for MegaLinter -# See all available variables at https://megalinter.github.io/configuration/ and in linters documentation -APPLY_FIXES: none -SHOW_ELAPSED_TIME: true -FILEIO_REPORTER: false -ENABLE: [CSS, HTML, JSON, YAML, JSX, ACTION, CREDENTIALS] -DISABLE_LINTERS: [CSS_SCSS_LINT, YAML_PRETTIER] -SHOW_SKIPPED_LINTERS: false diff --git a/.node-version b/.node-version deleted file mode 100644 index 3c032078a4a2..000000000000 --- a/.node-version +++ /dev/null @@ -1 +0,0 @@ -18 diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 1611c469b3e9..000000000000 --- a/.prettierignore +++ /dev/null @@ -1,4 +0,0 @@ -dist/ -build/ -importsMap.jsx -Generate-Import-Map.js \ No newline at end of file diff --git a/.prettierrc.json b/.prettierrc.json deleted file mode 100644 index c3d9bfa563ed..000000000000 --- a/.prettierrc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "semi": false, - "trailingComma": "all", - "singleQuote": true, - "printWidth": 100, - "tabWidth": 2 -} diff --git a/.secretlintignore b/.secretlintignore deleted file mode 100644 index 2490a64364c0..000000000000 --- a/.secretlintignore +++ /dev/null @@ -1,2 +0,0 @@ -# Ignore VSCode development certificate private key. -**/.vscode/key.key diff --git a/.secretlintrc.json b/.secretlintrc.json deleted file mode 100644 index 7a1a5df3c28e..000000000000 --- a/.secretlintrc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "rules": [ - { - "id": "@secretlint/secretlint-rule-preset-recommend" - } - ] -} diff --git a/.stylelintrc.json b/.stylelintrc.json deleted file mode 100644 index a89421b2dbbc..000000000000 --- a/.stylelintrc.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "extends": "stylelint-config-sass-guidelines", - "rules": { - "selector-class-pattern": null, - "max-nesting-depth": 6, - "selector-no-qualifying-type": [ - true, - { - "ignore": ["attribute", "class"] - } - ], - "selector-max-compound-selectors": 5 - } -} diff --git a/.vscode/launch.json b/.vscode/launch.json index b0363910187c..647f3571b4c2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,7 +15,7 @@ "type": "node-terminal" }, { - "command": "npm start", + "command": "yarn run dev", "name": "Run Frontend", "request": "launch", "type": "node-terminal", @@ -33,7 +33,14 @@ "name": "Launch in Windows Terminal", "request": "launch", "cwd": "${cwd}", - "script": ". '${cwd}\\Tools\\Start-CippDevEmulators.ps1'" + "script": ". '${cwd}\\Tools\\Start-CIPPDevEmulators.ps1'" + }, + { + "type": "PowerShell", + "name": "Launch in Kitty Terminal", + "request": "launch", + "cwd": "${cwd}", + "script": ". '${cwd}${pathSeparator}Tools${pathSeparator}Start-CippDevEmulatorsWithKitty.ps1'" } ], "compounds": [ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000000..9e26dfeeb6e6 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.yamllint.yaml b/.yamllint.yaml deleted file mode 100644 index e907140bfe4d..000000000000 --- a/.yamllint.yaml +++ /dev/null @@ -1,2 +0,0 @@ ---- -extends: default diff --git a/Generate-Import-Map.js b/Generate-Import-Map.js deleted file mode 100644 index d8b23547c55b..000000000000 --- a/Generate-Import-Map.js +++ /dev/null @@ -1,35 +0,0 @@ -// Using ES Module syntax compatible with Node.js 18 and ensuring cross-platform compatibility -import fs from 'fs/promises' -import path from 'path' -import { fileURLToPath } from 'url' - -// Convert __dirname equivalent for ES Modules -const __filename = fileURLToPath(import.meta.url) -const __dirname = path.dirname(__filename) - -// Adjust the relative path as necessary to point to your routes.json location -const routesPath = path.join(__dirname, './src/routes.json') // Example path - -// Load routes.json with an import assertion for JSON -const routes = await import(`file://${routesPath}`, { assert: { type: 'json' } }).then( - (module) => module.default, -) - -let importsMap = "import React from 'react'\n export const importsMap = {\n" - -routes.forEach((route) => { - if (route.component) { - // Adjust the import path to be relative to the importsMap.js file location - const importPath = route.component.replace('views', './views') - // Ensure paths are Unix-like for the dynamic import to work cross-platform - const unixImportPath = importPath.split(path.sep).join('/') - importsMap += ` "${route.path}": React.lazy(() => import('${unixImportPath}')), \n` - } -}) - -importsMap += '}\nexport default importsMap' - -// Specify the output file path for the generated imports map -const outputPath = path.join(__dirname, './src/importsMap.jsx') -await fs.writeFile(outputPath, importsMap) -console.log('Import map generated.') diff --git a/Importmap.ps1 b/Importmap.ps1 deleted file mode 100644 index 357c3af5d1ce..000000000000 --- a/Importmap.ps1 +++ /dev/null @@ -1,22 +0,0 @@ -// generate-imports-map.js -const fs = require('fs') -const path = require('path') -const routes = require('./path/to/routes.json') - -let importsMap = 'export const importsMap = {\n' - -routes.forEach(route => { - if (route.component) { - // Convert the path to a format that's relative to where you'll be importing from - const importPath = route.component.replace('views', './views') - const componentName = path.basename(importPath) - - // Create an import statement for the component - importsMap += "${route.path}": React.lazy(() = > import('${importPath}')), \n`; - } - }) - -importsMap += '};\n' - -fs.writeFileSync(path.resolve(__dirname,'./src/importsMap.js'), importsMap) -console.log('Import map generated.') diff --git a/LICENSE.CustomLicenses b/LICENSE.CustomLicenses deleted file mode 100644 index c66793baf6d3..000000000000 --- a/LICENSE.CustomLicenses +++ /dev/null @@ -1,3 +0,0 @@ -Custom licenses are available upon agreement via Github Sponsorships. Custom licenses will not have to be published in this repository. All contributors automatically agree with this provision. - -A CLA is signed by contributors if they have contributed before these provisions. Only contributions currently in the running latest release require the CLA to be signed. The CLA is signed by creating a issue using the issue template "CLA". the agreement will be related directly to available CLA template. diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index 162676cbef61..000000000000 --- a/LICENSE.md +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - -Copyright (C) 2007 Free Software Foundation, Inc. -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - - Preamble - -The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - -The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - -When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - -Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - -A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - -The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - -An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - -The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - -0. Definitions. - -"This License" refers to version 3 of the GNU Affero General Public License. - -"Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - -"The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - -To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - -A "covered work" means either the unmodified Program or a work based -on the Program. - -To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - -To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - -1. Source Code. - -The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - -A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - -The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - -The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - -The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - -The Corresponding Source for a work in source code form is that -same work. - -2. Basic Permissions. - -All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - -When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - -A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - -A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - -"Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - -If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - -The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - -7. Additional Terms. - -"Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - -All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - -8. Termination. - -You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - -However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - -Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - -An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - -11. Patents. - -A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - -A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - -In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - -If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - -A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - -13. Remote Network Interaction; Use with the GNU General Public License. - -Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - -Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - -Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - -If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - -You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/Tools/Start-CippDevEmulators.ps1 b/Tools/Start-CippDevEmulators.ps1 index bde7511caac1..882579f1bdc4 100644 --- a/Tools/Start-CippDevEmulators.ps1 +++ b/Tools/Start-CippDevEmulators.ps1 @@ -5,8 +5,8 @@ $Path = (Get-Item $PSScriptRoot).Parent.Parent.FullName $Process = Read-Host -Prompt 'Start Process Function (y/N)?' if ($Process -eq 'y') { - wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run start`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa`; new-tab --title 'CIPP-API-Processor' -d $Path\CIPP-API-Processor pwsh -c func start --port 7072 + wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run dev`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa`; new-tab --title 'CIPP-API-Processor' -d $Path\CIPP-API-Processor pwsh -c func start --port 7072 } else { - wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run start`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa + wt --title CIPP`; new-tab --title 'Azurite' -d $Path pwsh -c azurite`; new-tab --title 'FunctionApp' -d $Path\CIPP-API pwsh -c func start`; new-tab --title 'CIPP Frontend' -d $Path\CIPP pwsh -c npm run dev`; new-tab --title 'SWA' -d $Path\CIPP pwsh -c npm run start-swa } diff --git a/Tools/Start-CippDevEmulatorsWithKitty.ps1 b/Tools/Start-CippDevEmulatorsWithKitty.ps1 new file mode 100644 index 000000000000..d0f156fd6479 --- /dev/null +++ b/Tools/Start-CippDevEmulatorsWithKitty.ps1 @@ -0,0 +1,24 @@ +Get-Command kitty -ErrorAction Stop | Out-Null +Write-Host 'Starting CIPP Dev Emulators' +Get-Process node -ErrorAction SilentlyContinue | Stop-Process -ErrorAction SilentlyContinue +$Path = (Get-Item $PSScriptRoot).Parent.Parent.FullName + +if (Test-Path (Join-Path $Path 'CIPP-API-Processor')) { + $Process = Read-Host -Prompt 'Start Process Function (y/N)?' +} + +if ($Process -eq 'y') { + kitty --detach --title 'CIPP' -o allow_remote_control=yes -- pwsh -c " + kitty @new-window --new-tab --tab-title `"Azurite`" --cwd $Path -- azurite ; + kitty @new-window --new-tab --tab-title `"FunctionApp`" --cwd (Join-Path $Path `"CIPP-API`") -- func start; + kitty @new-window --new-tab --tab-title `"CIPP Frontend`" --cwd (Join-Path $Path `"CIPP`") -- npm run dev ; + kitty @new-window --new-tab --tab-title `"SWA`" --cwd (Join-Path $Path `"CIPP`") -- npm run start-swa; + kitty @new-window --new-tab --tab-title `"CIPP-API-Processor`" --cwd (Join-Path $Path `"CIPP-API-Processor`") -- func start --port 7072" + +} else { + kitty --detach --title 'CIPP' -o allow_remote_control=yes -- pwsh -c " + kitty @new-window --new-tab --tab-title `"Azurite`" --cwd $Path -- azurite ; + kitty @new-window --new-tab --tab-title `"FunctionApp`" --cwd (Join-Path $Path `"CIPP-API`") -- func start; + kitty @new-window --new-tab --tab-title `"CIPP Frontend`" --cwd (Join-Path $Path `"CIPP`") -- npm run dev ; + kitty @new-window --new-tab --tab-title `"SWA`" --cwd (Join-Path $Path `"CIPP`") -- npm run start-swa" +} diff --git a/Tools/Update intune Templates.ps1 b/Tools/Update intune Templates.ps1 new file mode 100644 index 000000000000..cef6f14963a8 --- /dev/null +++ b/Tools/Update intune Templates.ps1 @@ -0,0 +1,31 @@ +Import-Module Microsoft.Graph +Connect-MgGraph -Scopes 'DeviceManagementConfiguration.Read.All', 'DeviceManagementServiceConfig.Read.All' +$i = 0 +$settingsUrl = "https://graph.microsoft.com/beta/deviceManagement/configurationSettings?`$top=999&`$skip=$i" +$Settings = do { + $settingsResponse = Invoke-MgGraphRequest -Method Get -Uri $settingsUrl + Write-Host "Getting settings from $i to $($i + 999): $settingsUrl" + if ($null -ne $settingsResponse.value) { + foreach ($setting in $settingsResponse.value) { + + $options = if ($setting.options -ne $null) { + $setting.options | ForEach-Object { + [pscustomobject]@{ + id = $_.itemId + displayName = $_.displayName + description = $_.description + } + } + } + + [pscustomobject]@{ + id = $setting.id + displayName = $setting.displayName + options = $options + } + } + } + $i += 999 + $settingsUrl = "https://graph.microsoft.com/beta/deviceManagement/configurationSettings?`$top=999&`$skip=$i" + Write-Host "last setting is $($settingsResponse.value[-1].id)" +} while ($null -ne $settingsResponse.value.id) diff --git a/deployment/AzureDeploymentTemplate.json b/deployment/AzureDeploymentTemplate.json index aa445e3fd6c8..91ce52c678a7 100644 --- a/deployment/AzureDeploymentTemplate.json +++ b/deployment/AzureDeploymentTemplate.json @@ -220,7 +220,7 @@ "buildProperties": { "appLocation": "/", "apiLocation": "", - "appArtifactLocation": "" + "outputLocation": "/out" } }, "sku": { diff --git a/deployment/AzureDeploymentTemplate_regionoptions.json b/deployment/AzureDeploymentTemplate_regionoptions.json index 1abff7bcc162..7e23726404c2 100644 --- a/deployment/AzureDeploymentTemplate_regionoptions.json +++ b/deployment/AzureDeploymentTemplate_regionoptions.json @@ -220,7 +220,7 @@ "buildProperties": { "appLocation": "/", "apiLocation": "", - "appArtifactLocation": "" + "outputLocation": "/out" } }, "sku": { diff --git a/deployment/DevAzureDeploymentTemplate_regionoptions.json b/deployment/DevAzureDeploymentTemplate_regionoptions.json index f41e669076e5..f17135c01057 100644 --- a/deployment/DevAzureDeploymentTemplate_regionoptions.json +++ b/deployment/DevAzureDeploymentTemplate_regionoptions.json @@ -294,7 +294,9 @@ "buildProperties": { "appLocation": "/", "apiLocation": "", + "appArtifactLocation": "" + "outputLocation": "/out" } }, "sku": { diff --git a/generate-placeholders.js b/generate-placeholders.js new file mode 100644 index 000000000000..9858fc7f7b7c --- /dev/null +++ b/generate-placeholders.js @@ -0,0 +1,180 @@ +const fs = require("fs"); +const path = require("path"); + +const pages = [ + { title: "Dashboard", path: "/" }, + { title: "Administration", path: "/identity/administration" }, + { title: "Users", path: "/identity/users" }, + { title: "Risky Users", path: "/identity/administration/risky-users" }, + { title: "Groups", path: "/identity/administration/groups" }, + { title: "Devices", path: "/identity/administration/devices" }, + { title: "Deploy Group Template", path: "/identity/administration/deploy-group-template" }, + { title: "Group Templates", path: "/identity/administration/group-templates" }, + { title: "Deleted Items", path: "/identity/administration/deleted-items" }, + { title: "Roles", path: "/identity/administration/roles" }, + { title: "JIT Admin", path: "/identity/administration/jit-admin" }, + { title: "Offboarding Wizard", path: "/identity/administration/offboarding-wizard" }, + { title: "Reports", path: "/identity/reports" }, + { title: "MFA Report", path: "/identity/reports/mfa-report" }, + { title: "Inactive Users", path: "/identity/reports/inactive-users-report" }, + { title: "Sign-in Report", path: "/identity/reports/signin-report" }, + { title: "AAD Connect Report", path: "/identity/reports/azure-ad-connect-report" }, + { title: "Risk Detections", path: "/identity/reports/risk-detections" }, + { title: "Administration", path: "/tenant/administration" }, + { title: "Tenants", path: "/tenant/administration/tenants" }, + { title: "Alert Configuration", path: "/tenant/administration/alert-configuration" }, + { title: "Audit Logs", path: "/tenant/administration/audit-logs" }, + { title: "Enterprise Applications", path: "/tenant/administration/enterprise-apps" }, + { title: "Secure Score", path: "/tenant/administration/securescore" }, + { title: "App Consent Requests", path: "/tenant/administration/app-consent-requests" }, + { title: "Authentication Methods", path: "/tenant/administration/authentication-methods" }, + { title: "Tenant Onboarding", path: "/tenant/administration/tenant-onboarding" }, + { title: "Tenant Offboarding", path: "/tenant/administration/tenant-offboarding-wizard" }, + { title: "Partner Relationships", path: "/tenant/administration/partner-relationships" }, + { title: "Configuration Backup", path: "/cipp/gdap" }, + { title: "Backup Wizard", path: "/tenant/backup/backup-wizard" }, + { title: "Restore Wizard", path: "/tenant/backup/restore-wizard" }, + { title: "Tools", path: "/tenant/administration" }, + { title: "Graph Explorer", path: "/tenant/administration/graph-explorer" }, + { title: "Application Approval", path: "/tenant/administration/appapproval" }, + { title: "IP Database", path: "/tenant/tools/geoiplookup" }, + { title: "Tenant Lookup", path: "/tenant/administration/tenantlookup" }, + { title: "Individual Domain Check", path: "/tenant/standards/individual-domains" }, + { title: "BPA Report Builder", path: "/tenant/tools/bpa-report-builder" }, + { title: "Standards", path: "/tenant/standards" }, + { title: "Edit Standards", path: "/tenant/standards/list-applied-standards" }, + { title: "List Standards", path: "/tenant/standards/list-standards" }, + { title: "Best Practice Analyser", path: "/tenant/standards/bpa-report" }, + { title: "Domains Analyser", path: "/tenant/standards/domains-analyser" }, + { title: "Conditional Access", path: "/tenant/administration" }, + { title: "CA Policies", path: "/tenant/conditional/list-policies" }, + { title: "Deploy CA Policies", path: "/tenant/conditional/deploy" }, + { title: "CA Policy Tester", path: "/tenant/conditional/test-policy" }, + { title: "CA Vacation Mode", path: "/tenant/conditional/deploy-vacation" }, + { title: "CA Templates", path: "/tenant/conditional/list-template" }, + { title: "Named Locations", path: "/tenant/conditional/list-named-locations" }, + { title: "Deploy Named Locations", path: "/tenant/conditional/deploy-named-location" }, + { title: "GDAP Management", path: "/cipp/gdap" }, + { title: "Invite Wizard", path: "/tenant/administration/gdap-invite-wizard" }, + { title: "Invite List", path: "/tenant/administration/gdap-invites" }, + { title: "GDAP Relationships", path: "/tenant/administration/gdap-relationships" }, + { title: "Role Wizard", path: "/tenant/administration/gdap-role-wizard" }, + { title: "GDAP Roles", path: "/tenant/administration/gdap-roles" }, + { title: "Reports", path: "/tenant/reports" }, + { title: "Licence Report", path: "/tenant/administration/list-licenses" }, + { title: "Consented Applications", path: "/tenant/administration/application-consent" }, + { title: "Service Health", path: "/tenant/administration/service-health" }, + { title: "Incidents", path: "/security/incidents/list-incidents" }, + { title: "Alerts", path: "/security/incidents/list-alerts" }, + { title: "Defender Status", path: "/security/defender/list-defender" }, + { title: "Defender Deployment", path: "/security/defender/deployment" }, + { title: "Vulnerabilities", path: "/security/defender/list-defender-tvm" }, + { title: "Device Compliance", path: "/security/reports/list-device-compliance" }, + { title: "Applications", path: "/endpoint/applications/list" }, + { title: "Application Queue", path: "/endpoint/applications/queue" }, + { title: "Add Choco App", path: "/endpoint/applications/add-choco-app" }, + { title: "Add Store App", path: "/endpoint/applications/add-winget-app" }, + { title: "Add Office App", path: "/endpoint/applications/add-office-app" }, + { title: "Add MSP App", path: "/endpoint/applications/add-rmm-app" }, + { title: "Autopilot Devices", path: "/endpoint/autopilot/list-devices" }, + { title: "Add Autopilot Device", path: "/endpoint/autopilot/add-device" }, + { title: "Profiles", path: "/endpoint/autopilot/list-profiles" }, + { title: "Add Profile", path: "/endpoint/autopilot/add-profile" }, + { title: "Status Pages", path: "/endpoint/autopilot/list-status-pages" }, + { title: "Add Status Page", path: "/endpoint/autopilot/add-status-page" }, + { title: "Devices", path: "/endpoint/reports/devices" }, + { title: "Configuration Policies", path: "/endpoint/MEM/list-policies" }, + { title: "Compliance Policies", path: "/endpoint/MEM/list-compliance-policies" }, + { title: "Protection Policies", path: "/endpoint/MEM/list-appprotection-policies" }, + { title: "Apply Policy", path: "/endpoint/MEM/add-policy" }, + { title: "Policy Templates", path: "/endpoint/MEM/list-templates" }, + { title: "Add Policy Template", path: "/endpoint/MEM/add-policy-template" }, + { title: "OneDrive", path: "/teams-share/onedrive/list" }, + { title: "SharePoint", path: "/teams-share/sharepoint/list-sharepoint" }, + { title: "Teams", path: "/teams-share/teams/list-team" }, + { title: "Add Team", path: "/teams-share/teams/add-team" }, + { title: "Teams Activity", path: "/teams-share/teams/teams-activity" }, + { title: "Business Voice", path: "/teams-share/teams/business-voice" }, + { title: "Mailboxes", path: "/email/administration/mailboxes" }, + { title: "Deleted Mailboxes", path: "/email/administration/deleted-mailboxes" }, + { title: "Mailbox Rules", path: "/email/administration/mailbox-rules" }, + { title: "Contacts", path: "/email/administration/contacts" }, + { title: "Quarantine", path: "/email/administration/quarantine" }, + { title: "Tenant Allow/Block Lists", path: "/email/administration/tenant-allow-block-lists" }, + { title: "Mailbox Restore Wizard", path: "/email/tools/mailbox-restore-wizard" }, + { title: "Mailbox Restores", path: "/email/tools/mailbox-restores" }, + { title: "Mail Test", path: "/email/tools/mail-test" }, + { title: "Message Viewer", path: "/email/tools/message-viewer" }, + { title: "Transport rules", path: "/email/transport/list-rules" }, + { title: "Deploy Transport rule", path: "/email/transport/deploy-rules" }, + { title: "Transport Templates", path: "/email/transport/list-templates" }, + { title: "Connectors", path: "/email/connectors/list-connectors" }, + { title: "Deploy Connector Templates", path: "/email/connectors/deploy-connector" }, + { title: "Connector Templates", path: "/email/connectors/list-connector-templates" }, + { title: "Spamfilter", path: "/email/spamfilter/list-spamfilter" }, + { title: "Apply Spamfilter Template", path: "/email/spamfilter/deploy" }, + { title: "Templates", path: "/email/spamfilter/list-templates" }, + { title: "Rooms", path: "/resources/management/list-rooms" }, + { title: "Room Lists", path: "/resources/management/room-lists" }, + { title: "Mailbox Statistics", path: "/email/reports/mailbox-statistics" }, + { title: "Mailbox Client Access Settings", path: "/email/reports/mailbox-cas-settings" }, + { title: "Message Trace", path: "/email/reports/message-trace" }, + { title: "Anti-Phishing Filters", path: "/email/reports/antiphishing-filters" }, + { title: "Malware Filters", path: "/email/reports/malware-filters" }, + { title: "Safe Links Filters", path: "/email/reports/safelinks-filters" }, + { title: "Safe Attachments Filters", path: "/email/reports/safeattachments-filters" }, + { + title: "Shared Mailbox with Enabled Account", + path: "/email/reports/SharedMailboxEnabledAccount", + }, + { title: "Settings", path: "/cipp/settings" }, + { title: "Extensions Settings", path: "/cipp/extensions" }, + { title: "Extension Sync", path: "/cipp/extension-sync" }, + { title: "User Settings", path: "/cipp/user-settings" }, + { title: "Scheduler", path: "/cipp/scheduler" }, + { title: "Logbook", path: "/cipp/logs" }, + { title: "Statistics", path: "/cipp/statistics" }, + { title: "SAM Setup Wizard", path: "/onboarding" }, + { title: "Log Out", path: "/logout" }, +]; + +// Template for the placeholder page +const placeholderTemplate = (title) => ` +import { Layout as DashboardLayout } from "/src/layouts/index.js"; + +const Page = () => { + const pageTitle = "${title}"; + + return ( +
+

{pageTitle}

+

This is a placeholder page for the ${title.toLowerCase()} section.

+
+ ); +}; + +Page.getLayout = (page) => {page}; + +export default Page; +`; + +// Function to create the placeholder pages +const createPlaceholderPages = () => { + pages.forEach(({ path: pagePath, title }) => { + const dirPath = path.join(__dirname, "src", "pages", ...pagePath.split("/")); + const filePath = path.join(dirPath, "index.js"); + + // Ensure the directory exists + fs.mkdirSync(dirPath, { recursive: true }); + + // Check if the file already exists + if (!fs.existsSync(filePath)) { + // Write the placeholder page + fs.writeFileSync(filePath, placeholderTemplate(title), "utf8"); + } else { + } + }); +}; + +// Run the function to create the pages +createPlaceholderPages(); diff --git a/index.html b/index.html deleted file mode 100644 index 0715762939da..000000000000 --- a/index.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - CIPP - - - - - - - - - - - -
- - - diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index 35496702afff..000000000000 --- a/jsconfig.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "compilerOptions": { - "module": "ESNext", - "baseUrl": "./", - "checkJs": false, - "moduleResolution": "node", - "jsx": "react" - }, - "include": ["./src"], - "exclude": ["node_modules/"] -} diff --git a/next.config.js b/next.config.js new file mode 100644 index 000000000000..32f5eb3bea26 --- /dev/null +++ b/next.config.js @@ -0,0 +1,19 @@ +/** @type {import('next').NextConfig} */ +const config = { + reactStrictMode: false, + images: { + unoptimized: true, + }, + webpack(config) { + config.module.rules.push({ + test: /\.svg$/, + use: ["@svgr/webpack"], + }); + return config; + }, + async redirects() { + return []; + }, +}; + +module.exports = config; diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 52097c7d8d38..000000000000 --- a/package-lock.json +++ /dev/null @@ -1,9380 +0,0 @@ -{ - "name": "cipp", - "version": "6.2.2", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "cipp", - "version": "6.2.2", - "license": "AGPL-3.0", - "dependencies": { - "@coreui/chartjs": "^3.0.0", - "@coreui/coreui": "^4.3.0", - "@coreui/react": "^4.11.0", - "@coreui/react-chartjs": "^2.1.3", - "@coreui/utils": "^1.3.1", - "@fortawesome/fontawesome-svg-core": "^6.5.1", - "@fortawesome/free-brands-svg-icons": "^6.5.1", - "@fortawesome/free-regular-svg-icons": "^6.5.1", - "@fortawesome/free-solid-svg-icons": "^6.5.1", - "@fortawesome/react-fontawesome": "^0.2.0", - "@monaco-editor/react": "^4.5.2", - "@popperjs/core": "^2.10.2", - "@reduxjs/toolkit": "^1.9.7", - "@rjsf/bootstrap-4": "^5.12.1", - "@rjsf/core": "^5.12.1", - "@rjsf/utils": "^5.12.1", - "@rjsf/validator-ajv8": "^5.12.1", - "@uiw/react-json-view": "^2.0.0-alpha.23", - "axios": "^1.6.2", - "buffer": "^6.0.3", - "chart.js": "^3.5.1", - "classnames": "^2.3.1", - "core-js": "^3.18.3", - "dompurify": "^3.1.6", - "eml-parse-js": "^1.1.14", - "enzyme": "^3.11.0", - "final-form": "^4.20.4", - "final-form-arrays": "^3.1.0", - "fuse.js": "^7.0.0", - "fuzzysort": "^1.1.4", - "javascript-time-ago": "^2.5.9", - "jspdf": "^2.4.0", - "jspdf-autotable": "^3.5.23", - "lodash-es": "^4.17.21", - "moment": "^2.29.1", - "prop-types": "^15.7.2", - "react": "^18.2.0", - "react-app-polyfill": "^2.0.0", - "react-bootstrap": "^1.6.5", - "react-circular-progressbar": "^2.1.0", - "react-copy-to-clipboard": "^5.1.0", - "react-data-table-component": "^7.4.5", - "react-datepicker": "^4.10.0", - "react-dom": "^18.2.0", - "react-dropzone": "^14.2.3", - "react-final-form": "^6.5.9", - "react-final-form-arrays": "^3.1.4", - "react-final-form-listeners": "^1.0.3", - "react-helmet-async": "^1.3.0", - "react-hotkeys-hook": "^3.4.4", - "react-html-parser": "^2.0.2", - "react-loading-skeleton": "^3.1.0", - "react-masonry-component": "^6.3.0", - "react-media-hook": "^0.4.9", - "react-papaparse": "^3.18.2", - "react-redux": "^7.2.5", - "react-router-dom": "^6.1.1", - "react-select": "^5.3.0", - "react-select-search": "^3.0.8", - "react-syntax-highlighter": "^15.4.5", - "react-time-ago": "^7.2.1", - "redux": "4.1.1", - "redux-persist": "^6.0.0", - "simplebar-react": "^2.3.6", - "source-map-loader": "^3.0.0", - "styled-components": "^5.3.11" - }, - "devDependencies": { - "@types/react": "^18.2.39", - "@types/react-helmet": "^6.1.5", - "@vitejs/plugin-react": "^4.2.1", - "auto-changelog": "~2.3.0", - "browserslist-to-esbuild": "^1.2.0", - "eslint": "^8.54.0", - "eslint-config-prettier": "^8.3.0", - "eslint-import-resolver-custom-alias": "^1.3.2", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-prettier": "^4.0.0", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-refresh": "^0.4.4", - "husky": "^7.0.4", - "postcss-scss": "^4.0.3", - "prettier": "2.4.1", - "redux-immutable-state-invariant": "^2.1.0", - "sass": "^1.64.2", - "stylelint": "^14.3.0", - "stylelint-config-sass-guidelines": "^9.0.1", - "stylelint-order": "^5.0.0", - "vite": "^5.0.6", - "vite-plugin-eslint": "^1.8.1" - }, - "engines": { - "node": "18", - "npm": ">=8.3.0" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", - "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.0.tgz", - "integrity": "sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.0", - "@babel/parser": "^7.24.0", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", - "@babel/types": "^7.24.0", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", - "dependencies": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", - "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", - "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.0.tgz", - "integrity": "sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==", - "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", - "@babel/types": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.0.tgz", - "integrity": "sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", - "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz", - "integrity": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz", - "integrity": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.0.tgz", - "integrity": "sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.0.tgz", - "integrity": "sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", - "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", - "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@coreui/chartjs": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@coreui/chartjs/-/chartjs-3.1.2.tgz", - "integrity": "sha512-d3MGk3KZNAt29VRKP/XYiGmT56KTqtuOhLEg5HNwb7P7ZmEgOJoHxFHVCVE4I36hfgQCjZZVknsuk2ZTfF/2fw==", - "dependencies": { - "@coreui/coreui": "^4.2.6", - "chart.js": "^3.9.1" - } - }, - "node_modules/@coreui/coreui": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@coreui/coreui/-/coreui-4.3.0.tgz", - "integrity": "sha512-2bx5E9YT17td4K7hZapudypSPx7a5jYg8NpSCTLRStPTWOBlL5XVF7fz3yUn2S6DQE1VmnbrXQpuS5LzmptRLQ==", - "dependencies": { - "postcss-combine-duplicated-selectors": "^10.0.3" - }, - "peerDependencies": { - "@popperjs/core": "^2.11.6" - } - }, - "node_modules/@coreui/react": { - "version": "4.11.1", - "resolved": "https://registry.npmjs.org/@coreui/react/-/react-4.11.1.tgz", - "integrity": "sha512-2EYnV6kpyH8/648+iffRy/I/xCEnD2MnEOuo1LPiUSX7EqoHn5M3fI+sf4vM9Wrqz4Gv2gxCl8DNRpk2xcLANQ==", - "peerDependencies": { - "@coreui/coreui": "4.3.0", - "react": ">=17", - "react-dom": ">=17" - } - }, - "node_modules/@coreui/react-chartjs": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@coreui/react-chartjs/-/react-chartjs-2.1.3.tgz", - "integrity": "sha512-Boj2LhlGlAVIdPRDDIyF5nbupIg9ohhpdLXW28ch0A0ZMpJvf0AwBoibV4Uo6agcN7jSq2uvgudNC3aJTMg/8w==", - "dependencies": { - "@coreui/chartjs": "^3.1.1", - "chart.js": "3.9.1" - }, - "peerDependencies": { - "react": ">=17", - "react-dom": ">=17" - } - }, - "node_modules/@coreui/utils": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@coreui/utils/-/utils-1.3.1.tgz", - "integrity": "sha512-WuWHX7bg89cJH34TWVsLe9RsxzBhTApj+X2Ja19xhjcpxt5Gv11Ozm+fwYt6DD7DgncTvpwYrMcnNlpp701UOg==", - "engines": { - "node": ">=8.9.0", - "npm": ">= 5.6.0" - } - }, - "node_modules/@csstools/selector-specificity": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", - "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss-selector-parser": "^6.0.10" - } - }, - "node_modules/@emotion/babel-plugin": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", - "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", - "dependencies": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/serialize": "^1.1.2", - "babel-plugin-macros": "^3.1.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@emotion/cache": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", - "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", - "dependencies": { - "@emotion/memoize": "^0.8.1", - "@emotion/sheet": "^1.2.2", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" - }, - "node_modules/@emotion/is-prop-valid": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz", - "integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==", - "dependencies": { - "@emotion/memoize": "^0.8.1" - } - }, - "node_modules/@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" - }, - "node_modules/@emotion/react": { - "version": "11.11.4", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.4.tgz", - "integrity": "sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==", - "dependencies": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.11.0", - "@emotion/cache": "^11.11.0", - "@emotion/serialize": "^1.1.3", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "hoist-non-react-statics": "^3.3.1" - }, - "peerDependencies": { - "react": ">=16.8.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@emotion/serialize": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", - "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", - "dependencies": { - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/unitless": "^0.8.1", - "@emotion/utils": "^1.2.1", - "csstype": "^3.0.2" - } - }, - "node_modules/@emotion/sheet": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", - "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" - }, - "node_modules/@emotion/stylis": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", - "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" - }, - "node_modules/@emotion/unitless": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" - }, - "node_modules/@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", - "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@emotion/utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", - "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" - }, - "node_modules/@emotion/weak-memoize": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", - "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", - "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", - "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", - "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", - "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", - "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", - "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", - "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", - "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", - "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", - "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", - "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", - "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", - "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", - "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", - "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", - "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", - "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", - "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", - "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", - "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", - "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", - "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", - "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@floating-ui/core": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", - "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", - "dependencies": { - "@floating-ui/utils": "^0.2.1" - } - }, - "node_modules/@floating-ui/dom": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", - "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", - "dependencies": { - "@floating-ui/core": "^1.0.0", - "@floating-ui/utils": "^0.2.0" - } - }, - "node_modules/@floating-ui/utils": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", - "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==" - }, - "node_modules/@fortawesome/fontawesome-common-types": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.5.1.tgz", - "integrity": "sha512-GkWzv+L6d2bI5f/Vk6ikJ9xtl7dfXtoRu3YGE6nq0p/FFqA1ebMOAWg3XgRyb0I6LYyYkiAo+3/KrwuBp8xG7A==", - "hasInstallScript": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.5.1.tgz", - "integrity": "sha512-MfRCYlQPXoLlpem+egxjfkEuP9UQswTrlCOsknus/NcMoblTH2g0jPrapbcIb04KGA7E2GZxbAccGZfWoYgsrQ==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/free-brands-svg-icons": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-6.5.1.tgz", - "integrity": "sha512-093l7DAkx0aEtBq66Sf19MgoZewv1zeY9/4C7vSKPO4qMwEsW/2VYTUTpBtLwfb9T2R73tXaRDPmE4UqLCYHfg==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/free-regular-svg-icons": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.5.1.tgz", - "integrity": "sha512-m6ShXn+wvqEU69wSP84coxLbNl7sGVZb+Ca+XZq6k30SzuP3X4TfPqtycgUh9ASwlNh5OfQCd8pDIWxl+O+LlQ==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/free-solid-svg-icons": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.5.1.tgz", - "integrity": "sha512-S1PPfU3mIJa59biTtXJz1oI0+KAXW6bkAb31XKhxdxtuXDiUIFsih4JR1v5BbxY7hVHsD1RKq+jRkVRaf773NQ==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/react-fontawesome": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.2.0.tgz", - "integrity": "sha512-uHg75Rb/XORTtVt7OS9WoK8uM276Ufi7gCzshVWkUJbHhh3svsUUeqXerrM96Wm7fRiDzfKRwSoahhMIkGAYHw==", - "dependencies": { - "prop-types": "^15.8.1" - }, - "peerDependencies": { - "@fortawesome/fontawesome-svg-core": "~1 || ~6", - "react": ">=16.3" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", - "debug": "^4.3.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", - "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", - "dev": true - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", - "peer": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@juggle/resize-observer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", - "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" - }, - "node_modules/@monaco-editor/loader": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz", - "integrity": "sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==", - "dependencies": { - "state-local": "^1.0.6" - }, - "peerDependencies": { - "monaco-editor": ">= 0.21.0 < 1" - } - }, - "node_modules/@monaco-editor/react": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.6.0.tgz", - "integrity": "sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==", - "dependencies": { - "@monaco-editor/loader": "^1.4.0" - }, - "peerDependencies": { - "monaco-editor": ">= 0.25.0 < 1", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@react-icons/all-files": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@react-icons/all-files/-/all-files-4.1.0.tgz", - "integrity": "sha512-hxBI2UOuVaI3O/BhQfhtb4kcGn9ft12RWAFVMUeNjqqhLsHvFtzIkFaptBJpFDANTKoDfdVoHTKZDlwKCACbMQ==", - "peerDependencies": { - "react": "*" - } - }, - "node_modules/@reduxjs/toolkit": { - "version": "1.9.7", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz", - "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==", - "dependencies": { - "immer": "^9.0.21", - "redux": "^4.2.1", - "redux-thunk": "^2.4.2", - "reselect": "^4.1.8" - }, - "peerDependencies": { - "react": "^16.9.0 || ^17.0.0 || ^18", - "react-redux": "^7.2.1 || ^8.0.2" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-redux": { - "optional": true - } - } - }, - "node_modules/@reduxjs/toolkit/node_modules/redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/@remix-run/router": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.15.3.tgz", - "integrity": "sha512-Oy8rmScVrVxWZVOpEF57ovlnhpZ8CCPlnIIumVcV9nFdiSIrus99+Lw78ekXyGvVDlIsFJbSfmSovJUhCWYV3w==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@restart/context": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@restart/context/-/context-2.1.4.tgz", - "integrity": "sha512-INJYZQJP7g+IoDUh/475NlGiTeMfwTXUEr3tmRneckHIxNolGOW9CTq83S8cxq0CgJwwcMzMJFchxvlwe7Rk8Q==", - "peerDependencies": { - "react": ">=16.3.2" - } - }, - "node_modules/@restart/hooks": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.16.tgz", - "integrity": "sha512-f7aCv7c+nU/3mF7NWLtVVr0Ra80RqsO89hO72r+Y/nvQr5+q0UFGkocElTH6MJApvReVh6JHUFYn2cw1WdHF3w==", - "dependencies": { - "dequal": "^2.0.3" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@rjsf/bootstrap-4": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/@rjsf/bootstrap-4/-/bootstrap-4-5.17.1.tgz", - "integrity": "sha512-23NZ5qB0eYmJRY1UgI66mTAp4lyGXSgduyr7UX35fsBFy91CzP/FozL1P/muRcEslRqBJhDgrWbMdw99eLSO1w==", - "dependencies": { - "@react-icons/all-files": "^4.1.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@rjsf/core": "^5.16.x", - "@rjsf/utils": "^5.16.x", - "react": "^16.14.0 || >=17", - "react-bootstrap": "^1.6.5" - } - }, - "node_modules/@rjsf/core": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/@rjsf/core/-/core-5.17.1.tgz", - "integrity": "sha512-COZSuumwHskWN8Pz3RxdxvuQUP6M/qBMXAkIi+TSWLFLaF6SUugpLiceMT1jGemDCr7fOSTiPxjkToSsgpvueQ==", - "dependencies": { - "lodash": "^4.17.21", - "lodash-es": "^4.17.21", - "markdown-to-jsx": "^7.4.1", - "nanoid": "^3.3.7", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@rjsf/utils": "^5.16.x", - "react": "^16.14.0 || >=17" - } - }, - "node_modules/@rjsf/utils": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/@rjsf/utils/-/utils-5.17.1.tgz", - "integrity": "sha512-q1Igz/cuM2hi+jiXFkoaXqdRTUFB+a0jfVKNmZlHmvPmfYeeJfcfyOTzO8dQ41fHNHUFb15ryxa/TblDQimwkA==", - "dependencies": { - "json-schema-merge-allof": "^0.8.1", - "jsonpointer": "^5.0.1", - "lodash": "^4.17.21", - "lodash-es": "^4.17.21", - "react-is": "^18.2.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": "^16.14.0 || >=17" - } - }, - "node_modules/@rjsf/validator-ajv8": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/@rjsf/validator-ajv8/-/validator-ajv8-5.17.1.tgz", - "integrity": "sha512-KdvHsjDQ60b04fqnoqhfkiCv7E4n4NIHli8QU8dtpuUAVS/TOqDuOtDJVz6bv/rd/QNROGpxlO/OCccE0rmxLQ==", - "dependencies": { - "ajv": "^8.12.0", - "ajv-formats": "^2.1.1", - "lodash": "^4.17.21", - "lodash-es": "^4.17.21" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@rjsf/utils": "^5.16.x" - } - }, - "node_modules/@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", - "dev": true, - "dependencies": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.13.0.tgz", - "integrity": "sha512-5ZYPOuaAqEH/W3gYsRkxQATBW3Ii1MfaT4EQstTnLKViLi2gLSQmlmtTpGucNP3sXEpOiI5tdGhjdE111ekyEg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.13.0.tgz", - "integrity": "sha512-BSbaCmn8ZadK3UAQdlauSvtaJjhlDEjS5hEVVIN3A4bbl3X+otyf/kOJV08bYiRxfejP3DXFzO2jz3G20107+Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.13.0.tgz", - "integrity": "sha512-Ovf2evVaP6sW5Ut0GHyUSOqA6tVKfrTHddtmxGQc1CTQa1Cw3/KMCDEEICZBbyppcwnhMwcDce9ZRxdWRpVd6g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.13.0.tgz", - "integrity": "sha512-U+Jcxm89UTK592vZ2J9st9ajRv/hrwHdnvyuJpa5A2ngGSVHypigidkQJP+YiGL6JODiUeMzkqQzbCG3At81Gg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.13.0.tgz", - "integrity": "sha512-8wZidaUJUTIR5T4vRS22VkSMOVooG0F4N+JSwQXWSRiC6yfEsFMLTYRFHvby5mFFuExHa/yAp9juSphQQJAijQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.13.0.tgz", - "integrity": "sha512-Iu0Kno1vrD7zHQDxOmvweqLkAzjxEVqNhUIXBsZ8hu8Oak7/5VTPrxOEZXYC1nmrBVJp0ZcL2E7lSuuOVaE3+w==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.13.0.tgz", - "integrity": "sha512-C31QrW47llgVyrRjIwiOwsHFcaIwmkKi3PCroQY5aVq4H0A5v/vVVAtFsI1nfBngtoRpeREvZOkIhmRwUKkAdw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.13.0.tgz", - "integrity": "sha512-Oq90dtMHvthFOPMl7pt7KmxzX7E71AfyIhh+cPhLY9oko97Zf2C9tt/XJD4RgxhaGeAraAXDtqxvKE1y/j35lA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.13.0.tgz", - "integrity": "sha512-yUD/8wMffnTKuiIsl6xU+4IA8UNhQ/f1sAnQebmE/lyQ8abjsVyDkyRkWop0kdMhKMprpNIhPmYlCxgHrPoXoA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.13.0.tgz", - "integrity": "sha512-9RyNqoFNdF0vu/qqX63fKotBh43fJQeYC98hCaf89DYQpv+xu0D8QFSOS0biA7cGuqJFOc1bJ+m2rhhsKcw1hw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.13.0.tgz", - "integrity": "sha512-46ue8ymtm/5PUU6pCvjlic0z82qWkxv54GTJZgHrQUuZnVH+tvvSP0LsozIDsCBFO4VjJ13N68wqrKSeScUKdA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.13.0.tgz", - "integrity": "sha512-P5/MqLdLSlqxbeuJ3YDeX37srC8mCflSyTrUsgbU1c/U9j6l2g2GiIdYaGD9QjdMQPMSgYm7hgg0551wHyIluw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.13.0.tgz", - "integrity": "sha512-UKXUQNbO3DOhzLRwHSpa0HnhhCgNODvfoPWv2FCXme8N/ANFfhIPMGuOT+QuKd16+B5yxZ0HdpNlqPvTMS1qfw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@sinonjs/text-encoding": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz", - "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==" - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", - "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/eslint": { - "version": "8.56.5", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.5.tgz", - "integrity": "sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw==", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", - "peer": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - }, - "node_modules/@types/hast": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", - "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", - "dependencies": { - "@types/unist": "^2" - } - }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", - "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", - "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "node_modules/@types/invariant": { - "version": "2.2.37", - "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.37.tgz", - "integrity": "sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==" - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", - "dev": true - }, - "node_modules/@types/node": { - "version": "20.11.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.26.tgz", - "integrity": "sha512-YwOMmyhNnAWijOBQweOJnQPl068Oqd4K3OFbTc6AHJwzweUwwWG3GIFY74OKks2PJUDkQPeddOQES9mLn1CTEQ==", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", - "dev": true - }, - "node_modules/@types/papaparse": { - "version": "5.3.14", - "resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.3.14.tgz", - "integrity": "sha512-LxJ4iEFcpqc6METwp9f6BV6VVc43m6MfH0VqFosHvrUgfXiFe6ww7R3itkOQ+TCK6Y+Iv/+RnnvtRZnkc5Kc9g==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - }, - "node_modules/@types/prop-types": { - "version": "15.7.11", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", - "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" - }, - "node_modules/@types/raf": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/@types/raf/-/raf-3.4.3.tgz", - "integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==", - "optional": true - }, - "node_modules/@types/react": { - "version": "18.2.65", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.65.tgz", - "integrity": "sha512-98TsY0aW4jqx/3RqsUXwMDZSWR1Z4CUlJNue8ueS2/wcxZOsz4xmW1X8ieaWVRHcmmQM3R8xVA4XWB3dJnWwDQ==", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-helmet": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/@types/react-helmet/-/react-helmet-6.1.11.tgz", - "integrity": "sha512-0QcdGLddTERotCXo3VFlUSWO3ztraw8nZ6e3zJSgG7apwV5xt+pJUS8ewPBqT4NYB1optGLprNQzFleIY84u/g==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-redux": { - "version": "7.1.33", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz", - "integrity": "sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==", - "dependencies": { - "@types/hoist-non-react-statics": "^3.3.0", - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0", - "redux": "^4.0.0" - } - }, - "node_modules/@types/react-transition-group": { - "version": "4.4.10", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", - "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.8", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", - "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" - }, - "node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" - }, - "node_modules/@types/warning": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz", - "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==" - }, - "node_modules/@uiw/react-json-view": { - "version": "2.0.0-alpha.23", - "resolved": "https://registry.npmjs.org/@uiw/react-json-view/-/react-json-view-2.0.0-alpha.23.tgz", - "integrity": "sha512-GT0fy/K7+xSsfhvV4PVx2qPRomr/RjzFnerCjglfTYX0oEjFe9S2UwnhqOBaSHrfaCL6ccALZ2c+qV73eqop9Q==", - "funding": { - "url": "https://jaywcjlove.github.io/#/sponsor" - }, - "peerDependencies": { - "@babel/runtime": ">=7.10.0", - "react": ">=18.0.0", - "react-dom": ">=18.0.0" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, - "node_modules/@vitejs/plugin-react": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz", - "integrity": "sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.23.5", - "@babel/plugin-transform-react-jsx-self": "^7.23.3", - "@babel/plugin-transform-react-jsx-source": "^7.23.3", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.14.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0" - } - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", - "peer": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", - "peer": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "peer": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", - "peer": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "peer": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "peer": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "peer": true - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "deprecated": "Use your platform's native atob() and btoa() methods instead" - }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "peer": true, - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.filter": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", - "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.findlast": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.4.tgz", - "integrity": "sha512-BMtLxpV+8BD+6ZPFIWmnUBpQoy+A+ujcg4rhp2iwCRJYA7PEh2MS4NL3lz8EiDlLrJPp2hg9qWihr5pd//jcGw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", - "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.toreversed": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", - "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", - "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.1.0", - "es-shim-unscopables": "^1.0.2" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - } - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/attr-accept": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.2.2.tgz", - "integrity": "sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==", - "engines": { - "node": ">=4" - } - }, - "node_modules/auto-changelog": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/auto-changelog/-/auto-changelog-2.3.0.tgz", - "integrity": "sha512-S2B+RtTgytsa7l5iFGBoWT9W9ylITT5JJ8OaMJ7nrwvnlRm1dSS2tghaYueDeInZZafOE+1llH3tUQjMDRVS1g==", - "dev": true, - "dependencies": { - "commander": "^5.0.0", - "handlebars": "^4.7.3", - "node-fetch": "^2.6.0", - "parse-github-url": "^1.0.2", - "semver": "^6.3.0" - }, - "bin": { - "auto-changelog": "src/index.js" - }, - "engines": { - "node": ">=8.3" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axios": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", - "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", - "dependencies": { - "follow-redirects": "^1.15.4", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "dependencies": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - }, - "engines": { - "node": ">=10", - "npm": ">=6" - } - }, - "node_modules/babel-plugin-styled-components": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.4.tgz", - "integrity": "sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "lodash": "^4.17.21", - "picomatch": "^2.3.1" - }, - "peerDependencies": { - "styled-components": ">= 2" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base64-arraybuffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", - "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", - "optional": true, - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/batch-processor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/batch-processor/-/batch-processor-1.0.0.tgz", - "integrity": "sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==" - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/browserslist-to-esbuild": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserslist-to-esbuild/-/browserslist-to-esbuild-1.2.0.tgz", - "integrity": "sha512-ftrrbI/VHBgEnmnSyhkqvQVMp6jAKybfs0qMIlm7SLBrQTGMsdCIP4q3BoKeLsZTBQllIQtY9kbxgRYV2WU47g==", - "dev": true, - "dependencies": { - "browserslist": "^4.17.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/btoa": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", - "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", - "bin": { - "btoa": "bin/btoa.js" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "peer": true - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/camelize": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", - "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/can-use-dom": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", - "integrity": "sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==" - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001597", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001597.tgz", - "integrity": "sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/canvg": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz", - "integrity": "sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==", - "optional": true, - "dependencies": { - "@babel/runtime": "^7.12.5", - "@types/raf": "^3.4.0", - "core-js": "^3.8.3", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.7", - "rgbcolor": "^1.0.1", - "stackblur-canvas": "^2.0.0", - "svg-pathdata": "^6.0.3" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/canvg/node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "optional": true - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/character-entities": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", - "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-legacy": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", - "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-reference-invalid": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", - "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/chart.js": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.9.1.tgz", - "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" - }, - "node_modules/cheerio": { - "version": "1.0.0-rc.12", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", - "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", - "dependencies": { - "cheerio-select": "^2.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "htmlparser2": "^8.0.1", - "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0" - }, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" - } - }, - "node_modules/cheerio-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", - "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", - "dependencies": { - "boolbase": "^1.0.0", - "css-select": "^5.1.0", - "css-what": "^6.1.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "peer": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/classnames": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", - "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/comma-separated-tokens": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", - "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/compute-gcd": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz", - "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==", - "dependencies": { - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" - } - }, - "node_modules/compute-lcm": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz", - "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==", - "dependencies": { - "compute-gcd": "^1.2.1", - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, - "node_modules/copy-to-clipboard": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", - "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", - "dependencies": { - "toggle-selection": "^1.0.6" - } - }, - "node_modules/core-js": { - "version": "3.36.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.36.0.tgz", - "integrity": "sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw==", - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/create-react-class": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", - "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", - "dependencies": { - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-color-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", - "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", - "engines": { - "node": ">=4" - } - }, - "node_modules/css-functions-list": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.1.tgz", - "integrity": "sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==", - "dev": true, - "engines": { - "node": ">=12 || >=16" - } - }, - "node_modules/css-line-break": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", - "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", - "optional": true, - "dependencies": { - "utrie": "^1.0.2" - } - }, - "node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-to-react-native": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", - "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", - "dependencies": { - "camelize": "^1.0.0", - "css-color-keywords": "^1.0.0", - "postcss-value-parser": "^4.0.2" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "dependencies": { - "@babel/runtime": "^7.21.0" - }, - "engines": { - "node": ">=0.11" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/date-fns" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", - "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", - "dev": true, - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/desandro-matches-selector": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/desandro-matches-selector/-/desandro-matches-selector-2.0.2.tgz", - "integrity": "sha512-+1q0nXhdzg1IpIJdMKalUwvvskeKnYyEe3shPRwedNcWtnhEKT3ZxvFjzywHDeGcKViIxTCAoOYQWP1qD7VNyg==" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/discontinuous-range": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", - "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/dompurify": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.1.6.tgz", - "integrity": "sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==" - }, - "node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.4.701", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.701.tgz", - "integrity": "sha512-K3WPQ36bUOtXg/1+69bFlFOvdSm0/0bGqmsfPDLRXLanoKXdA+pIWuf/VbA9b+2CwBFuONgl4NEz4OEm+OJOKA==" - }, - "node_modules/element-resize-detector": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/element-resize-detector/-/element-resize-detector-1.2.4.tgz", - "integrity": "sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==", - "dependencies": { - "batch-processor": "1.0.0" - } - }, - "node_modules/eml-parse-js": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/eml-parse-js/-/eml-parse-js-1.1.14.tgz", - "integrity": "sha512-6wUmZQ4k67CHGaQdNTukUMtCQ77e/676pRRsn/ga6CdaIwitzbQwqA/YTq/Wk+l1gghFJTPhbRyQphrAptK/GA==", - "dependencies": { - "@sinonjs/text-encoding": "^0.7.2", - "js-base64": "^3.7.2" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/enhanced-resolve": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz", - "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==", - "peer": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/enzyme": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", - "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", - "dependencies": { - "array.prototype.flat": "^1.2.3", - "cheerio": "^1.0.0-rc.3", - "enzyme-shallow-equal": "^1.0.1", - "function.prototype.name": "^1.1.2", - "has": "^1.0.3", - "html-element-map": "^1.2.0", - "is-boolean-object": "^1.0.1", - "is-callable": "^1.1.5", - "is-number-object": "^1.0.4", - "is-regex": "^1.0.5", - "is-string": "^1.0.5", - "is-subset": "^0.1.1", - "lodash.escape": "^4.0.1", - "lodash.isequal": "^4.5.0", - "object-inspect": "^1.7.0", - "object-is": "^1.0.2", - "object.assign": "^4.1.0", - "object.entries": "^1.1.1", - "object.values": "^1.1.1", - "raf": "^3.4.1", - "rst-selector-parser": "^2.2.3", - "string.prototype.trim": "^1.2.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/enzyme-shallow-equal": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.7.tgz", - "integrity": "sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg==", - "dependencies": { - "hasown": "^2.0.0", - "object-is": "^1.1.5" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.22.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.5.tgz", - "integrity": "sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.1", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.0", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.5", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz", - "integrity": "sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ==", - "dev": true, - "dependencies": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.4", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.2", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-module-lexer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", - "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", - "peer": true - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/esbuild": { - "version": "0.19.12", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", - "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.19.12", - "@esbuild/android-arm": "0.19.12", - "@esbuild/android-arm64": "0.19.12", - "@esbuild/android-x64": "0.19.12", - "@esbuild/darwin-arm64": "0.19.12", - "@esbuild/darwin-x64": "0.19.12", - "@esbuild/freebsd-arm64": "0.19.12", - "@esbuild/freebsd-x64": "0.19.12", - "@esbuild/linux-arm": "0.19.12", - "@esbuild/linux-arm64": "0.19.12", - "@esbuild/linux-ia32": "0.19.12", - "@esbuild/linux-loong64": "0.19.12", - "@esbuild/linux-mips64el": "0.19.12", - "@esbuild/linux-ppc64": "0.19.12", - "@esbuild/linux-riscv64": "0.19.12", - "@esbuild/linux-s390x": "0.19.12", - "@esbuild/linux-x64": "0.19.12", - "@esbuild/netbsd-x64": "0.19.12", - "@esbuild/openbsd-x64": "0.19.12", - "@esbuild/sunos-x64": "0.19.12", - "@esbuild/win32-arm64": "0.19.12", - "@esbuild/win32-ia32": "0.19.12", - "@esbuild/win32-x64": "0.19.12" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-prettier": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", - "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-import-resolver-custom-alias": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-custom-alias/-/eslint-import-resolver-custom-alias-1.3.2.tgz", - "integrity": "sha512-wBPcZA2k6/IXaT8FsLMyiyVSG6WVEuaYIAbeKLXeGwr523BmeB9lKAAoLJWSqp3txsnU4gpkgD2x1q6K8k0uDQ==", - "dev": true, - "dependencies": { - "glob-parent": "^6.0.2", - "resolve": "^1.22.2" - }, - "peerDependencies": { - "eslint-plugin-import": ">=2.2.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.15.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-prettier": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", - "dev": true, - "dependencies": { - "prettier-linter-helpers": "^1.0.0" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "eslint": ">=7.28.0", - "prettier": ">=2.0.0" - }, - "peerDependenciesMeta": { - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.34.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.0.tgz", - "integrity": "sha512-MeVXdReleBTdkz/bvcQMSnCXGi+c9kvy51IpinjnJgutl3YTHWsDdke7Z1ufZpGfDG8xduBDKyjtB9JH1eBKIQ==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlast": "^1.2.4", - "array.prototype.flatmap": "^1.3.2", - "array.prototype.toreversed": "^1.1.2", - "array.prototype.tosorted": "^1.1.3", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.17", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7", - "object.hasown": "^1.1.3", - "object.values": "^1.1.7", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.5", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.10" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react-refresh": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.5.tgz", - "integrity": "sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==", - "dev": true, - "peerDependencies": { - "eslint": ">=7" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ev-emitter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz", - "integrity": "sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q==" - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "peer": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", - "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "dev": true, - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fault": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", - "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", - "dependencies": { - "format": "^0.2.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/fflate": { - "version": "0.4.8", - "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.4.8.tgz", - "integrity": "sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==" - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/file-selector": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/file-selector/-/file-selector-0.6.0.tgz", - "integrity": "sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==", - "dependencies": { - "tslib": "^2.4.0" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/final-form": { - "version": "4.20.10", - "resolved": "https://registry.npmjs.org/final-form/-/final-form-4.20.10.tgz", - "integrity": "sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==", - "dependencies": { - "@babel/runtime": "^7.10.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/final-form" - } - }, - "node_modules/final-form-arrays": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/final-form-arrays/-/final-form-arrays-3.1.0.tgz", - "integrity": "sha512-TWBvun+AopgBLw9zfTFHBllnKMVNEwCEyDawphPuBGGqNsuhGzhT7yewHys64KFFwzIs6KEteGLpKOwvTQEscQ==", - "peerDependencies": { - "final-form": "^4.20.8" - } - }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/fizzy-ui-utils": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/fizzy-ui-utils/-/fizzy-ui-utils-2.0.7.tgz", - "integrity": "sha512-CZXDVXQ1If3/r8s0T+v+qVeMshhfcuq0rqIFgJnrtd+Bu8GmDmqMjntjUePypVtjHXKJ6V4sw9zeyox34n9aCg==", - "dependencies": { - "desandro-matches-selector": "^2.0.0" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true - }, - "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/format": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", - "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/fuse.js": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-7.0.0.tgz", - "integrity": "sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==", - "engines": { - "node": ">=10" - } - }, - "node_modules/fuzzysort": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/fuzzysort/-/fuzzysort-1.9.0.tgz", - "integrity": "sha512-MOxCT0qLTwLqmEwc7UtU045RKef7mc8Qz8eR4r2bLNEq9dy/c3ZKMEFp6IEst69otkQdFZ4FfgH2dmZD+ddX1g==" - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-size": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/get-size/-/get-size-2.0.3.tgz", - "integrity": "sha512-lXNzT/h/dTjTxRbm9BXb+SGxxzkm97h/PCIKtlN/CBCxxmkkIVV21udumMS93MuVTDX583gqc94v3RjuHmI+2Q==" - }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "peer": true - }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "dependencies": { - "global-prefix": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globjoin": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", - "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", - "dev": true - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "peer": true - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/handlebars": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", - "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", - "dev": true, - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.2", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, - "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" - } - }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", - "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hast-util-parse-selector": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", - "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hastscript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", - "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", - "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^1.0.0", - "hast-util-parse-selector": "^2.0.0", - "property-information": "^5.0.0", - "space-separated-tokens": "^1.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/highlight.js": { - "version": "10.7.3", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", - "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", - "engines": { - "node": "*" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/hoist-non-react-statics/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/hosted-git-info/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/hotkeys-js": { - "version": "3.9.4", - "resolved": "https://registry.npmjs.org/hotkeys-js/-/hotkeys-js-3.9.4.tgz", - "integrity": "sha512-2zuLt85Ta+gIyvs4N88pCYskNrxf1TFv3LR9t5mdAZIX8BcgQQ48F2opUptvHa6m8zsy5v/a0i9mWzTrlNWU0Q==" - }, - "node_modules/html-element-map": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", - "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", - "dependencies": { - "array.prototype.filter": "^1.0.0", - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/html-tags": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", - "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/html2canvas": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", - "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", - "optional": true, - "dependencies": { - "css-line-break": "^2.1.0", - "text-segmentation": "^1.0.3" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/htmlparser2": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" - } - }, - "node_modules/husky": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", - "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", - "dev": true, - "bin": { - "husky": "lib/bin.js" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/imagesloaded": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/imagesloaded/-/imagesloaded-4.1.4.tgz", - "integrity": "sha512-ltiBVcYpc/TYTF5nolkMNsnREHW+ICvfQ3Yla2Sgr71YFwQ86bDwV9hgpFhFtrGPuwEx5+LqOHIrdXBdoWwwsA==", - "dependencies": { - "ev-emitter": "^1.0.0" - } - }, - "node_modules/immer": { - "version": "9.0.21", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", - "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" - } - }, - "node_modules/immutable": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz", - "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==", - "dev": true - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-alphabetical": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", - "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-alphanumerical": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", - "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", - "dependencies": { - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-decimal": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", - "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-hexadecimal": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", - "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-subset": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", - "integrity": "sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==" - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" - } - }, - "node_modules/javascript-time-ago": { - "version": "2.5.9", - "resolved": "https://registry.npmjs.org/javascript-time-ago/-/javascript-time-ago-2.5.9.tgz", - "integrity": "sha512-pQ8mNco/9g9TqWXWWjP0EWl6i/lAQScOyEeXy5AB+f7MfLSdgyV9BJhiOD1zrIac/lrxPYOWNbyl/IW8CW5n0A==", - "dependencies": { - "relative-time-format": "^1.1.6" - } - }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "peer": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/js-base64": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz", - "integrity": "sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema-compare": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz", - "integrity": "sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==", - "dependencies": { - "lodash": "^4.17.4" - } - }, - "node_modules/json-schema-merge-allof": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.8.1.tgz", - "integrity": "sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==", - "dependencies": { - "compute-lcm": "^1.1.2", - "json-schema-compare": "^0.2.2", - "lodash": "^4.17.20" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonpointer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", - "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jspdf": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/jspdf/-/jspdf-2.5.1.tgz", - "integrity": "sha512-hXObxz7ZqoyhxET78+XR34Xu2qFGrJJ2I2bE5w4SM8eFaFEkW2xcGRVUss360fYelwRSid/jT078kbNvmoW0QA==", - "dependencies": { - "@babel/runtime": "^7.14.0", - "atob": "^2.1.2", - "btoa": "^1.2.1", - "fflate": "^0.4.8" - }, - "optionalDependencies": { - "canvg": "^3.0.6", - "core-js": "^3.6.0", - "dompurify": "^2.2.0", - "html2canvas": "^1.0.0-rc.5" - } - }, - "node_modules/jspdf-autotable": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/jspdf-autotable/-/jspdf-autotable-3.8.2.tgz", - "integrity": "sha512-zW1ix99/mtR4MbIni7IqvrpfHmuTaICl6iv6wqjRN86Nxtwaw/QtOeDbpXqYSzHIJK9JvgtLM283sc5x+ipkJg==", - "peerDependencies": { - "jspdf": "^2.5.1" - } - }, - "node_modules/jspdf/node_modules/dompurify": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.5.6.tgz", - "integrity": "sha512-zUTaUBO8pY4+iJMPE1B9XlO2tXVYIcEA4SNGtvDELzTSCQO7RzH+j7S180BmhmJId78lqGU2z19vgVx2Sxs/PQ==", - "optional": true - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/known-css-properties": { - "version": "0.26.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", - "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", - "dev": true - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "peer": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "node_modules/lodash.escape": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", - "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==" - }, - "node_modules/lodash.flattendeep": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.throttle": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lowlight": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz", - "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==", - "dependencies": { - "fault": "^1.0.0", - "highlight.js": "~10.7.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/markdown-to-jsx": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.4.2.tgz", - "integrity": "sha512-xgEwt13t+pM1kmE5vN0Ch64PX3tGDFt5Xa3e36sCknTnWiqPcnskWzIoaO/tGaPKOd0avCO0IwmBSmVxn/ZAcg==", - "engines": { - "node": ">= 10" - }, - "peerDependencies": { - "react": ">= 0.14.0" - } - }, - "node_modules/masonry-layout": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/masonry-layout/-/masonry-layout-4.2.2.tgz", - "integrity": "sha512-iGtAlrpHNyxaR19CvKC3npnEcAwszXoyJiI8ARV2ePi7fmYhIud25MHK8Zx4P0LCC4d3TNO9+rFa1KoK1OEOaA==", - "dependencies": { - "get-size": "^2.0.2", - "outlayer": "^2.1.0" - } - }, - "node_modules/mathml-tag-names": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", - "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/memoize-one": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", - "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" - }, - "node_modules/meow": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", - "dev": true, - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize": "^1.2.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "peer": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, - "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/moment": { - "version": "2.30.1", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", - "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", - "engines": { - "node": "*" - } - }, - "node_modules/monaco-editor": { - "version": "0.47.0", - "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.47.0.tgz", - "integrity": "sha512-VabVvHvQ9QmMwXu4du008ZDuyLnHs9j7ThVFsiJoXSOQk18+LF89N4ADzPbFenm0W4V2bGHnFBztIRQTgBfxzw==", - "peer": true - }, - "node_modules/moo": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", - "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/nearley": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", - "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", - "dependencies": { - "commander": "^2.19.0", - "moo": "^0.5.0", - "railroad-diagrams": "^1.0.0", - "randexp": "0.4.6" - }, - "bin": { - "nearley-railroad": "bin/nearley-railroad.js", - "nearley-test": "bin/nearley-test.js", - "nearley-unparse": "bin/nearley-unparse.js", - "nearleyc": "bin/nearleyc.js" - }, - "funding": { - "type": "individual", - "url": "https://nearley.js.org/#give-to-nearley" - } - }, - "node_modules/nearley/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - }, - "node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", - "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", - "dev": true, - "dependencies": { - "array.prototype.filter": "^1.0.3", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.0.0" - } - }, - "node_modules/object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/outlayer": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/outlayer/-/outlayer-2.1.1.tgz", - "integrity": "sha512-+GplXsCQ3VrbGujAeHEzP9SXsBmJxzn/YdDSQZL0xqBmAWBmortu2Y9Gwdp9J0bgDQ8/YNIPMoBM13nTwZfAhw==", - "dependencies": { - "ev-emitter": "^1.0.0", - "fizzy-ui-utils": "^2.0.0", - "get-size": "^2.0.2" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/papaparse": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", - "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==" - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", - "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", - "dependencies": { - "character-entities": "^1.0.0", - "character-entities-legacy": "^1.0.0", - "character-reference-invalid": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-hexadecimal": "^1.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/parse-github-url": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz", - "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==", - "dev": true, - "bin": { - "parse-github-url": "cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", - "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", - "dependencies": { - "domhandler": "^5.0.2", - "parse5": "^7.0.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/postcss": { - "version": "8.4.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", - "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-combine-duplicated-selectors": { - "version": "10.0.3", - "resolved": "https://registry.npmjs.org/postcss-combine-duplicated-selectors/-/postcss-combine-duplicated-selectors-10.0.3.tgz", - "integrity": "sha512-IP0BmwFloCskv7DV7xqvzDXqMHpwdczJa6ZvIW8abgHdcIHs9mCJX2ltFhu3EwA51ozp13DByng30+Ke+eIExA==", - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-media-query-parser": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", - "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", - "dev": true - }, - "node_modules/postcss-resolve-nested-selector": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", - "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", - "dev": true - }, - "node_modules/postcss-safe-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", - "dev": true, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } - }, - "node_modules/postcss-scss": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", - "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss-scss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "engines": { - "node": ">=12.0" - }, - "peerDependencies": { - "postcss": "^8.4.29" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.15", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", - "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-sorting": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-7.0.1.tgz", - "integrity": "sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==", - "dev": true, - "peerDependencies": { - "postcss": "^8.3.9" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz", - "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", - "dev": true, - "dependencies": { - "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/prismjs": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", - "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/promise": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", - "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", - "dependencies": { - "asap": "~2.0.6" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/prop-types-extra": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", - "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", - "dependencies": { - "react-is": "^16.3.2", - "warning": "^4.0.0" - }, - "peerDependencies": { - "react": ">=0.14.0" - } - }, - "node_modules/prop-types-extra/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/property-information": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", - "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", - "dependencies": { - "xtend": "^4.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/raf": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "dependencies": { - "performance-now": "^2.1.0" - } - }, - "node_modules/railroad-diagrams": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", - "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" - }, - "node_modules/randexp": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", - "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", - "dependencies": { - "discontinuous-range": "1.0.0", - "ret": "~0.1.10" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "peer": true, - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-app-polyfill": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", - "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", - "dependencies": { - "core-js": "^3.6.5", - "object-assign": "^4.1.1", - "promise": "^8.1.0", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.7", - "whatwg-fetch": "^3.4.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/react-app-polyfill/node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "node_modules/react-bootstrap": { - "version": "1.6.8", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-1.6.8.tgz", - "integrity": "sha512-yD6uN78XlFOkETQp6GRuVe0s5509x3XYx8PfPbirwFTYCj5/RfmSs9YZGCwkUrhZNFzj7tZPdpb+3k50mK1E4g==", - "dependencies": { - "@babel/runtime": "^7.14.0", - "@restart/context": "^2.1.4", - "@restart/hooks": "^0.4.7", - "@types/invariant": "^2.2.33", - "@types/prop-types": "^15.7.3", - "@types/react": ">=16.14.8", - "@types/react-transition-group": "^4.4.1", - "@types/warning": "^3.0.0", - "classnames": "^2.3.1", - "dom-helpers": "^5.2.1", - "invariant": "^2.2.4", - "prop-types": "^15.7.2", - "prop-types-extra": "^1.1.0", - "react-overlays": "^5.1.2", - "react-transition-group": "^4.4.1", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/react-circular-progressbar": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/react-circular-progressbar/-/react-circular-progressbar-2.1.0.tgz", - "integrity": "sha512-xp4THTrod4aLpGy68FX/k1Q3nzrfHUjUe5v6FsdwXBl3YVMwgeXYQKDrku7n/D6qsJA9CuunarAboC2xCiKs1g==", - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-copy-to-clipboard": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz", - "integrity": "sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==", - "dependencies": { - "copy-to-clipboard": "^3.3.1", - "prop-types": "^15.8.1" - }, - "peerDependencies": { - "react": "^15.3.0 || 16 || 17 || 18" - } - }, - "node_modules/react-data-table-component": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/react-data-table-component/-/react-data-table-component-7.6.2.tgz", - "integrity": "sha512-nHe7040fmtrJyQr/ieGrTfV0jBflYGK4sLokC6/AFOv3ThjmA9WzKz8Z8/2wMxzRqLU+Rn0CVFg+8+frKLepWQ==", - "dependencies": { - "deepmerge": "^4.3.1" - }, - "peerDependencies": { - "react": ">= 16.8.3", - "styled-components": ">= 5.0.0" - }, - "peerDependenciesMeta": { - "styled-components": { - "optional": false - } - } - }, - "node_modules/react-datepicker": { - "version": "4.25.0", - "resolved": "https://registry.npmjs.org/react-datepicker/-/react-datepicker-4.25.0.tgz", - "integrity": "sha512-zB7CSi44SJ0sqo8hUQ3BF1saE/knn7u25qEMTO1CQGofY1VAKahO8k9drZtp0cfW1DMfoYLR3uSY1/uMvbEzbg==", - "dependencies": { - "@popperjs/core": "^2.11.8", - "classnames": "^2.2.6", - "date-fns": "^2.30.0", - "prop-types": "^15.7.2", - "react-onclickoutside": "^6.13.0", - "react-popper": "^2.3.0" - }, - "peerDependencies": { - "react": "^16.9.0 || ^17 || ^18", - "react-dom": "^16.9.0 || ^17 || ^18" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-dropzone": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/react-dropzone/-/react-dropzone-14.2.3.tgz", - "integrity": "sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==", - "dependencies": { - "attr-accept": "^2.2.2", - "file-selector": "^0.6.0", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">= 10.13" - }, - "peerDependencies": { - "react": ">= 16.8 || 18.0.0" - } - }, - "node_modules/react-fast-compare": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", - "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" - }, - "node_modules/react-final-form": { - "version": "6.5.9", - "resolved": "https://registry.npmjs.org/react-final-form/-/react-final-form-6.5.9.tgz", - "integrity": "sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==", - "dependencies": { - "@babel/runtime": "^7.15.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/final-form" - }, - "peerDependencies": { - "final-form": "^4.20.4", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-final-form-arrays": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/react-final-form-arrays/-/react-final-form-arrays-3.1.4.tgz", - "integrity": "sha512-siVFAolUAe29rMR6u8VwepoysUcUdh6MLV2OWnCtKpsPRUdT9VUgECjAPaVMAH2GROZNiVB9On1H9MMrm9gdpg==", - "dependencies": { - "@babel/runtime": "^7.19.4" - }, - "peerDependencies": { - "final-form": "^4.15.0", - "final-form-arrays": ">=1.0.4", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-final-form": "^6.2.1" - } - }, - "node_modules/react-final-form-listeners": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/react-final-form-listeners/-/react-final-form-listeners-1.0.3.tgz", - "integrity": "sha512-OrdCNxSS4JQS/EXD+R530kZKFqaPfa+WcXPgVro/h4BpaBDF/Ja+BtHyCzDezCIb5rWaGGdOJIj+tN2YdtvrXg==", - "dependencies": { - "@babel/runtime": "^7.12.5" - }, - "peerDependencies": { - "final-form": ">=4.0.0", - "prop-types": "^15.6.0", - "react": "^15.3.0 || ^16.0.0 || ^17.0.0", - "react-final-form": ">=3.0.0" - } - }, - "node_modules/react-helmet-async": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.3.0.tgz", - "integrity": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==", - "dependencies": { - "@babel/runtime": "^7.12.5", - "invariant": "^2.2.4", - "prop-types": "^15.7.2", - "react-fast-compare": "^3.2.0", - "shallowequal": "^1.1.0" - }, - "peerDependencies": { - "react": "^16.6.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-hotkeys-hook": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/react-hotkeys-hook/-/react-hotkeys-hook-3.4.7.tgz", - "integrity": "sha512-+bbPmhPAl6ns9VkXkNNyxlmCAIyDAcWbB76O4I0ntr3uWCRuIQf/aRLartUahe9chVMPj+OEzzfk3CQSjclUEQ==", - "dependencies": { - "hotkeys-js": "3.9.4" - }, - "peerDependencies": { - "react": ">=16.8.1", - "react-dom": ">=16.8.1" - } - }, - "node_modules/react-html-parser": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/react-html-parser/-/react-html-parser-2.0.2.tgz", - "integrity": "sha512-XeerLwCVjTs3njZcgCOeDUqLgNIt/t+6Jgi5/qPsO/krUWl76kWKXMeVs2LhY2gwM6X378DkhLjur0zUQdpz0g==", - "dependencies": { - "htmlparser2": "^3.9.0" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16.0.0-0" - } - }, - "node_modules/react-html-parser/node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - } - }, - "node_modules/react-html-parser/node_modules/dom-serializer/node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/react-html-parser/node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/react-html-parser/node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - }, - "node_modules/react-html-parser/node_modules/domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "dependencies": { - "domelementtype": "1" - } - }, - "node_modules/react-html-parser/node_modules/domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/react-html-parser/node_modules/entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" - }, - "node_modules/react-html-parser/node_modules/htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "dependencies": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - } - }, - "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-loading-skeleton": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/react-loading-skeleton/-/react-loading-skeleton-3.4.0.tgz", - "integrity": "sha512-1oJEBc9+wn7BbkQQk7YodlYEIjgeR+GrRjD+QXkVjwZN7LGIcAFHrx4NhT7UHGBxNY1+zax3c+Fo6XQM4R7CgA==", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/react-masonry-component": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/react-masonry-component/-/react-masonry-component-6.3.0.tgz", - "integrity": "sha512-4ZI78nxMfCpU5yQiS6Rup07Ju++YzcOGAyvbMcl2GfpZTw8GRwT548lkKr0PJarNicRV1qE2D/NiT26UPg1T7A==", - "dependencies": { - "create-react-class": "^15.6.2", - "element-resize-detector": "^1.1.9", - "imagesloaded": "^4.0.0", - "lodash": "^4.17.4", - "masonry-layout": "^4.2.0", - "prop-types": "^15.5.8" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0 || ^17.0.0" - } - }, - "node_modules/react-media-hook": { - "version": "0.4.9", - "resolved": "https://registry.npmjs.org/react-media-hook/-/react-media-hook-0.4.9.tgz", - "integrity": "sha512-FZr/2xA1+23vDJ1IZ794yLqMRRkBoCNOiJATdtTfB5GyVc5djf8FL2qEB/68pSkiNgHdHsmKknMSDr0sC4zBKQ==", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/react-onclickoutside": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/react-onclickoutside/-/react-onclickoutside-6.13.0.tgz", - "integrity": "sha512-ty8So6tcUpIb+ZE+1HAhbLROvAIJYyJe/1vRrrcmW+jLsaM+/powDRqxzo6hSh9CuRZGSL1Q8mvcF5WRD93a0A==", - "funding": { - "type": "individual", - "url": "https://github.com/Pomax/react-onclickoutside/blob/master/FUNDING.md" - }, - "peerDependencies": { - "react": "^15.5.x || ^16.x || ^17.x || ^18.x", - "react-dom": "^15.5.x || ^16.x || ^17.x || ^18.x" - } - }, - "node_modules/react-overlays": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/react-overlays/-/react-overlays-5.2.1.tgz", - "integrity": "sha512-GLLSOLWr21CqtJn8geSwQfoJufdt3mfdsnIiQswouuQ2MMPns+ihZklxvsTDKD3cR2tF8ELbi5xUsvqVhR6WvA==", - "dependencies": { - "@babel/runtime": "^7.13.8", - "@popperjs/core": "^2.11.6", - "@restart/hooks": "^0.4.7", - "@types/warning": "^3.0.0", - "dom-helpers": "^5.2.0", - "prop-types": "^15.7.2", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" - }, - "peerDependencies": { - "react": ">=16.3.0", - "react-dom": ">=16.3.0" - } - }, - "node_modules/react-papaparse": { - "version": "3.18.2", - "resolved": "https://registry.npmjs.org/react-papaparse/-/react-papaparse-3.18.2.tgz", - "integrity": "sha512-qDth1fWX198VQe7xpkSioK+7MqZc7TqLHCl7hGOz4KWL47AxrFhRjaZMphdX6z43TWCTUf+zhh7BYU2uSMVDkQ==", - "dependencies": { - "@types/papaparse": "^5.3.1", - "papaparse": "^5.3.1" - }, - "engines": { - "node": ">=8", - "npm": ">=5" - } - }, - "node_modules/react-popper": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "dependencies": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" - }, - "peerDependencies": { - "@popperjs/core": "^2.0.0", - "react": "^16.8.0 || ^17 || ^18", - "react-dom": "^16.8.0 || ^17 || ^18" - } - }, - "node_modules/react-redux": { - "version": "7.2.9", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", - "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", - "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "peerDependencies": { - "react": "^16.8.3 || ^17 || ^18" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/react-redux/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/react-refresh": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", - "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-router": { - "version": "6.22.3", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.22.3.tgz", - "integrity": "sha512-dr2eb3Mj5zK2YISHK++foM9w4eBnO23eKnZEDs7c880P6oKbrjz/Svg9+nxqtHQK+oMW4OtjZca0RqPglXxguQ==", - "dependencies": { - "@remix-run/router": "1.15.3" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "react": ">=16.8" - } - }, - "node_modules/react-router-dom": { - "version": "6.22.3", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.22.3.tgz", - "integrity": "sha512-7ZILI7HjcE+p31oQvwbokjk6OA/bnFxrhJ19n82Ex9Ph8fNAq+Hm/7KchpMGlTgWhUxRHMMCut+vEtNpWpowKw==", - "dependencies": { - "@remix-run/router": "1.15.3", - "react-router": "6.22.3" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" - } - }, - "node_modules/react-select": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.8.0.tgz", - "integrity": "sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==", - "dependencies": { - "@babel/runtime": "^7.12.0", - "@emotion/cache": "^11.4.0", - "@emotion/react": "^11.8.1", - "@floating-ui/dom": "^1.0.1", - "@types/react-transition-group": "^4.4.0", - "memoize-one": "^6.0.0", - "prop-types": "^15.6.0", - "react-transition-group": "^4.3.0", - "use-isomorphic-layout-effect": "^1.1.2" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-select-search": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/react-select-search/-/react-select-search-3.0.10.tgz", - "integrity": "sha512-K3Ww5HfOaoqgjNIZt++DMeSjWgu5T78d2xXt/hEa3ERLvEqfxBwXUML2E23goWGIUQBv2b+kGkb86YnOwH0hUw==", - "optionalDependencies": { - "fuse.js": "^6.6.0" - }, - "peerDependencies": { - "prop-types": "^15.8.1", - "react": "^18.0.1 || ^17.0.1 || ^16.14.0", - "react-dom": "^18.0.1 || ^17.0.1 || ^16.14.0" - } - }, - "node_modules/react-select-search/node_modules/fuse.js": { - "version": "6.6.2", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.6.2.tgz", - "integrity": "sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==", - "optional": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/react-syntax-highlighter": { - "version": "15.5.0", - "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz", - "integrity": "sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "highlight.js": "^10.4.1", - "lowlight": "^1.17.0", - "prismjs": "^1.27.0", - "refractor": "^3.6.0" - }, - "peerDependencies": { - "react": ">= 0.14.0" - } - }, - "node_modules/react-time-ago": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/react-time-ago/-/react-time-ago-7.3.1.tgz", - "integrity": "sha512-c6QKSRrnIhZiEbOa2PXdh1InNYpqX3wwXA0fuOFX4r/C2hdt5hNvjvKXbKbGWXAeumMi9DoS3oGPboEpgccnOQ==", - "dependencies": { - "memoize-one": "^6.0.0", - "prop-types": "^15.8.1", - "raf": "^3.4.1" - }, - "peerDependencies": { - "javascript-time-ago": "^2.3.7", - "react": ">=0.16.8", - "react-dom": ">=0.16.8" - } - }, - "node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "dev": true, - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, - "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/redux": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.1.1.tgz", - "integrity": "sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw==", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/redux-immutable-state-invariant": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/redux-immutable-state-invariant/-/redux-immutable-state-invariant-2.1.0.tgz", - "integrity": "sha512-3czbDKs35FwiBRsx/3KabUk5zSOoTXC+cgVofGkpBNv3jQcqIe5JrHcF5AmVt7B/4hyJ8MijBIpCJ8cife6yJg==", - "dev": true, - "dependencies": { - "invariant": "^2.1.0", - "json-stringify-safe": "^5.0.1" - } - }, - "node_modules/redux-persist": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz", - "integrity": "sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==", - "peerDependencies": { - "redux": ">4.0.0" - } - }, - "node_modules/redux-thunk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", - "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", - "peerDependencies": { - "redux": "^4" - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", - "integrity": "sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.0.0", - "get-intrinsic": "^1.2.3", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/refractor": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.6.0.tgz", - "integrity": "sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==", - "dependencies": { - "hastscript": "^6.0.0", - "parse-entities": "^2.0.0", - "prismjs": "~1.27.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/refractor/node_modules/prismjs": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.27.0.tgz", - "integrity": "sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/relative-time-format": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/relative-time-format/-/relative-time-format-1.1.6.tgz", - "integrity": "sha512-aCv3juQw4hT1/P/OrVltKWLlp15eW1GRcwP1XdxHrPdZE9MtgqFpegjnTjLhi2m2WI9MT/hQQtE+tjEWG1hgkQ==" - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/reselect": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", - "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rgbcolor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz", - "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==", - "optional": true, - "engines": { - "node": ">= 0.8.15" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.13.0.tgz", - "integrity": "sha512-3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg==", - "dev": true, - "dependencies": { - "@types/estree": "1.0.5" - }, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.13.0", - "@rollup/rollup-android-arm64": "4.13.0", - "@rollup/rollup-darwin-arm64": "4.13.0", - "@rollup/rollup-darwin-x64": "4.13.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.13.0", - "@rollup/rollup-linux-arm64-gnu": "4.13.0", - "@rollup/rollup-linux-arm64-musl": "4.13.0", - "@rollup/rollup-linux-riscv64-gnu": "4.13.0", - "@rollup/rollup-linux-x64-gnu": "4.13.0", - "@rollup/rollup-linux-x64-musl": "4.13.0", - "@rollup/rollup-win32-arm64-msvc": "4.13.0", - "@rollup/rollup-win32-ia32-msvc": "4.13.0", - "@rollup/rollup-win32-x64-msvc": "4.13.0", - "fsevents": "~2.3.2" - } - }, - "node_modules/rst-selector-parser": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", - "integrity": "sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==", - "dependencies": { - "lodash.flattendeep": "^4.4.0", - "nearley": "^2.7.10" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/sass": { - "version": "1.71.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.71.1.tgz", - "integrity": "sha512-wovtnV2PxzteLlfNzbgm1tFXPLoZILYAMJtvoXXkD7/+1uP41eKkIt1ypWq5/q2uT94qHjXehEYfmjKOvjL9sg==", - "dev": true, - "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/schema-utils/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "peer": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/schema-utils/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "peer": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/schema-utils/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "peer": true - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", - "peer": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/simplebar": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/simplebar/-/simplebar-5.3.9.tgz", - "integrity": "sha512-1vIIpjDvY9sVH14e0LGeiCiTFU3ILqAghzO6OI9axeG+mvU/vMSrvXeAXkBolqFFz3XYaY8n5ahH9MeP3sp2Ag==", - "dependencies": { - "@juggle/resize-observer": "^3.3.1", - "can-use-dom": "^0.1.0", - "core-js": "^3.0.1", - "lodash.debounce": "^4.0.8", - "lodash.memoize": "^4.1.2", - "lodash.throttle": "^4.1.1" - } - }, - "node_modules/simplebar-react": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/simplebar-react/-/simplebar-react-2.4.3.tgz", - "integrity": "sha512-Ep8gqAUZAS5IC2lT5RE4t1ZFUIVACqbrSRQvFV9a6NbVUzXzOMnc4P82Hl8Ak77AnPQvmgUwZS7aUKLyBoMAcg==", - "dependencies": { - "prop-types": "^15.6.1", - "simplebar": "^5.3.9" - }, - "peerDependencies": { - "react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0 || ^18.0.0", - "react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0 || ^17.0 || ^18.0.0" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-loader": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", - "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", - "dependencies": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "peer": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/space-separated-tokens": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", - "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", - "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", - "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", - "dev": true - }, - "node_modules/stackblur-canvas": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/stackblur-canvas/-/stackblur-canvas-2.7.0.tgz", - "integrity": "sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==", - "optional": true, - "engines": { - "node": ">=0.1.14" - } - }, - "node_modules/state-local": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz", - "integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==" - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", - "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "set-function-name": "^2.0.0", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/style-search": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", - "dev": true - }, - "node_modules/styled-components": { - "version": "5.3.11", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.11.tgz", - "integrity": "sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==", - "dependencies": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^1.1.0", - "@emotion/stylis": "^0.8.4", - "@emotion/unitless": "^0.7.4", - "babel-plugin-styled-components": ">= 1.12.0", - "css-to-react-native": "^3.0.0", - "hoist-non-react-statics": "^3.0.0", - "shallowequal": "^1.1.0", - "supports-color": "^5.5.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/styled-components" - }, - "peerDependencies": { - "react": ">= 16.8.0", - "react-dom": ">= 16.8.0", - "react-is": ">= 16.8.0" - } - }, - "node_modules/styled-components/node_modules/@emotion/unitless": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", - "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" - }, - "node_modules/stylelint": { - "version": "14.16.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", - "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", - "dev": true, - "dependencies": { - "@csstools/selector-specificity": "^2.0.2", - "balanced-match": "^2.0.0", - "colord": "^2.9.3", - "cosmiconfig": "^7.1.0", - "css-functions-list": "^3.1.0", - "debug": "^4.3.4", - "fast-glob": "^3.2.12", - "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^6.0.1", - "global-modules": "^2.0.0", - "globby": "^11.1.0", - "globjoin": "^0.1.4", - "html-tags": "^3.2.0", - "ignore": "^5.2.1", - "import-lazy": "^4.0.0", - "imurmurhash": "^0.1.4", - "is-plain-object": "^5.0.0", - "known-css-properties": "^0.26.0", - "mathml-tag-names": "^2.1.3", - "meow": "^9.0.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.19", - "postcss-media-query-parser": "^0.2.3", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0", - "resolve-from": "^5.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "style-search": "^0.1.0", - "supports-hyperlinks": "^2.3.0", - "svg-tags": "^1.0.0", - "table": "^6.8.1", - "v8-compile-cache": "^2.3.0", - "write-file-atomic": "^4.0.2" - }, - "bin": { - "stylelint": "bin/stylelint.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/stylelint" - } - }, - "node_modules/stylelint-config-sass-guidelines": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/stylelint-config-sass-guidelines/-/stylelint-config-sass-guidelines-9.0.1.tgz", - "integrity": "sha512-N06PsVsrgKijQ3YT5hqKA7x3NUkgELTRI1cbWMqcYiCGG6MjzvNk6Cb5YYA1PrvrksBV76BvY9P9bAswojVMqA==", - "dev": true, - "dependencies": { - "postcss-scss": "^4.0.2", - "stylelint-order": "^5.0.0", - "stylelint-scss": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "postcss": "^8.3.3", - "stylelint": "^14.0.1" - } - }, - "node_modules/stylelint-order": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-5.0.0.tgz", - "integrity": "sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==", - "dev": true, - "dependencies": { - "postcss": "^8.3.11", - "postcss-sorting": "^7.0.1" - }, - "peerDependencies": { - "stylelint": "^14.0.0" - } - }, - "node_modules/stylelint-scss": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", - "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", - "dev": true, - "dependencies": { - "postcss-media-query-parser": "^0.2.3", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0" - }, - "peerDependencies": { - "stylelint": "^14.5.1 || ^15.0.0" - } - }, - "node_modules/stylelint/node_modules/balanced-match": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", - "dev": true - }, - "node_modules/stylelint/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/stylis": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-hyperlinks": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-pathdata": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz", - "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==", - "optional": true, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", - "dev": true - }, - "node_modules/table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", - "dev": true, - "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/terser": { - "version": "5.29.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.29.1.tgz", - "integrity": "sha512-lZQ/fyaIGxsbGxApKmoPTODIzELy3++mXhS5hOqaAWZjQtpq/hFHAc+rm29NND1rYRxRWKcjuARNwULNXa5RtQ==", - "peer": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", - "peer": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "peer": true - }, - "node_modules/text-segmentation": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", - "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", - "optional": true, - "dependencies": { - "utrie": "^1.0.2" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "node_modules/trim-newlines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", - "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", - "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.5.tgz", - "integrity": "sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "dev": true, - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/uncontrollable": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", - "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", - "dependencies": { - "@babel/runtime": "^7.6.3", - "@types/react": ">=16.9.11", - "invariant": "^2.2.4", - "react-lifecycles-compat": "^3.0.4" - }, - "peerDependencies": { - "react": ">=15.0.0" - } - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/utrie": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", - "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", - "optional": true, - "dependencies": { - "base64-arraybuffer": "^1.0.2" - } - }, - "node_modules/v8-compile-cache": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", - "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", - "dev": true - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/validate.io-array": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz", - "integrity": "sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==" - }, - "node_modules/validate.io-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/validate.io-function/-/validate.io-function-1.0.2.tgz", - "integrity": "sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==" - }, - "node_modules/validate.io-integer": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/validate.io-integer/-/validate.io-integer-1.0.5.tgz", - "integrity": "sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==", - "dependencies": { - "validate.io-number": "^1.0.3" - } - }, - "node_modules/validate.io-integer-array": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/validate.io-integer-array/-/validate.io-integer-array-1.0.0.tgz", - "integrity": "sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==", - "dependencies": { - "validate.io-array": "^1.0.3", - "validate.io-integer": "^1.0.4" - } - }, - "node_modules/validate.io-number": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/validate.io-number/-/validate.io-number-1.0.3.tgz", - "integrity": "sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==" - }, - "node_modules/vite": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.1.6.tgz", - "integrity": "sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==", - "dev": true, - "dependencies": { - "esbuild": "^0.19.3", - "postcss": "^8.4.35", - "rollup": "^4.2.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-plugin-eslint": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/vite-plugin-eslint/-/vite-plugin-eslint-1.8.1.tgz", - "integrity": "sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^4.2.1", - "@types/eslint": "^8.4.5", - "rollup": "^2.77.2" - }, - "peerDependencies": { - "eslint": ">=7", - "vite": ">=2" - } - }, - "node_modules/vite-plugin-eslint/node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "peer": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "node_modules/webpack": { - "version": "5.90.3", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.3.tgz", - "integrity": "sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==", - "peer": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.21.10", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "peer": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "peer": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/webpack/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "peer": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/whatwg-fetch": { - "version": "3.6.20", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", - "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", - "dev": true, - "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", - "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", - "dev": true, - "dependencies": { - "is-map": "^2.0.3", - "is-set": "^2.0.3", - "is-weakmap": "^2.0.2", - "is-weakset": "^2.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} diff --git a/package.json b/package.json index a8a975f0c44c..017f58232049 100644 --- a/package.json +++ b/package.json @@ -1,100 +1,114 @@ { "name": "cipp", +<<<<<<< HEAD "version": "6.4.1", "description": "The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners.", +======= + "version": "7.0.0", + "author": "CIPP Contributors", +>>>>>>> fceac3a966cf35825ceb2e2e9ba0d3e26dac40b5 "homepage": "https://cipp.app/", "bugs": { "url": "https://github.com/KelvinTegelaar/CIPP/issues" }, + "engines": { + "node": "^18.17.0" + }, "repository": { "type": "git", "url": "git@github.com:KelvinTegelaar/CIPP.git" }, - "type": "module", - "license": "AGPL-3.0", - "author": "CIPP Contributors", "scripts": { - "prebuild": "node Generate-Import-Map.js", - "build": "echo react-scripts build && vite build", - "changelog": "auto-changelog --starting-version 3.0.0 --commit-limit false --hide-credit", - "lint": "eslint \"src/**/*.js\"", - "start": "vite", - "start-swa": "swa start --swa-config-location .vscode http://127.0.0.1:3000 --api-location http://127.0.0.1:7071", - "prepare": "husky install", - "preview": "vite preview" - }, - "config": { - "coreui_library_short_version": "4.1" + "dev": "next -H 127.0.0.1", + "build": "next build && next export", + "start": "next start", + "export": "next export", + "lint": "next lint", + "lint-fix": "next lint --fix", + "start-swa": "swa start --swa-config-location .vscode http://127.0.0.1:3000 --api-location http://127.0.0.1:7071 --verbose=silly" }, "dependencies": { - "@coreui/chartjs": "^3.0.0", - "@coreui/coreui": "^4.3.0", - "@coreui/react": "^4.11.0", - "@coreui/react-chartjs": "^2.1.3", - "@coreui/utils": "^1.3.1", - "@fortawesome/fontawesome-svg-core": "^6.5.1", - "@fortawesome/free-brands-svg-icons": "^6.5.1", - "@fortawesome/free-regular-svg-icons": "^6.5.1", - "@fortawesome/free-solid-svg-icons": "^6.5.1", - "@fortawesome/react-fontawesome": "^0.2.0", - "@monaco-editor/react": "^4.5.2", - "@popperjs/core": "^2.10.2", - "@reduxjs/toolkit": "^1.9.7", - "@rjsf/bootstrap-4": "^5.12.1", - "@rjsf/core": "^5.12.1", - "@rjsf/utils": "^5.12.1", - "@rjsf/validator-ajv8": "^5.12.1", - "@uiw/react-json-view": "^2.0.0-alpha.23", - "axios": "^1.6.2", - "buffer": "^6.0.3", - "chart.js": "^3.5.1", - "classnames": "^2.3.1", - "core-js": "^3.18.3", - "dompurify": "^3.1.6", - "eml-parse-js": "^1.1.14", - "enzyme": "^3.11.0", - "final-form": "^4.20.4", - "final-form-arrays": "^3.1.0", - "fuse.js": "^7.0.0", - "fuzzysort": "^1.1.4", - "javascript-time-ago": "^2.5.9", - "jspdf": "^2.4.0", - "jspdf-autotable": "^3.5.23", - "lodash-es": "^4.17.21", - "moment": "^2.29.1", - "prop-types": "^15.7.2", - "react": "^18.2.0", - "react-app-polyfill": "^2.0.0", - "react-bootstrap": "^1.6.5", - "react-circular-progressbar": "^2.1.0", + "@emotion/cache": "11.10.5", + "@emotion/react": "11.13.3", + "@emotion/server": "11.10.0", + "@emotion/styled": "11.13.0", + "@heroicons/react": "2.0.15", + "@monaco-editor/react": "^4.6.0", + "@mui/icons-material": "6.1.6", + "@mui/lab": "6.0.0-beta.14", + "@mui/material": "6.1.6", + "@mui/system": "6.1.6", + "@mui/x-date-pickers": "7.22.1", + "@musement/iso-duration": "^1.0.0", + "@react-pdf/renderer": "3.1.2", + "@reduxjs/toolkit": "1.9.2", + "@tanstack/react-query": "^5.51.11", + "@tanstack/react-query-devtools": "^5.51.11", + "@tanstack/react-table": "^8.19.2", + "@tiptap/core": "^2.9.1", + "@tiptap/extension-heading": "^2.9.1", + "@tiptap/extension-image": "^2.9.1", + "@tiptap/extension-table": "^2.9.1", + "@tiptap/pm": "^2.9.1", + "@tiptap/react": "^2.9.1", + "@tiptap/starter-kit": "^2.9.1", + "@uiw/react-json-view": "^2.0.0-alpha.30", + "apexcharts": "3.36.3", + "axios": "^1.7.2", + "date-fns": "2.29.3", + "eml-parse-js": "^1.1.15", + "export-to-csv": "^1.3.0", + "formik": "2.2.9", + "gray-matter": "4.0.3", + "i18next": "22.4.9", + "javascript-time-ago": "^2.5.11", + "jspdf": "^2.5.1", + "jspdf-autotable": "^3.8.2", + "leaflet": "^1.9.4", + "leaflet-defaulticon-compatibility": "^0.1.2", + "leaflet.markercluster": "^1.5.3", + "lodash.isequal": "4.5.0", + "material-react-table": "^3.0.1", + "monaco-editor": "^0.52.0", + "mui-tiptap": "^1.14.0", + "next": "^13.5.6", + "nprogress": "0.2.0", + "numeral": "2.0.6", + "prop-types": "15.8.1", + "react": "18.2.0", + "react-apexcharts": "1.4.0", + "react-beautiful-dnd": "13.1.1", "react-copy-to-clipboard": "^5.1.0", - "react-data-table-component": "^7.4.5", - "react-datepicker": "^4.10.0", - "react-dom": "^18.2.0", - "react-dropzone": "^14.2.3", - "react-final-form": "^6.5.9", - "react-final-form-arrays": "^3.1.4", - "react-final-form-listeners": "^1.0.3", - "react-helmet-async": "^1.3.0", - "react-hotkeys-hook": "^3.4.4", + "react-dom": "18.2.0", + "react-dropzone": "14.2.3", + "react-error-boundary": "^4.0.13", + "react-grid-layout": "^1.5.0", + "react-hook-form": "^7.53.0", + "react-hot-toast": "2.4.0", "react-html-parser": "^2.0.2", - "react-loading-skeleton": "^3.1.0", - "react-masonry-component": "^6.3.0", - "react-media-hook": "^0.4.9", - "react-papaparse": "^3.18.2", - "react-redux": "^7.2.5", - "react-router-dom": "^6.1.1", - "react-select": "^5.3.0", - "react-select-search": "^3.0.8", - "react-syntax-highlighter": "^15.4.5", - "react-time-ago": "^7.2.1", - "redux": "4.1.1", + "react-i18next": "12.1.4", + "react-leaflet": "4.2.1", + "react-leaflet-markercluster": "^4.2.1", + "react-markdown": "8.0.5", + "react-media-hook": "^0.5.0", + "react-papaparse": "^4.4.0", + "react-quill": "^0.0.2", + "react-redux": "8.0.5", + "react-syntax-highlighter": "^15.6.1", + "react-time-ago": "^7.3.3", + "react-window": "^1.8.10", + "redux": "4.2.1", + "redux-devtools-extension": "2.13.9", "redux-persist": "^6.0.0", - "simplebar-react": "^2.3.6", - "source-map-loader": "^3.0.0", - "styled-components": "^5.3.11" + "redux-thunk": "2.4.2", + "simplebar": "6.2.0", + "simplebar-react": "3.2.0", + "stylis-plugin-rtl": "2.1.1", + "typescript": "4.9.4", + "yup": "0.32.11" }, "devDependencies": { +<<<<<<< HEAD "@types/react": "^18.2.39", "@types/react-helmet": "^6.1.5", "@vitejs/plugin-react": "^4.2.1", @@ -126,5 +140,10 @@ "overrides": { "react": "^18.2.0", "react-dom": "^18.2.0" +======= + "@svgr/webpack": "6.5.1", + "eslint": "8.32.0", + "eslint-config-next": "13.1.6" +>>>>>>> fceac3a966cf35825ceb2e2e9ba0d3e26dac40b5 } } diff --git a/public/GDAPRoles.json b/public/GDAPRoles.json deleted file mode 100644 index bf14e31159e5..000000000000 --- a/public/GDAPRoles.json +++ /dev/null @@ -1,722 +0,0 @@ -[ - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of app registrations and enterprise apps.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Application Administrator", - "ObjectId": "9b895d92-2cd3-44c7-9d02-a6ac2d5ea5c3" - }, - { - "ExtensionData": {}, - "Description": "Can create application registrations independent of the \u0027Users can register applications\u0027 setting.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Application Developer", - "ObjectId": "cf1c38e5-3621-4004-a7cb-879624dced7c" - }, - { - "ExtensionData": {}, - "Description": "Can create attack payloads that an administrator can initiate later.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attack Payload Author", - "ObjectId": "9c6df0f2-1e7c-4dc3-b195-66dfbd24aa8f" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of attack simulation campaigns.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attack Simulation Administrator", - "ObjectId": "c430b396-e693-46cc-96f3-db01bf8bb62a" - }, - { - "ExtensionData": {}, - "Description": "Assign custom security attribute keys and values to supported Azure AD objects.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Assignment Administrator", - "ObjectId": "58a13ea3-c632-46ae-9ee0-9c0d43cd7f3d" - }, - { - "ExtensionData": {}, - "Description": "Read custom security attribute keys and values for supported Azure AD objects.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Assignment Reader", - "ObjectId": "ffd52fa5-98dc-465c-991d-fc073eb59f8f" - }, - { - "ExtensionData": {}, - "Description": "Define and manage the definition of custom security attributes.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Definition Administrator", - "ObjectId": "8424c6f0-a189-499e-bbd0-26c1753c96d4" - }, - { - "ExtensionData": {}, - "Description": "Read the definition of custom security attributes.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Attribute Definition Reader", - "ObjectId": "1d336d2c-4ae8-42ef-9711-b3604ce3fc2c" - }, - { - "ExtensionData": {}, - "Description": "Allowed to view, set and reset authentication method information for any non-admin user.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Authentication Administrator", - "ObjectId": "c4e39bd9-1100-46d3-8c65-fb160da0071f" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the authentication methods policy, tenant-wide MFA settings, password protection policy, and verifiable credentials.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Authentication Policy Administrator", - "ObjectId": "0526716b-113d-4c15-b2c8-68e3c22b9f80" - }, - { - "ExtensionData": {}, - "Description": "Users assigned to this role are added to the local administrators group on Azure AD-joined devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure AD Joined Device Local Administrator", - "ObjectId": "9f06204d-73c1-4d4c-880a-6edb90606fd8" - }, - { - "ExtensionData": {}, - "Description": "Can manage Azure DevOps organization policy and settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure DevOps Administrator", - "ObjectId": "e3973bdf-4987-49ae-837a-ba8e231c7286" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Azure Information Protection product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Azure Information Protection Administrator", - "ObjectId": "7495fdc4-34c4-4d15-a289-98788ce399fd" - }, - { - "ExtensionData": {}, - "Description": "Can manage secrets for federation and encryption in the Identity Experience Framework (IEF).", - "IsEnabled": true, - "IsSystem": true, - "Name": "B2C IEF Keyset Administrator", - "ObjectId": "aaf43236-0c0d-4d5f-883a-6955382ac081" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage trust framework policies in the Identity Experience Framework (IEF).", - "IsEnabled": true, - "IsSystem": true, - "Name": "B2C IEF Policy Administrator", - "ObjectId": "3edaf663-341e-4475-9f94-5c398ef6c070" - }, - { - "ExtensionData": {}, - "Description": "Can perform common billing related tasks like updating payment information.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Billing Administrator", - "ObjectId": "b0f54661-2d74-4c50-afa3-1ec803f12efe" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Cloud App Security product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud App Security Administrator", - "ObjectId": "892c5842-a9a6-463a-8041-72aa08ca3cf6" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of app registrations and enterprise apps except App Proxy.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud Application Administrator", - "ObjectId": "158c047a-c907-4556-b7ef-446551a6b5f7" - }, - { - "ExtensionData": {}, - "Description": "Full access to manage devices in Azure AD.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Cloud Device Administrator", - "ObjectId": "7698a772-787b-4ac8-901f-60d6b08affd2" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of Azure AD and Microsoft services that use Azure AD identities. This role was formerly known as Global Administrator.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Company Administrator", - "ObjectId": "62e90394-69f5-4237-9190-012177145e10" - }, - { - "ExtensionData": {}, - "Description": "Can read and manage compliance configuration and reports in Azure AD and Microsoft 365.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Compliance Administrator", - "ObjectId": "17315797-102d-40b4-93e0-432062caca18" - }, - { - "ExtensionData": {}, - "Description": "Creates and manages compliance content.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Compliance Data Administrator", - "ObjectId": "e6d1a23a-da11-4be4-9570-befc86d067a7" - }, - { - "ExtensionData": {}, - "Description": "Can manage Conditional Access capabilities.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Conditional Access Administrator", - "ObjectId": "b1be1c3e-b65d-4f19-8427-f6fa0d97feb9" - }, - { - "ExtensionData": {}, - "Description": "Can approve Microsoft support requests to access customer organizational data.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Customer LockBox Access Approver", - "ObjectId": "5c4f9dcd-47dc-4cf7-8c9a-9e4207cbfc91" - }, - { - "ExtensionData": {}, - "Description": "Can access and manage Desktop management tools and services.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Desktop Analytics Administrator", - "ObjectId": "38a96431-2bdf-4b4c-8b6e-5d3d8abac1a4" - }, - { - "ExtensionData": {}, - "Description": "Device Join", - "IsEnabled": true, - "IsSystem": true, - "Name": "Device Join", - "ObjectId": "9c094953-4995-41c8-84c8-3ebb9b32c93f" - }, - { - "ExtensionData": {}, - "Description": "Device Users", - "IsEnabled": true, - "IsSystem": true, - "Name": "Device Users", - "ObjectId": "d405c6df-0af8-4e3b-95e4-4d06e542189e" - }, - { - "ExtensionData": {}, - "Description": "Can read basic directory information. Commonly used to grant directory read access to applications and guests.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Readers", - "ObjectId": "88d8e3e3-8f55-4a1e-953a-9b9898b8876b" - }, - { - "ExtensionData": {}, - "Description": "Only used by Azure AD Connect service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Synchronization Accounts", - "ObjectId": "d29b2b05-8046-44ba-8758-1e26182fcf32" - }, - { - "ExtensionData": {}, - "Description": "Can read and write basic directory information. For granting access to applications, not intended for users.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Directory Writers", - "ObjectId": "9360feb5-f418-4baa-8175-e2a00bac4301" - }, - { - "ExtensionData": {}, - "Description": "Can manage domain names in cloud and on-premises.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Domain Name Administrator", - "ObjectId": "8329153b-31d0-4727-b945-745eb3bc5f31" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Dynamics 365 product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Dynamics 365 Administrator", - "ObjectId": "44367163-eba1-44c3-98af-f5787879f96a" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Microsoft Edge.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Edge Administrator", - "ObjectId": "3f1acade-1e04-4fbc-9b69-f0302cd84aef" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Exchange product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Exchange Administrator", - "ObjectId": "29232cdf-9323-42fd-ade2-1d097af3e4de" - }, - { - "ExtensionData": {}, - "Description": "Can create or update Exchange Online recipients within the Exchange Online organization.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Exchange Recipient Administrator", - "ObjectId": "31392ffb-586c-42d1-9346-e59415a2cc4e" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of user flows.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External ID User Flow Administrator", - "ObjectId": "6e591065-9bad-43ed-90f3-e9424366d2f0" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the attribute schema available to all user flows.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External ID User Flow Attribute Administrator", - "ObjectId": "0f971eea-41eb-4569-a71e-57bb8a3eff1e" - }, - { - "ExtensionData": {}, - "Description": "Can configure identity providers for use in direct federation.", - "IsEnabled": true, - "IsSystem": true, - "Name": "External Identity Provider Administrator", - "ObjectId": "be2f45a1-457d-42af-a067-6ec1fa63bc45" - }, - { - "ExtensionData": {}, - "Description": "Can read everything that a Global Administrator can, but not update anything.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Global Reader", - "ObjectId": "f2ef992c-3afb-46b9-b7cf-a126ee74c451" - }, - { - "ExtensionData": {}, - "Description": "Members of this role can create/manage groups, create/manage groups settings like naming and expiration policies, and view groups activity and audit reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Groups Administrator", - "ObjectId": "fdd7a751-b60b-444a-984c-02652fe8fa1c" - }, - { - "ExtensionData": {}, - "Description": "Can invite guest users independent of the \u0027members can invite guests\u0027 setting.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Guest Inviter", - "ObjectId": "95e79109-95c0-4d8e-aee3-d01accf2d47b" - }, - { - "ExtensionData": {}, - "Description": "Can reset passwords for non-administrators and Helpdesk Administrators.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Helpdesk Administrator", - "ObjectId": "729827e3-9c14-49f7-bb1b-9608f156bbb8" - }, - { - "ExtensionData": {}, - "Description": "Can manage AD to Azure AD cloud provisioning, Azure AD Connect, and federation settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Hybrid Identity Administrator", - "ObjectId": "8ac3fc64-6eca-42ea-9e69-59f4c7b60eb2" - }, - { - "ExtensionData": {}, - "Description": "Manage access using Azure AD for identity governance scenarios.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Identity Governance Administrator", - "ObjectId": "45d8d3c5-c802-45c6-b32a-1d70b5e1e86e" - }, - { - "ExtensionData": {}, - "Description": "Has administrative access in the Microsoft 365 Insights app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Administrator", - "ObjectId": "eb1f4a8d-243a-41f0-9fbd-c7cdf6c5ef7c" - }, - { - "ExtensionData": {}, - "Description": "Access the analytical capabilities in Microsoft Viva Insights and run custom queries.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Analyst", - "ObjectId": "25df335f-86eb-4119-b717-0ff02de207e9" - }, - { - "ExtensionData": {}, - "Description": "Can view and share dashboards and insights via the M365 Insights app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Insights Business Leader", - "ObjectId": "31e939ad-9672-4796-9c2e-873181342d2d" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Intune product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Intune Administrator", - "ObjectId": "3a2c62db-5318-420d-8d74-23affee5d9d5" - }, - { - "ExtensionData": {}, - "Description": "Can manage settings for Microsoft Kaizala.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Kaizala Administrator", - "ObjectId": "74ef975b-6605-40af-a5d2-b9539d836353" - }, - { - "ExtensionData": {}, - "Description": "Can configure knowledge, learning, and other intelligent features.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Knowledge Administrator", - "ObjectId": "b5a8dcf3-09d5-43a9-a639-8e29ef291470" - }, - { - "ExtensionData": {}, - "Description": "Has access to topic management dashboard and can manage content.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Knowledge Manager", - "ObjectId": "744ec460-397e-42ad-a462-8b3f9747a02c" - }, - { - "ExtensionData": {}, - "Description": "Can manage product licenses on users and groups.", - "IsEnabled": true, - "IsSystem": true, - "Name": "License Administrator", - "ObjectId": "4d6ac14f-3453-41d0-bef9-a3e0c569773a" - }, - { - "ExtensionData": {}, - "Description": "Create and manage all aspects of workflows and tasks associated with Lifecycle Workflows in Azure AD.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Lifecycle Workflows Administrator", - "ObjectId": "59d46f88-662b-457b-bceb-5c3809e5908f" - }, - { - "ExtensionData": {}, - "Description": "Can read security messages and updates in Office 365 Message Center only.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Message Center Privacy Reader", - "ObjectId": "ac16e43d-7b2d-40e0-ac05-243ff356ab5b" - }, - { - "ExtensionData": {}, - "Description": "Can read messages and updates for their organization in Office 365 Message Center only.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Message Center Reader", - "ObjectId": "790c1fb9-7f7d-4f88-86a1-ef1f95c05c1b" - }, - { - "ExtensionData": {}, - "Description": "Can manage network locations and review enterprise network design insights for Microsoft 365 Software as a Service applications.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Network Administrator", - "ObjectId": "d37c8bed-0711-4417-ba38-b4abe66ce4c2" - }, - { - "ExtensionData": {}, - "Description": "Can manage Office apps cloud services, including policy and settings management, and manage the ability to select, unselect and publish \u0027what\u0027s new\u0027 feature content to end-user\u0027s devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Office Apps Administrator", - "ObjectId": "2b745bdf-0803-4d80-aa65-822c4493daac" - }, - { - "ExtensionData": {}, - "Description": "Do not use - not intended for general use.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Partner Tier1 Support", - "ObjectId": "4ba39ca4-527c-499a-b93d-d9b492c50246" - }, - { - "ExtensionData": {}, - "Description": "Do not use - not intended for general use.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Partner Tier2 Support", - "ObjectId": "e00e864a-17c5-4a4b-9c06-f5b95a8d5bd8" - }, - { - "ExtensionData": {}, - "Description": "Can reset passwords for non-administrators and Password Administrators.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Password Administrator", - "ObjectId": "966707d0-3269-4727-9be2-8c3a10f19b9d" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Entra Permissions Management.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Permissions Management Administrator", - "ObjectId": "af78dc32-cf4d-46f9-ba4e-4428526346b5" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Power BI product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Power BI Administrator", - "ObjectId": "a9ea8996-122f-4c74-9520-8edcd192826c" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Microsoft Dynamics 365, PowerApps and Microsoft Flow.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Power Platform Administrator", - "ObjectId": "11648597-926c-4cf3-9c36-bcebb0ba8dcc" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of printers and printer connectors.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Printer Administrator", - "ObjectId": "644ef478-e28f-4e28-b9dc-3fdde9aa0b1f" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of printers and printer connectors.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Printer Technician", - "ObjectId": "e8cef6f1-e4bd-4ea8-bc07-4b8d950f4477" - }, - { - "ExtensionData": {}, - "Description": "Allowed to view, set and reset authentication method information for any user (admin or non-admin).", - "IsEnabled": true, - "IsSystem": true, - "Name": "Privileged Authentication Administrator", - "ObjectId": "7be44c8a-adaf-4e2a-84d6-ab2649e08a13" - }, - { - "ExtensionData": {}, - "Description": "Can manage role assignments in Azure AD, and all aspects of Privileged Identity Management.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Privileged Role Administrator", - "ObjectId": "e8611ab8-c189-46e8-94e1-60213ab1f814" - }, - { - "ExtensionData": {}, - "Description": "Can read sign-in and audit reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Reports Reader", - "ObjectId": "4a5d8f65-41da-4de4-8968-e035b65339cf" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Microsoft Search settings.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Search Administrator", - "ObjectId": "0964bb5e-9bdb-4d7b-ac29-58e794862a40" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage the editorial content such as bookmarks, Q and As, locations, floorplan.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Search Editor", - "ObjectId": "8835291a-918c-4fd7-a9ce-faa49f0cf7d9" - }, - { - "ExtensionData": {}, - "Description": "Security Administrator allows ability to read and manage security configuration and reports.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Administrator", - "ObjectId": "194ae4cb-b126-40b2-bd5b-6091b380977d" - }, - { - "ExtensionData": {}, - "Description": "Creates and manages security events.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Operator", - "ObjectId": "5f2222b1-57c3-48ba-8ad5-d4759f1fde6f" - }, - { - "ExtensionData": {}, - "Description": "Can read security information and reports in Azure AD and Office 365.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Security Reader", - "ObjectId": "5d6b6bb7-de71-4623-b4af-96380a352509" - }, - { - "ExtensionData": {}, - "Description": "Can read service health information and manage support tickets.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Service Support Administrator", - "ObjectId": "f023fd81-a637-4b56-95fd-791ac0226033" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the SharePoint service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "SharePoint Administrator", - "ObjectId": "f28a1f50-f6e7-4571-818b-6a12f2af6b6c" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of the Skype for Business product.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Skype for Business Administrator", - "ObjectId": "75941009-915a-4869-abe7-691bff18279e" - }, - { - "ExtensionData": {}, - "Description": "Can manage the Microsoft Teams service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Administrator", - "ObjectId": "69091246-20e8-4a56-aa4d-066075b2a7a8" - }, - { - "ExtensionData": {}, - "Description": "Can manage calling and meetings features within the Microsoft Teams service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Administrator", - "ObjectId": "baf37b3a-610e-45da-9e62-d9d1e5e8914b" - }, - { - "ExtensionData": {}, - "Description": "Can troubleshoot communications issues within Teams using advanced tools.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Support Engineer", - "ObjectId": "f70938a0-fc10-4177-9e90-2178f8765737" - }, - { - "ExtensionData": {}, - "Description": "Can troubleshoot communications issues within Teams using basic tools.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Communications Support Specialist", - "ObjectId": "fcf91098-03e3-41a9-b5ba-6f0ec8188a12" - }, - { - "ExtensionData": {}, - "Description": "Can perform management related tasks on Teams certified devices.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Teams Devices Administrator", - "ObjectId": "3d762c5a-1b6c-493f-843e-55a3b42923d4" - }, - { - "ExtensionData": {}, - "Description": "Can see only tenant level aggregates in Microsoft 365 Usage Analytics and Productivity Score.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Usage Summary Reports Reader", - "ObjectId": "75934031-6c7e-415a-99d7-48dbd49e875e" - }, - { - "ExtensionData": {}, - "Description": "Can manage all aspects of users and groups, including resetting passwords for limited admins.", - "IsEnabled": true, - "IsSystem": true, - "Name": "User Administrator", - "ObjectId": "fe930be7-5e62-47db-91af-98c3a49a38b1" - }, - { - "ExtensionData": {}, - "Description": "Manage and share Virtual Visits information and metrics from admin centers or the Virtual Visits app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Virtual Visits Administrator", - "ObjectId": "e300d9e7-4a2b-4295-9eff-f1c78b36cc98" - }, - { - "ExtensionData": {}, - "Description": "Manage and configure all aspects of Microsoft Viva Goals.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Viva Goals Administrator", - "ObjectId": "92b086b3-e367-4ef2-b869-1de128fb986e" - }, - { - "ExtensionData": {}, - "Description": "Can manage all settings for Microsoft Viva Pulse app.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Viva Pulse Administrator", - "ObjectId": "87761b17-1ed2-4af3-9acd-92a150038160" - }, - { - "ExtensionData": {}, - "Description": "Can provision and manage all aspects of Cloud PCs.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Windows 365 Administrator", - "ObjectId": "11451d60-acb2-45eb-a7d6-43d0f0125c13" - }, - { - "ExtensionData": {}, - "Description": "Can create and manage all aspects of Windows Update deployments through the Windows Update for Business deployment service.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Windows Update Deployment Administrator", - "ObjectId": "32696413-001a-46ae-978c-ce0f6b3620d2" - }, - { - "ExtensionData": {}, - "Description": "Workplace Device Join", - "IsEnabled": true, - "IsSystem": true, - "Name": "Workplace Device Join", - "ObjectId": "c34f683f-4d5a-4403-affd-6615e00e3a7f" - }, - { - "ExtensionData": {}, - "Description": "Manage all aspects of Yammer.", - "IsEnabled": true, - "IsSystem": true, - "Name": "Yammer Administrator", - "ObjectId": "810a2642-a034-447f-a5e8-41beaa378541" - } -] diff --git a/public/MFAStates.json b/public/MFAStates.json deleted file mode 100644 index fcaf8dc6ceb3..000000000000 --- a/public/MFAStates.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "value": "disabled", - "label": "Disabled" - }, - { - "value": "enabled", - "label": "Enabled" - }, - { - "value": "enforced", - "label": "Enforced" - } -] diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png index b1311174e895bf27cac01fecee0609dc41613236..f2388ad94457a6f266c4ac3727915ecb9111550d 100644 GIT binary patch literal 11919 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 literal 6199 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 diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png index 9221cc217c35009e68e65fc06fc1a10be67c95ce..85f7bba00f590ff206405eb5df7d87b3a219dcf1 100644 GIT binary patch literal 33773 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 rk_Hy=-7a(1X!HA literal 16644 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 diff --git a/public/assets/avatars/avatar-adler-atthowe.jpg b/public/assets/avatars/avatar-adler-atthowe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..848b93ce6717daec958b7d632802ee18dcc01089 GIT binary patch literal 25327 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 VDa=TULJ0&ZBOct)1|0wZ|JjWO^>hFL literal 0 HcmV?d00001 diff --git a/public/assets/avatars/avatar-bell-covely.jpg b/public/assets/avatars/avatar-bell-covely.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cde5d81c4aeef9d41c375635d982f23c2376c3c GIT binary patch literal 18479 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 literal 0 HcmV?d00001 diff --git a/public/assets/avatars/avatar-candace-royden.jpg b/public/assets/avatars/avatar-candace-royden.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6524b8fcb96afcfc10081b12cc36fd6bc0e9fe10 GIT binary patch literal 27432 zcmbrlc{E#J_&%D>gSJYmN{d!e^E}l2sTM_1^AMyp2chPfwv?)=hD6O(Lnx7&5=5xE z<`RTN%rV70M}q5ne|P=vTKBKJ?%ijdzs^4U>}S7czvp@1_c^Cyr_+Gj+8SCKfOF^1 z0bZRQfKwvi1>oHO&-Ooq{Qn%{+_}>~0H&(|7yx$R924L?)42;w=T6%ITmZniOaE(Z z!2i|GoxgDL(&Z~xuU%(2>ritWaQ@td3+FFhxOC~_#k1a_XV(E2nJzIumUw>oj={St z+@5zOKPKf}eWF&;%wjmW$s=X!_37I6d#v}_*m?P$@(Tz`%gD+-lUI20Qe8vym6o=V zv5BdfxrL>jy@R8ZGuXx3$Jft4ATTH*@^e)5mzb}~DXCCc+V}K~pZNuaMeyR1UzJtW zH7Im#U42VyTYE?6->&W<-0;XKer%jDGdnj=URYdOUfJ5-+1=YeIHVr^53X~73;%n` z{ui+S2d=Y4ICuWy#S0g&{12{k=l##l3rrU;J(jr4{M_KmJI_1Zk{_?$RZGgNXukGD z%5am#)@$(kJs#;9-mU+E_J1P#e+TT-|0iVs8`%GiivYNB;oO<=E-(R90mo~#w)@+! z!uE%}g1BDqFE8V;el-0str9*2KhDL_nbBv-DH zbUeblvT+JvTv3L=JtzyFVLWkN3wOER|9-3Z)_xH_H!xIfMTX^0m=^^&hMRoqL(c}=|V1hXkB6Ch^zYn{TtsN9*5slPMoQt$FouW>==@| z9;S3HJzI<$_0Ea6a5=!Q(>F$rTdFX4kChYDNqx?q%goHqHKw&kudZIo_Wod^r}6x6 z4<}pIP?b@3Cbns})bE&8Uory}4WewQW+4xSH0dmJ+J_vMu{7nAezc_ub_--$W8R=O z=X}yvwsdkG6+DhuuU?w4x?8s;Ji4FUx$hUHW38YVnH`B1zIWs4ml6T5c7i}7xRkH~ z&%*4>eZES}aW&g)U&rqNSKCiibGM*#H-jyQ4PRRY>roRGF z0b(B3?p)%&1p{9c086Jacku+O1iiYUwNRZ0>_vdp$`(k&ru$~ZnhpQ*V_C^;OYvxt z!l#=gtOBWc?H9Iu-NR*c^5(rN9(>r7gl*yOAy(8$&n43N7Z07Zl3%8(M{iHG-{)Do zZ`k*5xn~y0>qr~|%KPcq9E4%AP6(Nz?NiD!9v;F+xDy19(g^&O&xDZV9A41u3D zJY^F6qzO(NY){-G7BqMrDLc3Q8g)FZX=;5Fa`?VeKy!t*c91%~nu0E$^moh(A~zhO z(UB7=cYegKU2~(c#k^b4@sP~PzpceDQOC@qJIpJf6Rhm7rQJn8QbBDCXlaakZR^%- zcp#CmZ0q!+=u^PO?Nh*~Ji6C$BpqA`#v8fV$QewsS&o_7YL; zuLB@*is?e4=039Ic!_@daB;I~|J$L%Ol~abYJvi)X>s*bZfN*ifV%Vfy=%_i?N1rC4C*9)w63( zRiQ^q2iwX9nJ(V~nl}!!xK2<3C5Ba4GWKNeSi}wg-`=hOTlYgz&HBZsE6|25$`su%`+A&2fgJ~h@;_^QVdg5Jb}RkMQrs_!+v-S;t05Y zcIS;6C}i%-Q#CD~_Yai3LU-^}34+F4LXbko>^0=x^3Jvx0vmoIXB1&`-znpHlAIu; z)$JfV`revlvx*bn`b3aLNK<*EJvvljY9S!1laDqRRyb58AP)40g)Q)-7sI-y%u#t$)7OBA>Y92 zY`s7-DtT1bZ)JTr6Z=$SD56w9{CaFmdB)^qA05B*=*z$)n9_*hT_i)&OpmV{Pppo9 zmGwXz5v!VVb#fOEN&+fD%oIX-iBe-IxsTj8f8bS}@|QO|Fs|?Yj{f6|y8Ou&Z1maQ zHkA3Ie6xo1+`VKEoAslnR`n*MAQwHaO#e_M?k8~hKm=nxCw;6kXN~=!|5!t3d_H~N zu!r2RRs0_Au2evN<#uWJ(S;t?8 zT6~<90`@AvVRKE_IQAy8ar9~5PW8TH5YExS$iE>ZuI5%478G*fDH|>1&icK z`B;6GakVe>>C3%y2bE{9L-TDy>B5Bufakby$7dE6pM}{v+YBt7p6bDOFf^((l49#x zUsV`g(u>>O^OcH)7%V`fG)}-;6I^$0k^Y@OdKYWhw>HT^^d(yXkbtusJ zNrqS4YL(>Lj_nip&3H^^adI4lhdA109Vp~}#9OqS<0mAVYW##@M_W%+a1E6HwA9Ss zW@SSNTc;cOPl*NDEnQ&k|7Ju~2?h2L;~jP{FSp>?5&01%4W0O-rq1MAJX^gzZ@{ME zn}~zQOU&O@&W9Z(!qxkpKnW`)_X z4YT)8H};hL03)CVg&pHJktwqGxWA58JW@1Y_hXDNLk3_biON|?UD`q z8Z4qT2t*DJTnaqNn|VOIoYtG7iON#zP2w1w$j;{$XoqKF`=_tlXhwWO#uu99c02Ed~Id_n6DC(I!QrIW7hFypC6m=ZK(1GtB5cy&1 z>f3Y_Xku;t((7w12O)WqAMW5bjCD+jp~@_H&7T{gr+_EU=!;O42in@B2~HV14nK3C z#%I1+P05JHN`Lnohm_HwdHxO2)cLSe}lpzDlk!&8i&ez z+b*)VzpS$@penb0TJbPWFlZu3SJ@=jB)EEYBV0cd5gjF(f;;$T7D3P=zMLXhLMpfG zj`xHd8(2%1{@={eiJe~?Xo zpBy%)F%j2&^klK{UU^~J&()!EEmc^P|2yhLr#xpX{S=VpU!tuwE`!#g`qBCxqcXz( zoC2aHYbdrTTQ#{rd!`Oacm#}+^J;H4Z-WPi8ByM|+}p;}JJCPs36ewlHQINwi(4-= zaU`hZ8W3{?x(X0NuI@vuL3-tI$pF8y2 z9N&vy6TPkfNU}#@{P9wozv+$t=B`VMzq;i;!?FaEHcNIapmo~zO?Uf{e z(#a!ga@BR2X5;HAXhh==s@rNIj;2 zF2&CU%JG7mg$h|$X9??5ihe+3^zboIbaV7}oMW~^8rdB@oU9+r`xm;_c+CF#h^txk zntH{jZk@|8hW7?0yw32XdBY1jk1p8}%uiNdYQ4Vs!xO}jFtF8IaYg~i`%$P!~4PT)2~N)OvPcVQH*r!+`)$ns=MqLcSn=V7q6 zxrfu|qS-|eGa&=_?mmobk87#SuO_1(o6)O@KYQRv;^ZK`>*1tT^Sk<2bE#B~`}y^W zYtFbU?d^X=8-SdB+8cv+RV+^e47)RW^NGT`LG!gUsR9ZfhOqpa#xs|7#Py2OJk>`TF0R zs-IV<`rMnGY{z#u8_Z09#Tp$`CaqRz8YH zK-LaiffQHk<;L~Jzb8_g4yS*pWw+=s^vI`w$DTgInsSMo{H8UGHu*% z934KKYd^V-9xO+)IH7B5bkd*HU>XCbGZr5C#i$HC)MvQ%9`K)WiCt2pa3fR!sl^+- z2NXIm!|79+VlCtDq;g?;=zWyMpY9Zh*u+kW+dH)GsAZY|Wr2&1|HblX%%py13PrFL zzMK$ujQ4jy#djltXMU;fd0}v2;SmLHhD8=dOaIJw*N*8P^#BGIOt~t%#RhTKDR~tl zy0waLBuYtGvM;Dex1w*0fM zBDARs#cYJPeriLt*5mMT=Nhzx?sUi-y2;h45Lq7`cfx2nULNtw>TmMI%H+j*>kM6N z@1#$qZgAdesHp5)r9OpzqPO(#?v1I)vc)Uv-FpHBb72*9*?KeyZ}YnKRzAP&+vLx# zJM9oQgh#$hAE^IekSA;<{bfiLDJS4b6CSCrw>Nbiypme86P_RLxj;f5+OGe~T)pw4 z;HyUH$7lPe0F@d!Z3xdiwVXKaPw(T{BM$F~+`EZhWfbIj>vc;C6Sqq*L4&0W-MhP% zk@Rz7nBFC&|73x`uYF==dl<)bxI?jg-eXLDAYE@Uc@Q4M2v2R&|GPu7t~g7sKjGuF*^M^P zZ7b5gzcL)Y`FyOo8UCg^_$GJ%Wj}pcxnWU}g5)<~ zSawZyP)EQ%zvWNfsgF5CM@T3w5{gDR1*Fr@9oi6f+9!F3Wo{b!)wyPt#yEbP?@~ID zyKE7QTCnXMNd9vn1s4I5N}oMJMtec{QmUx37|2nsMe^IQnpm>GC&amYcZepY7_zG} zei;6PL0+V+3?f?#eS!JN-S+;f`3d#ulMUu;Z);bCwt8tCrkJekm$P&0#U#)q1%+Bh zrysMlj9Wic0uO!W%SiT0P4*jF=>j2hP63_=8y_3kMB1?!tCz|0WAB?;9bZ}h)dEyG zJ>y}P>Uh<;FxH@>r@ey5mrp$n_93~2^?dw8iz)PnC}QP2PS~enHaIyBz3*cp1bUfg zx~EHctCBx3vr7g={Q;~mu{UIyD(Gca)!^%MlWC~NWvl)7fj)K?a<|a163RHjJ#&a+ z6OGH^JPg@hV}7B~@#WRdEjzC_{M)m_78&|!X%_+E(Kj@EwF}@v@X|)Ce@!(}<1AMq zv%4Pom;qyL*#$wZ9c7QEZ?>!zUVippTpxR`_}gaoI)3B$ACC>k&VAtd(J$vjYS!l5 zkRkh5Vl#=8ppgNF2kMskuLzPO`-97kG}onSb^Y5R7g03%I&0N8Q5Gg$4d@*I1bJQ+ zAf|=axET-?ceD3?9OmZUo^)unKoM$aFx8(_l)1e!Wi($pm?z(*OgKzwMCm{~`;S@G z7eW}fGG{)Yq(7`^cSCR3I`n6=%(kUzq`Wj9QTr`q(S7a=aLl^R&fCuR(I$r;^Tv%AErx26s>@eO5fQXE;DM1X^*cIIe7 zBVv2^lPCB4cl2{tGm4;ozcasR*s#E+e1sMr$Gm#n#w`BldSV&~CthCg?s|Mjq2Qoi zwzlquD@}I8xq3=)1dX)YS`Af@OkFOn_jT^u!Ij>}SQN4+4Q=b;gPts&0%C2h57w02 z>`#JQ={qQBdb;=BY|t28c{Qfvh7NbGjU&(1zAv}2{{Fg?%+aLvslC?lfDA4v?ow>> zhhv;ECHxZqvpNkOn98=UV)wSGA!cc9JeSio{FXyo@)(0f_pj)R zHrW8h4|8ti+uwR>Yug|#6}OCYi}K9~>Ryykk5H~sC<3nk=df3U#n5Z{n8Z@=jOd*_ zT60I*eS-A^1K%aSLEU~`c|Q>#Et+}xc#ZtoDw$R3(^cCBQ+i1$sc5pxqZ~m*=lw0@ zp<33TxDtDGeW_Gmx8wdZf-4!2Lu^$=F}9R~Zcc!dCZ&cNbZ4xCo|Q8}CV4+l-e1da z^U{1AszQn^t>c*zc9cwfa=*2%?6sJywx~cirEp{MmrhSnv<9{M zI)#p|IBvWBUcvv0ve(sqO}BZo!9lpG_Tbk{;2L>xDWr{jm2T+SINC(N)jJHE*Sf6~ z82svOAVYJ9K2^SqJ)}=V_5c~YUhPM9ai8jG()}MEdC7hG=4$7K80+8qZ?*0pB}6(_ zR~Jmw7=R0=_He!N%-ZV|)0*ILy+!T6GKw0>uZ08ta2DJM4h^jg8r8mTR0#pYcT}1l zYn$rpAZ@Zw0ieUDxgkX$MVH9+W!TS>km%|CUKN(g#HtU2n*2${rX*UI_5J>h><_yR6A8(>LN* zFQs@DTLAi3r#bJ&MP$%v95(Lx21Cnhz9{gh?$GA1{f_1YFopSGhy*((cF+CqiAKiDbC7TTF=4j7fFPck#OI1ZItR`xsPiddL^l zvoDIju1WE|*&|`wLrrY7jd^=hQcW^EQQ0D42fBMYFUZAuCY07BURHOYmQLS}jMGoO z0s6oIk~82s(Hs`+b9E`Q(`|^Onfu}g6m3)^*>=H1PSF1s^F`sj80xjzK*9Q$E|+>~ zQvH!g{aV=m(PFd-xPyfm+%B8@a?gK{1PLY_jnT`G;i?YSGUxEG@qT6pu{K2;j*6s~$40UZ|_sq;N^gmnp)~PRHw?31lIGpreGDv$~Gh7hK z56?OZ&k>2JcIoG-re<|-UvlynJDRlqKJD2pT5ylk!PKnIt|Y(kkJJV3hKZ@_IM89)dy+b{pjb1q9n2^7 zXO@U>pHB`dXoa|p^JwR?J!#J6@MVn5tr7d9&twJCJjk>c zV%=0Df7CMYmp|I*_zr~EVme`V@@0n5mm%k|i}v==7x@D6hSz@+jI$z|pQP*_nj59M zPo(98=|g)eHdR@?4tHrJo8IL)bb_n=Fh}7wKq>CSEwkLwI=+nJp}3rELeMF|`c^!C z4~K-8EE3{VDFGEfW&6e)ZOWeY>r*%MGX`}s20Vg2^u-LMvk&Siqz5S=%}bS*KcRx( zDHFHgoKtiCLgu=fAa83@{l4Y$LAp#ZLhq?5Mpw2aR839lqL`FK=eg%|v^rWtjzr4e zJ}c(>gF263AV^VYm);PCgaegBMIcQG(Qv`3O|#tivkA2+I)~gWe!;Lr@Q9ajuI@@R zO;99im96eBi`izXCrl)#jas5oWU_a(7Vok4JY8@9tsk?QCHo}YJM7g_sovmx+)HifH%SGQ%5&Hvk3IJVCc}orG!8A9RPNyow0o17>c3xm z8yAtG%49eMq>h55_lZWe%t+A_j#l z4*htCdSa#DNp&3+<{#xt>DM#+lzqmV8G_(pO*!b%4v$#j`H`RX$F0cp>V~)OJJtqr zlF2)F(SVzSEZ5g1e*hjHjkxsOE*z|>9NpIf0g#zTG>98?Yk!vu|Q zxMw#SY{5Uj9U3XfxG^DFYiwe8c~Xu=_iOZ_hUQ->tY=Lrc?%!Wa7+x5sMHT7*jUQd z4OLcZV|1xQ zs&Ks`X?%q{R8~jc{-dLXqk3(HV9R(xbq+_j?L_AMhptCvFgd3d;qa#Sb5VS8PTFru z`hOO(I?nLAI~LwM#=9a?NQFZA)WlfuaI0CCi$>uyoEJIEFJq+rS(oL?eodz7R4Tn^ z>t=UXxVI0Ra^VZulled!G;jPw(SvJ_fuzA+Z$;`CVm8bD zzZI|)*XcC=!pnQ6%{q3&MT8)04shMajJpxX-@d)R=y?$l)&57c;InNC;nfv29yTQF z67&6WyC*e$dIzL&qIDd}Lk~SH%vbGT!8|J$naA-$V8U+)2B2fZ6$ng4sYda~1jd z15UlTkxN`yWZ+ z|85z=Bw?HdPqx&I34?MEWD9bAiT+3<@=Z0oer)pzd#(gg%?BcD?AXFxfRa#TUKP*h zv9DOhdrxB!5g# z+_QvDYn*T_hoS9H%?}$9BtT4GOGUvV zrse%4vGOwsLEX_kc5&lbI_xW(4x2}ubz&JQK>Hu_uk zyLL8ig@}~3UnrP%Pq>cHj>7EP!3q1C2L+K>RITG|y_TPC=3O*#`${jy;-jj!{L?FW zSJ92wP$>lIw<8)SFN^%Mgm3e#$*c44HYPfj`^GYPPBkwoMcoeG=>VZ;Z zCtg|qapJK30KxdPoP8!~axy0d;-SnKH*mLP2&yAHLPcPx{-Hru`PM|xnvcGCiOi?MAqRVSJI z%V8EmuJq9$tPf?mWGlKY{DuXV+?!;ruGHUX@iK{r@TKn$u@<1O=+$Pw?zpzemWawC z%RgTq*~4Oxy#5Eu`ZzE6Rot6F>GF}I8cY)~D3BL(IM!3Fq2M3q@xY~gt{ zETw(nS%&o|^T^D#`Px|t&-;HJg!KRqEP`acuHtLg_x!O#gaMD%u(lW4u~0=JOZ?z+ zy|s$=;=#ySl|E(!;oCG;^+)cfE4-F9C?2t6r2<+rWf~v5+dN@s{ArZsE8lgySf_{c zG>eB%6eP)7(#H!_-yqR?pGMeVe*XZO-!?zgDAG#l=Lp{QL}5?WcmZ07BC+4N{Adm} zSnH$$=Y*CeyX!-JT!EtfUE$3b>O)mUY(sgCq%_vft*XSXfw{oF`2x?wBivM&`JS0| zsPq(kl52Fb{yRQdDQ!W$zm58ZG)2h@-;1{*mzfDAYYA;PDNh~;?Tz)R3$3F4POz%e z>;#h*YiqGbt6Yz6CT7R<_&fvL;KF4*fE1*dVsXJo$0T*gWDbh5vwR8w?5LiZST=hr zb~?N*@m&8_r|&G|Ro8t&NO_cfv}vX`CQ&!=vBs_aDOYFHfb{)7CVpc7-JMYbghtK1 z6MkJ82TUxwFz2Lb*m21$&sqd*4Clp>;&4GnVwu}@bcXkzhMvN^26 zJXn1!c?!@*8(kXdsBpSYm{g|xWo2sFV!Hb}zH4fGq3J^VoHO~^YO}^?!P*#G7g3iO zRi{hUb{tbu?q_a5bwwB{-0pb`2<@SmfZvTWXXUdSg8PATe7P^nF+NXGhpKZN%+L0w zE`{igl$A5RE^0OTUhV$hn|rdT9FgL&tKFO81TU+EE4;!x7ryExyi0wP#WS>6s6VrP z=o1Ep&j;U`Q6gR(2|+3%^|Y*UB_`V_Xv&c389~x_N54K&oMBv3-m+`0hvvl3iLeiy zjIzCpv?*9HhH@uC7qmFdEyw2pEa&AIKFHoy4_OavwYV&qx-$JsfyL6xcplNc76$ay z+Vg-66#YHS{ra8-JhLOLI_gYPABiwDieDw3>4J7v!aC@JhtMJl(upkj-+_1m=4C~# z?%YSH+wE(u-osg0__?vHi%TY1yna6k^}0{pC$Sq;t}26$&O6%KufTmQqSmX~2RKdK z=#*++$cx!mO7eLmik#Qqu6JzTkF(k4ZEGL>uz@dLSa=i!Jztgg3C8y`($dToDF(6* z2PNs>TT<87*0sR05Q3IQmz(rO7Z(rWnx=oKvhD`MhfW>@2u}=%^!^5dR*dRss`uj; zUZpWHd(!Y}w!fkj50QhC2^`HcsX}%V`){fXulp?ollZ1g#zE*8JF6Qioo1=UZ@rpa z1$HzfiwTK3TJ7p$(n$9lY*Q;Tj*BylU*|gA{x}cUd=#>^0lD&L7Qe=nUv7EMJ5Z|N zk$@1-#?98si22UT7q|*x5ZDYAJiWd6B{EEKEKMP8i5Q>efHB?i(7(W#Kee=;haA-mg_snyrpwug(v3pU0AU{Yyz6V@Iz!FK}qQi5J|P zo)Ut-q~;kxEokLiE~aLv(aI__`9Al~wr{#3jU}Z4!KQJV3hJIk1pOlGy7*qtE}614 zGtbMuk0)L{20=efXNk4i7DkoG2lMx5Lg@PGeEXP7DE?&%QczI~tks)fOjUJ(56dQ?log^XT%&3jA`a8RK z^9^LGbZk~m^nX$}7VW5KTE9=TtBxCu< zx7T{4%yx65vVQkG{^Iv_A=LqQq`QVrGos41lLgbOHfKgUY0d}w+&6gQ#<;WR_Pu;zb{gc>VJh;QmDBjU7X?FEFm)xYI(({Ps=I(1} z%8(JgTm5>+BYPxe!b;+R*RAWlI|3atnJqJ`3ltNxI3Mh6W;{LFh2rD{m!DO=N(y+< zE(IQPNdmRn1=|l=U&?-qK|?PN>^pe1I5gjPd!}V8QR1+GeRxaZ8J$=7) zu>tkMh=3&VI=lFR^30s`RYYLvDIf!^(luK?8#os`jXFGE<2dv>xP zuDl7~-C`*cDnoBV=*Z$Uu?PH$T~^7A7xy}Cl)a7ku|!x`p(Bi>gjo_{U&iQC_o(}V zEgNu~z|w{iH+$b^rQ3>Yq^vLwmx7ECyje2!=_%mK)~edtV3_95E?#IyqWCS*3oUDr z!o&js>-dk*xB7sPalwWhp=-~Yy`?w6HUyAfV^NHEAjD~Tl*rWqTHBdp*Z_o>9Oi-Z zh}KXD-a5d!5lew!UVxUTU6;i_Ua7HRCb9 z(Hve43@92fitgYPuic!Od{~`eZAon1_w(y37MZLm2EG2xK%RZAT2eT2kXAFC^;pK;5DM?WD7rfuHqHRJv9|f4&Ki+Dl{#aQzdc87+G9^e|KR zUrp%K*2V|;5MAY?7c+R&Ncl#D)$%{{2k_AbWhF~BqRvD7=)K=5A&n}bN#ySthHd0^ zsJVu0X5lp>7prnFt*89m1d@=VvTW5+?f|;?Dke`qBGxjuV}adLxAk5>s!_LvMXI$o|9h={d3`Ad}x* zqttmuHAuu7VML(ymL!bcNc#C2oSC7E1VuZzJmTsn|Q0qv-tyo_Z`M%+} zCx!*@uF9>ePl|fs({d-i>KVESfuhcWI?!D7>Im&W%Mg{VGlfC}%M3&IicZL9CdQUh&~0fl+H9v>Pd!-j0G9Xd@nC8DQpHJHrger}W<-SfEVJgIaTTI|Xx zzj>=9JZ}Zf{v;mMobyO*7JCn8+=R;r)_tKvcv90C*;+8*=^;}|FAx6n-A#jwVjeUG z#+4NchV;E#(JIqysH!-01D3uRr#ZJUw-u{- z#>SRh>N6D`urNr`YMLP$?SiHkJH%M%Aa;idOFzVoUQ?mAx{A6=PdQHa;hg&%`F_+v z8{TgM48jr;63ChH4*la?gO-q-p$$C;Aq12P1cn|AHs%hdt9WS2<+Bez#O4YIX65r2 zPg#U$DJv|6R*6)@*zYDysa;%&>yZ7!KY!k&D!DN6^*e7IQdLZ#dnXRP;J;_7TwS-; zk!)xfyKGNGgwaZK`{dTZ(~7G1PlgxuMj}TE#xQZ=`odrH7E}HB_`)8!zs;t=SZ4$S z^l3;^eMAbVezVAaQ%RV7Ia}XVZk6n+$MnWf3%tSKlNp+Vw+~nKjM6+V>`00?KOw(? z)BbL-bq&vZX!;7Yzi>=RZZdtZ;L*&w72o;A2dEshKB~+;zWV6X_P&&73Fz@R#TS<% z-K+<>ts3I^etJK5@(C zsh0i3(v#10^w@)L3FbE2Cc|mETSZ+MH%3o7htHrWvwp#Nxo(?4vMF^C%Kdbh9@+X% zs!W7k+yL?LA%{_M8jOfvyZl(Q~XofaKAKfbVAtLha zn;cID>Kk4@ntrvV&ieOyiJ7obuewLm3|&{y*VCXF-+J%ou32NH<&h9Qv8y)rrm2s( zH~il5O46A^{Uw661`$lOJ5skG%x?2~X+P~YhxJQj&Ee>Q`}-6PiJGEZtiP+xapqFU z@PmBDKex?so;^4ICxAsI zJg*}aSZ}HPK)Vkd&P&-I8_KSOVkqwT<@dqbNuV)j{BC`Q_Am zv0>_vk@`Iqr_IG?)w=;k&qtJQ^3}{`id}Y<>>$9S5FTsmbctUb$t_zl9ZA8EKu0vw z{iL6Dw>!NbsNWHeC6^#gb074;^x}T6^;vqR+Gj#6>MXW<&Jy$q-~expvb-DC4`0q* zq18RT#)JHsko9jPplT)j@=^{TCm?YKTSkCJw^H~WfmmS|!f2)gk5@a7x5hrZ!(LRj zr%Yd+YoLQ{qEKgr1MH2ix7{JZv(>AvgZXP()tiHNY}&Fz650n%)*#cM^zi6s3Njuq z7`ov-1AM6~+Ja^wIDc}b_3mirlg$e=HCS}#v7nCeZ6cyq)6M=jO*t6|)Yy^!I6m*q zxy<9|=r7#%NsB9ck(&C;9_5ufzvwHVs1>YrRv*?gM*cLbTFyISy+vkfT};mS8W)-- z6z7JUkF)cuN4ug9@QcT`0scBej}L(}M6igrA6s^~--ow60(Y3{9GG(<(#8F)y@R5n%9}Uwco_Dz7gAHdfy0{ zjgy}(sYSHW%&y;uUenbO+$t_7DQ6`|q!93a$@TxJ)KFU%io;f%N_Fb8x8BhHAy`zW zL~ef;Iu|U{#~IzqDVzD`xL|R!K(*SsZcFBjs>57$MMI66gLnwT_tay{vyR9$S&}Z6 zfwtz&#mc=J{~_;uoW0Z6cM5>it^Y5Zm`^7Y5N+VcOsH^{QfF%yTiY>6MGX^&+7V{S7-zP9> zSpc0DLa#8sH?@X#oAAFOXOa7CetnHwksC#5?UJui0in{%!vw$uwX99hR1 zO0&g0sg9Cj3dnt|rukX$m&tn#*@S!+YKLUQTevA4E06R$nxq8VbPuerg!U349Ik2PU$k8)%6>jyIpa)^=Z~uP#Ec)J))|^ZokJ$c5rOh@Pn3#B8m!R+l`-dtu zy;#Z99crz^C_crabhdCist?ISN?fy3U#9LN=~mp^GO9P6Cpm_2u53^7NE!K}!8RVA z0-1)xI+*|S8}~N5l;YVn=1;y>$h@aIUQgwlh8vb;)@uvFGQ7N?KY#8+2>2b%#gmR4 zAtmG&pAnFqMnk}N6_fG-3?~6dfnCQ*Bf^hbl z$3{#>>H$4>OnsrF^ufqH)=(c}9$j;m6RaaMcLRSXDphc1$+R%C02fkaZYf_&me_l2@$Y;HxV)^aB!Bs>$ z+!w7{b?7k%gxYP_e-jTB#wsfwaLs{!j6`M;476lV6g7cVcXS2S%D&DByF1!f)3mr^ zx^?|5Sbg>S9Cz-Y-vcNK>Zag~#^6G(a8AxD$ath?@=TheY#<89I`}S(CiH}xoPn6L zZ6ZA~^twiP@LMS?r^!<6ZcRj@kbf*rKi8(6g6n}m&NLjDb-z)=YVK?2n)$fz`U%ef zIhzFL9&TBc51Ns|%H>BS@ch(-T;ma9_vEYsDK#vN!d82J%$1k4_~7R229cjIf9NH@ z{HM$X=~<9Lk{vxxe}k6X)8E1$O`JfKbW8Z4Tcw=@-(hW@=nl)(cYr@{WCRYk|8|o- zw?Dj>S_5@G1Zn*2_kKXKtkKx;h0A70(KcG^hH@Dl6a=0|=DAwHX|=0IO-Z}3v>9bF zAZ}=NtizwX>b9iH`oj7J@9Oi4^I12Ns5>1d`EvKWNTGZ(<}C&x|0G5qMYbB^ zs&!m}d5^*E^&NwHS5+l73Q-(?{UQIUC4KWYNsN4VMOalf(S)@(8&{>JvOJ|L-3WJN zU^4ZGe=&efl)J(Vz@>1$Gz~;4wjt4JleLwR(SpEGXX`){hm_uZXE7?RK6cgQVnX1f z-%k`10p4$lC`P`5_20;`n5qRoR7~Sn+IPDOU$C*Uvqr{#yz^9jW>dr3FXGGGq`&kx zqp+)v5&Ed$0B+MaIF9x1uf^}j272o*&hNxcKQ!x~b2ZM^Qj<)M^z(wQR|AQf4#Doh z<2LN#aJCW8Y_mWcrfMVq@SBqZ6;u|QdO+0Nn`FxCuNtD(o883hh@w^I+o2uZI|n8K zUGim>1i3a1eW2Vz+5j>weZ^5~zD2s)8x@P1+B{N$_e`Dl^|(w|*(zL&341i&&XE)v8Z%?Aoj;X3%OBvcL08b4b6d zv%kMN&w>nf~q2`A53!Qzzn_gtUC=M)0w&sq3R?#@s>EU7N z=X{uLWk@u^R?20oB&y^~gbU1C&o#Lq1y)mGg(&7nuaY<9`BL>4HT5wt+8ZyO9;M_? z-$$Nl0=$?rU!FEuK#lioe9h^vqOb!(qn&pX)whXhl?LNH;gTJ4Ior_rg3*TlqyA&y zA_PU40&@KW(eFr}>=<)O4=UX(vY9$;MsS(c5Bkj0fEEFIiX>%-Sh<8W1M@)mFJ5ew zhex#xcKB<)YlgYDG}*8es`VzJ+cQyB8R1Y*SZk^c%;EMdeEwVmg{YPH+LpIjl~JAT3h@fk z(`qOAz@*S`gyyWM3`BK$yLyu~US~!+XiFxP@YpdtTECmceC7GT>tP-9?&X@AHG7&e zp3d~t5kdB#9G%sm7bEst26;BGti6~6zjkC030moFLy4Ya>f%H@czAl*+NwAt8UUBh zvHgv$=uTV|yX}S7k!$N0A|ZNAW$XR2e5Ys=Q(mf74IF*%VrLp|@CpsLbOZ!astQf5 zz8*}CcR$D>ZMJs!p);%-_|)$HI9VRn z#Ua|)_!=Lq&^#!_k_FJi2Au-epoFyP+8SjQhFDA_6gK;6PLf;YB2y0^lYRP!H~F`^ z^;8>_tx|59ikHUCr{-TJ$eNMe4v)5u+=JZkWR3zYtytA);7iPAMPN_fTqUX^q;{-n3dY97%0rRkesT)ZVnU zYLf`31gEu1L~11!t0-!w1gQius%mdZ1by@V1>_>Fjr~#5yk0tW_I65&`xbS16tzYEFBZb~V$AA@*#dI1Y zdOKtJRU>f4>Yub$(>>vA1v=$b7tXxt`;iFA{P}{kvb-PJa>0cG#_*6i^-Fub@;;oA-;V9%e zpt3We_gO;(4PCc^sVOo|(o5De)n5u4!?&T=+6o&&m#dm~4ZE=-rjljU_dkrxYahS= z*2UYiUV6RACQD237NYpw*9lu6K-sgJg4j#o88R48hBAFJOFHIUg#1%O5#vmC+5nc; zwzSxr>Gy}DAsCIWe9$5zeDoy?(Bawf_p4LRBBgI4mS7Q%&#e77qn$>=At$DM{ss;P z$tDwEtmaZ||1@W3=35$0v^!mNp`sgM@%od%V7oj~ZoGT6r>8mR=EZ)LKJtu@-7z&! z6&^KYHmrbEW#;K^3o8!mLBRw9(!J5c?w9 zeVlY8&XPKkX&<8!C-j21#aZmqjT5=?d`olJ2M2JsNM?Dr&(0%xg{YpUc9#6JYl^o3 zgYb^FwgvgVWm3hE)o5U|efm1TXG1-tl{OvC`DREpe7tH*vE-arKRvhAZdu{F!SL<` z_s&mdk)>skKWdl!nY}NQ+{b!IS@Ho(|E|H&@RiDTac0}2^pFt)EOA3S40{>gUjezi z7D#L3bi! z%^pK^A$-NA%RfG1@6;fCSdOscs0{l3Cgs6`6S{1GO85=Y#l!t2y>zwFNVM8vIL2XS zaB~E|1+VPZ=X&divV;$>*D!EvtyRsmyudvn65=9#DGcxZa!}RN%dAv=v zCC(q-F&#W5B`$HcLtEgd=u*po(m}md3OnIQ-(V|+)xg8mbNQWWkEuliH?7fv{DE z&IxH|viktyqCO5|imb8>`nJ2~x>++}Vz%Rsb2df8EX%y0yAN3(6ke`T7w+%GXDy!N z%HgPN@syM6(dxQxrnX`_i*kQPa~WNY!ELzbjrPvT_LmElATKx$7g8-08tfr!CoY_= zQA%6IUyB>%^K{7F#r$E-opg;q9KZ8@^X3e>+`JDo*169`CePzPXIyF$M18x{#ErUq z>(sTYvJQi1g=}vdCGb(qi-JmIa{)8Mkev!Lp=lE^zbNEuol`^8bC>Cq-85-(p*l&D zu-1Fz+5fM}o{y5)3M1{UL%+_5e})F7?}PYOM^`B+JtUm=PLg?G<Y z3Cia5Dh{*vePjXvCWk-_2)as=zUz%p$IvaB&`eEg=?cHSh=YfpxbKsDhRrbQ>nBjU(W9&R<7`g(+B3LP$q2J!!*i+*jOj|EuhM=vreLl_QTOva8AXU zkbv;-A}yw#KvoY=go9!`!rL^oHYA3&&74~pgjy?mLW26h4&%i-ZAg9l>}%13#2WG= zM~@;W^sDt#N~Zflv)*~4-E^Xz4gvwywf=#D{{3FD=mo)t7^4#}>-8;bDl(SJB9b_^n0 z2#=h50-oK<0?eN76TjQ#x=2P?s2>5-88*lVMzNo-% zSqgO~rQHH|6m^9CY>G7x-XMr1{vEPww0h(Y5YM`}6?hW8D){kZmnW$Xm%cA*PoZrs zg}O@>)IJgpJ?kmL=p*ia`Fp-bp#j71IdP0*9v_SigM%k;g!X_E4@CJ+gc#_#butp~ zLb{XK|I7F?P6u@lR8Bh;hwux@R)w9y`EjI?^9mNXduP#e&v{wj)C%k^^CzzV;lP9K zcUCJ`p9!}9Q>@ILVVr|ZRf%9G|)91m-OlquJvuIy$rk?mb=Q#%AYmvYNMv4?X zeRX9MIQHU>oue2VLju3wqbUyC6?@*_CkS|q43=V|RXRXQy=Dm!zOscTjdu0TcH>U5 zh~=r1p#fE}V}=XpdSX>M+A?iUx|L++CgpqVTOFPk-(tF;&*_l=EzD>2aij3FB%3-> zKV5Bz?cTnd_9G5tcGT=#h`jqNVp&{&-C93?a5&W1Ai~Or-$mOi5>j>`!g({lOL)!e z0mU+>WUZ>wtuQz>V>{1gAJpIbgLa9nz0jN&d_r)fl?e?|SiWwwwej}Vw`xrkmF{;% zmsnRcb{ri2cPYaFyD99eM<~+^vnwtGXTWBhQD^?x9C2@*JZqe25iFmKhEo84pEE0x!T!X9aH@h8 zEy#y~rOmb#b{Fs{cvtVqmo5{(lj~3$ILt64Ajf)R$_+bIeBag%YY`A&mCh`Y9&32c zA6!y4AiT=6SX1d8A(^+nTROARu;mp`n%DmJh}`+or_L|=D-|3ZiFsV`|1zzKQwD8JAc`PtPPhZ>2 zj7~E}M+UKu`6_H7W&9t&`h0~!?a|d(^sXU$0Q$7QrA->}k@-Pc7apqI&+%vwEO{|U zxNHJ%`o_wJ1JA@HcR5I2%vrI3N|odufHqrMe$lKGNcWFrGt@`YiG3vWxmP=FwWK|7 zM|GB%3@%P+Af|wWG((j+g&n6IY1D^PRl$IsVD6$vTn za~Ffw4qR6(Vw`+Wytckp=>+dy0J^p0iV+s;+goK!3rrhnADBh&whA7djJ%<}6CS7= zyOaCq4@ZLCN9Hz$JO*nAYx=9o z{CJMLIO&~XkeaYnXNgVq=?^#nOh!&++J|Bg^ysI={P}7y@`b?#eMm3mbA>MmA{y-U zJd8Eahfz0tf74_(y!o|z5r@EUL(bhzH_t*O+)cMVH;pL;TsamU*ge5{5jC^#2Ni`` z=C}eum8(>(r7dj1fvmNUeX7OGM0?Qw1kq!Bsg5unL_W0N2;b{5RIxMBw)cPiMeBu^ z0ppwq>TvAieH*y*6nT_>q|Ov$7RyG!YKUyXpJaS2X6o35Iy_y(30lr3WixC52C$;M zkurSbi6Kd8commaZgjcL+(YX0;$hm)lh^^w^_CLef#?FNMda_z=eWVb>k-SfwB>tG z?wy*(W537P$n@w{4K3H%ll;C60~+?tiT{7ltDtSMZh@))3_$v=natH8h(M1Sz_?X2 zH+OTD9z50255P2pHU$4hl9tJ}OzS@!XD%PZGt(OeiZj|cK3UJF|Mf*FeJ@qrPuF#1 zJ^8dF{xuJiQ1tFPviag^XUJCdzu^iF0A}9Jmz~|;iwv*uu2-7oS6hXm#5T$?kqw0v zFlXCCjhODaV!>mR7L^ylCZG0yP4JaseAJ({CsHY>nNMxm1&yP*#Ytd4YS6odF__?N zQ{%r;-%mH-4ws+?xcX7>+LO{Ug_BhV%x^ zPCCxBsNvqS&;tvN`=`RFCgYumow|#xiH@C7ZN@1%l&g)W@Q*@>&{tn+Gm-w)E zb~0&J)peM!8QJIV^YJ`w(PO1-*^Etazp;Y!+zkk{XK5m$M#tNrn-w0r;Um3)1c$+X z2Lfu?w^ZCrBQV9vSB+F+(Tfa_4Fxnwm8fCYz?=8I@4Swo#WdFl^2iz$&{Mt7hIFPp zI_<6aQ?q2_?5zV_s4 z--Agx@36$0o!@+Ze|>Tlcy&+f#_SuA+s0yGHnA*fk6L*r7c<>_qI785bbm(<|G|EA zH5!Sb?GmOKr1_<<@g%spcg3!f=Tuf_OJD1W+vielm$#?x>85g=iG1gJVW<+=uiQ{N zle@TbFgmS+63kV%PHXZD4Z@(2C;jG_y|x0;3sIq4>x1o_>T=UgcUI#^mP9K zxZ@9M6)Nq7*~d}bvV;;k9Bk)qYX#o*gY%_vg9CbJa*7KYTN-xTyF9fVZM(+Mw&2on zO0;&Kyw&o=Ci&Y@21B2%oO>DB+pGn{)F{KPt!0AL>lZCj$CWjVJSUbTsR3sFIPw1T zQqx876eut}JoJ2_`#r4R3(0ps#BL!DiXb>p&}HIsq`U{Z4al9;1UAHMkh)$-cQq0Bqi{-3o4Qo0WUX}Y#3(DhDpAULuy z4F7Dju^C;Hlp2qY!$&5TplnWHKfOj&ZABKBvSXmU_{ znZBlQ8rxLWua1c>mWh2a|9rR{`*;4Nofidg(^#x2BXp8^b35gwWh%UG zbty9XKub_@vK%2D6B_uMRO3(9v$K^H^;yvgu!5ED*Vm7rohtUy#reOLM4}y!Ch)8w zjL3Sx!}u$$s$)0U=oxzkX=E&C(Q2TvXvhcm`wzz~=QCvc&3ye-qx=hV5|1wNbRMP! zpEf*>X;fR6>74=Devh3j&1-jtK}(qJ9qE{U|SnK|q|zBD>ryy#82q8Y{* zN&ybkO$_Po;hl~t2!*GO%h+NkDD7}9vVE+Z{N-caObM z;94Q>4??!`9)Q~wX?ahp^DZ^U-I5NdE(?`IU#YIH2*|R@vKJ7K>*(f%$aD@<(9oK~ z7}t^ttH@@Ur3DbYZTN)}Xuiez8anC>4Y_vf`Bnxd^mcZ8 zXj*x4tXxy$OYF_GNgNV>2S=QB4(tq8IjkSLd#z0*0D%DtRbBUG$;E5{Hx&l)CXKK4S}H3omL6>I{tVeryA zIDINNkeQHldqLZB^OY*`KWwjZ)3DS9NudBF+2rtG938$oc9PW};H)8O(ztl`uoI{d zwcvFaE(&3&9`G?Nf&*{PPcu?~+6Hk$^AL%F*$theFYgIIdd#yg{&)7`fWe@$$j>UR z?%#004DrYUgWvoeZPj1dc|qsjlw_sE;PUxA7m0PU@4&C5w3z)@uqN0B|AhavqJ42=3WM~zXU$hyAYqUoW)(pS4y~f?E=ap~{ZSQ$Wu@Dkz zhMpvWo6P#0mf9

Ibg>ODf?Nif#G0$$O@{s5KTDx>;us$q1jbfPNK9-o~bXQWQRx z?fNJ5ibzqCeBIRLEcy$B`J)fFkr$syWE=rikOI{jqK_1AqY zHt$f=4YJw>YMPZ8{90^(DQneLn|!1{D|*EN@X;r~sMbTsv9pAm*xXNA2Liu+H|x{e zU|jsvC$7>bM1@q9r1%30EdU=F7D#+NbYfDVHi`rn5(koNd$mvWf=bQFZ4N7tCmxDGr7!lGvm?|S*J=3Z#4kz@w-7kSe z?8m7-F}c~lGiV^!hg=FR9v8806M|MYCm5*|TMuX&I{r)3W(WF8<}-!Qq?ozA?=*`O4BJG^ZEKC#0#hb(WEf*jwN zDZ<;2)Zq1Qyh(_1jeJ#>fVypki3nQICgyV4OMPKFBkZt#FG~ zZ5;3%;%Ql`Bm^8Z$2h=>p;0Tw);a137%rcT?-M6nkanr~;AY6sL9Gs-1iZ5M4&m4e zP~9go=j*Cg!GOu@hR2C?gR`(srK z-Ti@~xGDv|IxxFlmE7kd=c4&Mw!LEi@UT3U2XNW*hTQ4z+%c|6;s(rBGaj*NW?3jZ zIWeP;AJnQA;>>2E?epG^J6)>|xprP}_YEj2a_>g0&PavOkcrvE{xo!PsfN7fxnHsA z%A)!bf^>MBLyTR1=!O|qST7&iTkvnFO;cc@PI%^x#u&9xvx8|Uo_Tx-udlVF8*MjH z#n}};)Yt?R*(kNK+>fb>X^Tm)a^0`4*@x}nhr&h9Y{$*>CswPmo5Z5-b=&$IwI0D0 zK0>hmZvS#qXz=w8ofYY239H`4ZyoEjMCYViFQfj6j^LFZ>m1I3%8mrBm;ivX+;(vI z#v!(4xg-T+)T;B@tOg0bp8m)#)gP&o$jw+IQxH!mV%MCiT$kwiNNu3&y8MHTlpu;-+TycCpoK0i z_xEAm9DQBgi}&kUm*-FK{q;FAA^ooX-*azeXBW=Iz0?&t!d}nz@Sd?Lkx`Epqb=0@ z;rJE%a8@hz^xFn6X$AGxRzEb=Nk4CSwN2`{DT<37&%~}5b2&b|760%1H~YRyzAmS< zQUv}Tl2g8YPxg!IWz@ypnbYcQxElxoZSzKJjt^9PAO)9YqyZs0Bfytvz*xji4Zs{a zX{2kIe*_xNO#Z{sNM{%GPFo?m3{EvRZ?W$l|4iA;;-Z9gMwj>olLabx3q z&ovxhAlr_WMtivB$PHAj+#;$paUfqmhX~#cb*J-nJ%OF$U0P5T9HZafu%7syk<8}6 zL}Pt>-^UHSH>JUs3hD!LYfi9R%XAUCzw9y?dfB~GRN>l{;V+{34~nO29xdFAehK}S zvl!WopKKo(02aSqAw+}#T-q|G4f~hcW4ep~qIJi}j~ghghKNMh6e%^dUoOaz$45+6 z;#k(ng@$1`zH)QvkY`N%^&EEv0)iD9KV>L8zT(9wi_m(mBOuUku!ioR+DAmP1X#(X z$IJTphPejWHz1ca_>#^)sbXh*PYd-tp|XMW_la-(IOE}NoD+8z!2S`RtrIg;4IP6( zSDnC9E4Qg!lc`}`i@T>c!??X1rsg90lkxKHcZoB0*x%0bWm1tEWBF7z@Ox%p;8`nZ ze#*ieXgRK+-ux?c!fe8x=GD3e-sX>+-&RaUPx`zxQd_rvFy2t&cb6*heZ@|buU=K& z2P~F5`iLuex~cB*sl@sD2&Bw2?dth5K~e{~QqZ`Sebw*}4Pn{gZLtF@VchX@+isjz zl>^fDLw9Yao_!cY{$s4wui#DbCqRCa#wB7EV;hu?uFG}mh_08h4=kvwRdORrYL@fN zk^VM4ot@JJ!z#uU7q{<}R6+>9%5nTxPeR`LzxNIW=j2YzDS3^lhWii|8LK-Yq6^N> z0hiJ8gBaP*sGc_NT-|GnLjLao)`b#FJjaYNj8JIIO4)Ns7-(ffc@}jeEJ<@%Wn4=~ zP+#vw-I}Px3XxacD&29%rhQ}SqRPj4jEpU;6Hu}*HHYnLwVw4XI9oU;_lM(}Py5xz zV*{$qcUUeY;UqPvKVc1((GBR*ZDCw?7h>H)?FJzp35g7zKjk5Qc znu}WJ*6m-&CnN_8E(xAyMjq%_m4r3GN2&O#XhLk4U}LmfEJMl*`jUR(*Vn~+lGHX+ zYsNyE*ZE3ze~_{cDcK>AOjs9TWn~3*u}X|{wva%sq{zD$(Vuf~c?ik}yi}&~jvE1t zEFt9u_B+c<6@j@8(Tj4w$Bzh_jFXDEqX&#`8MxaO2H-+roB5DKf(%z5jWdvF>p1CC%~9mw}~;uaz*aiTN`C< zvH@kf`&KTID~P5;5XUd&_XS3XSe_DT$F+GXB$kRN)ovNB;O!~wJwv~MMMZ`G-f27< zK)&P6(*>Rl-7zr!aEiJX3*t1PiQ?6fIz48mgqCUWvaVHCxIBce~jdCgL*acH{>;SYzMK`R4R z`Md1~?v*jO{9Kr=^Rq30w)plf|NZW$avffuetVeYuiOHx+iLCpzfwRH&(lVD{S19| z6}#WG_bX{WfsnMWX>}fddarhb^vul5eV(T-0xs+24k0kT8O^fnX+|u zpzs)UXjP1pPbBRNF_G*h+~UQTHGjx?VfmwPi)kgbOL6@5)t@BThLvW9?(qYtDVIkp z*K?#Tj)P|0si)xfwqC#}YHy22N^n80l%}AItL&J>LM-o;M02-b-ZR^i+iuN;Nl9S9 zsE=bq+d)g_@|{3SI-82rY8Gl0B&|_qfCx$0e{r0>b;Ff^>&|PBxgoy(UO)p$3{L6n z(f;6RoCJ3ig7|_V0($AK_%|g9WxN+3r!?13&wz)4 zbW{NhA41$M(IeJ6_PD1G*2@yP(!0sQ(1}VN$Z*Ms#E0W=-I5nyrdd4(7(+b98y;1c zLKL}2cUaaf-6NkrC;!**dP-grG3+2@N`3V?!|Hv69By|nOeg3+tWat$eQ_qBjqq_- z8lyPANiWviM}hR{N01?dibbt|~VG7RA~sac7yEGtV#JFoDY0FwID;!7>>WhUIV z7Uare4CG~Hb-xunooQIQEok6p@o|T!(EYJ25_=Fn2^m+9mXB6CH_v-jdX6wcDAe0k z2z4?%AlTbQPKUC`FuSxBbsskOhl8O&Of$IY++PQ27yiTHp049vUHV-5koM}xRsE7+ zX?okX#f27=?AKWXY!uLGHZNbr{=F>fdO|Vfi$4#Wq%_*?E(`}9*~~509ureO&h^&Y z6MA0m#OLNNbuH*mj8iDh=DMc1*mO(Lx$HiqSwW#WCewR zhiMm0z4Y8I$zdP`eAd(-4x=qkcfHvc!RQcc8s%U<>Rk{`U;rG;o3)H2G( zzG1&ED`?1ni)#562eeLK#I|Cpu~6!G;Y^-#reth} z9*T7%;tvO?=Yu`Wk!nnR{u|pGUji*XY~F0o%O)@9qpM&1HGBKXJ^kniMDNYr-rq(A zK2`zb`F58*GT|tcXFaSGA3}x!O?wTL+A<&IkN#-5BQWx#fld-maJ6{u=^;J8r4Yhudp(T=A=8ph|ePHdF?Lu;Qgm2 z+S-EaJY|mdZy3C{dlq!dnRvP6ZPj>A&f*ZP060u>B|cyU-ub#acXxE0 zjl8r@AN^&CvVn($z=HRfH=|K7sF=wk_m(B!``?}h!q0ybkHgb$qPuc@i}U?PS5G*P zuCFeS{|pHYiNYFVPGYw}Mx&dQiFr-qK8m*Azpp#K5Cw@*F}%NQy8>Ob6*mT=>7=qu zvkcA2K1n_nv=M`AjW|i7(dsHXVGkDQ8EY+Khl4sI@1VZH`aWy&2v=O;DL0Lq8cH(% zLHkZk3Ol#F>@8fApf2J~?ssC}21?Hv)Lv9Ok%jvJos+cz_oW*LN9$VQ5i4O);q&JX z^RkJ`8Qftl#-ORWO125GUgqmaMid)LI5j^80w;jF#UmAQF+5?S>~kNt9wd6z`xC`m zNWW&WK>`pM?SDhN;PII6WgjK=OXarV70C1Qf0@)i{Fr)tJLlOCz0}j7bFV6dZ04RV zLWcuJw1=oOIhc?WfTQRaJ&UiCdAy$LyZ`)Z*j7iI`61f_P}hCcDvj|1)+wXP0IF%o z#&CTn!M1E({yVk9Fa7I_blb$2@o(O0;P}M_1rN7ZtCU+Q=}f;MO#8rM8!dcitU@U7 z=bLzIh^YmVzDqbtHG(|ZzKJOX4*b&0HF)wEn))z7$ba^8O#$wSh$5>>R&0(rIOjDylK+(me(u95kRTwv6A>w)hu%3J5tJ&SN>y6up@iO~OO2Ee z>4aVcLJKW~%X#;W`^I>`?zs2M$gk||FZ0`btv%PAD_4K676JFb>YC~RvKwT8SJyAV z)eJxtK=yxm{Wr<~WPC;?==Jn{1>(2o<=_&3%l6X$Zpl3t%81~@lhlC&0 zJTIy`81+Z-ypr!c|D~a2VrF4wg46^>KasSU427iQ)gFq zPjBC^{(-Ua3Ctw+&(t(-X?bOJZGB^NYyaTz=$LSFdUpOFE;0c5|9WKq6WIR`*Y!gn zyK(a-`Aw?-aFN~cyMB|?-=ugXL3#hV9+eG@;qlWC)DK=H{HW@n;gQtGGrsd2rDfuk z!tw3@2krks_P+=0-~S_I{|ngvhie*eo1E-=@yO``AOH!z#A1CJd3*%`k(v(Z%B3Dz z%AT!rTmf_^D|j_qW98I!b-YL{mrmV|WdBeAEMuP$6~Z8HSAa_=0IEbHyYYDa{0(_D z1*^aVGGk4w();CFfN?-I?5pyZKKIxA=f5dv5Y&E@WE0%U@e3RWjdCh&DCBQy(PL`6 zmx+q6D{vouAfgc9f}9|j07L`EZ)ggrj<>rZ$p0{00VW@iX{T`pzfeXLqr5UP2>JQ~J zetkw?2q5aWiQAcfR^1g$l(h0sO}f}POXr-@=WBxQ z#N{~Orwp6dRs3hH>0jH3hljrm%N)Dk!SyqfgnA7UeZfL?3qK??g*qlm<;KH(lGY~P zrTWhI9kyQ>hIMo;P?I@cbXI02JGo6~WF$?0;Gq@HH>Tmfm&Bp?2(z(;gkZ)b?<1SxugB`DN3P zlS9M_@ zdJ1$$NeF+izD(C)<%#VM6(6sVPJ2IoOd~3#t*eux*H9a;KmNYGKK<1rF3XO$$*W(f z=jc1DYyBrYp-WCnHsL+`r5sWd!d}51iI)9Z$@z2H$koOpxm{jF>iExzp(n{uEp{D) z!lm?&;qNhfyl3vM8E!K4n(<)KB{>v`!^+|dq=WSEtJ#);%u<|G ze<6Ke@x6r(CO*3}4DAY*3rH5#DZ2x0Q*#e-<_7L!(e4S`Hn3Am7lu6P0AP_UG#J@< za{fB*>35%_4m1KwT*NZY_ql#mp%&PVIll~TzYKh4l;DY&Addp{G*}iBKnPt+66%hk z)CI@tge~v!osKex_F^ovcaB$Dvkp7??t11jo-1eI`@ps>sVG0vT=AM)9;oz5j_ok%irwqXMt@oc}o z^)O-VpGR;VgwkCEQHX2>#7q)9nbl-|LZg0b*JLv8@`Pu#q1^nw!qv@*h z+cwgA-zGx4DXu=mg-P=f+)Na83|Dl1JN6PQ8Tv8VPO4JsEZv}cSR)6=8^>f^?leDu|`pr+wOOwiul6QD_N@`Qf~oOv!~B_T!F6=pIzko6N{GX99JB9$;P(-lH9Q8=Y!K= z!?mQuQAA074!pIwlv_4Dw2Ka$8(eYnQQN7$#@Rj*s;TJh`q*FqBV6!w+gp}OzWD;AaCo&uRSw<<@^3a*$j1JC>zm$TEBe_zra ze82tW!=t|7u;j>m|Nz0Bu0VaA#q!%Lo*A2_Sbj>Hrc&rDbM9#9%9cd*Fy zu^jL96SswCv`CbZzx6ocF57izD#nMU9=U0FUBb}yM@wnxO;V3tWFdzOM?|Objpw;B zEOeHk*{Gi(Pb9^5Jy^&OkO(jRxqnEq*PwB9GtO`Jx#LjrQvx071AVw0Y7OWT9RDMs^{D3Q95!Ko)YD~LE)%OOqYXuE_u z_XSLBHrV+?D@=Qgd$cSL>oCIBP_q$dBGsW54n%WWzhv_H=n8PlANU*-th;o_7-ut% zisc$`o|!51>iuIAJL8l}Cz2StE6rCR{2<|&kzu*gJH3ea-aVq{{@p};Z|9Ed?j!te=BRTUZyakfKdh*=Ni5k`j>;jKlT^&>MxFeK z$2C+U+rR%)tftLr5QPCN<1lkE4fc zUx|5_C$~D~lJ}*QY0Qmr|4wg=0JAqn;B&l@O61XFtBjz=T_k+FH)9ob$N3@h1; zXP?nt(x|ua*vA(tT4?#dDcZW(23?Ne1Rh#;MM<`tYumz{lDW_JKZO^oo6nCWA>`ZU zx4&Fe7jPW22-k(2_2i+EiJqHx(I3(ZTpnZU)ZHU4s^-Wi7(k+3<8I}$}*TatgTF@4SWe{ zPUQ!~d=7*B6$qPmq(RYxB&GV)N0lmitN=q3QA~ z>1k-!G@8iMP9MwzB0lsphpXiVKYQiojtVM>l@;-m{oOjgX`U%l*+ca;S67t3(NW+@ zKWo^mze5y0SnZ4%bKR;`xG^MlC(XJ@ATrcOm}bf!Z`THL+pZheEHhEQ$c zfa|oabw|LCdigs%o2vkBxqDRLte$JVeVX(7v>EAtt7lpxI#{-}wY4|4XliTPxDmmO zYOZUp&KatM=0=%*c<*5YH@ckbRvbOx%;WYtcEo-}=mSk>rdso}cQ5#+6sM-=(EaP_ zhMguxd2&tkHAag&g3Z&y1#;7uNT#L9@@?Boz!ktIY}!KWvbf!TAriv0Blb4Y2qTqt zw8v!eVqn2`Up=MNxukdI75Q*7#joibA7n5%;9;;Yo9SyK^ZV`10)yVzrn%+31CY@m z>}%g*PQZujJ% zBKyLa{TqAcYnC8UDoPVR)VYIbnAG`h(X!U~S9qUYR#{345dPBRXP(~x@K~;iRmXDO z7@Wny&pA;nkPFU~FVV8D7(Qtvp6IiTJQ`_D;ksY`WvHsEKt25wp@5MWQacx5^m`BA zv^_t(0{rV3`ZJsIGNa{DzJIC7sH+cmG~0YyY{j-;LdF-D(6N0T7pddMFDe~(Dqlw5 z%hluw7?y(XTIKvwa_y6w7aek-(i1oGIti!sCd-Zn~uTv%zd3ApxX0np3fhjyE3uc((rx?ke>NmwVdy5Q2MrRjtn z)?R9ky9#%+{CNb*gXfvH#FQD!H$vk0CDvN3c5@1_zX%sl9{yfU&fr3>Rwa9`{GugCkTbZ9TO?1^ z6$+Fd+b$W+&gO=<3N7wS*+A}mj^}e?(|DSVg!Y}X1;&JU8>n$QB>et&&UM5PRu?lIV+>i-(zJN%HE>jeXNh7R)RRpBA^DnMWu848CrSfvKvRQ&lczoDVHsPMaNpx zZ<@7UwFe48L)hK-9FEWK{Iom1X*>JgD|@{>*a^d3h+6vF+lYR6#64JlcKlsSJ;(n2 ztY`P};xS?U=y=a;Vspbst*|1_evd^ZKO6LY&nzX*bM=|m%yxFmCDhw_IF$Jc@Dyzt zVf8aGE<0zPco}G*Ym0V5tAbfQJp#`I;}1#PZ`6~-<4DWn#4AAdME7Wj#gCgoSAfXP z=Q6zZ6oHxNVL2md*+ayy*P$^+RL#IG{3Y8T*`4;HzG>^wtr&nwa4yuuZl&&qF zjn?bTVE=Gtjj z*W$~CxZW{+?_|>#hU3Apm#GCawQzSdV(3EP=K^aRvwyU1#NM-gvBVP9T9cvLrYM_+ zWjC;d@Tn zEWnGg<=J9lV}Tv{O<2FcczIx&OV{moKmN=6?Yh94-d;Po{&uLQRr4HQb=w{yl_=2x z+R?y^cRvk@=;|>x8CF8NxVd_Hy@yjJs|0=i@WmwXfdB~T5qMbmxPq%XIZv*cucWrV zcDxo9MC{K?U3(n{jn|r*zXVQ+V<7ZJ3M!fJ^F>R9O0beL2oHPbm^%C2%HF{1P zKW0n*3&R-77kn&MFK{g9fHn#Ssjah0<&?Z88GshE7Fc(~9QI~(7b9as|4cTysK}0a z>)!iSj?%`pI-RrMv1a0tXD}Pu_=!ET_KNV&q~y=Qp6Dkj%)?CLSHieG2x6uj%Vb}) z56WH&8P>%aZVkerNcFG+weSziR^^Sa9S0T`^vUj=u1lY($&|a5*B^kwGF>W;U29&T zB*!b}LT;DFw=Afh9h#vLwk0xk860!iInW;W`gDz`V(^IP2I-KeP4f5Q>3_jgo_7o> zcF4_3dPvy50&J0Los3DXVMA+~;w1|tmazzz4`?N_JyIB&N7~7`_*3jFzMF5e!_a3} z04}HTwj%X#&%>C6pXeWGL^~MJ*y1Vxx-NxLySn1DVJZ+j%)Ul6^)FB+4SvlbU4!4? zU%nR$eP5Nngi9U2S&2r1Pfp(no1w(VJ{h-~TLk0?^^U=QNA41Ev z-D%B#>guzs9jMJ?GI<=r)0NGb+O5!0GbU=+I&sWtelhUvN18BcZ6KAihTwF<|J`aU{`!;(k(Ycb=SrY z!mLyKvIx^XlFdzSz%KhD#$6%VN>De!dh}x{9~#)p?AG@$kzybDH)}uD0IL*mA>6Ty zyzOlM{M+?TrgVaqKU-VzTY)0F$hjBp2+*$DJ$SW zWJ6E&Z|?>1?s%tb>>@f8K`j1}9Rw_Wm#>7ApCs?6L?@qjZ9eB(zss<1c!wRx5?zD}MLoucdm7+8-52Q%tvEIw zbNP;Ouh`8SciHt(MAVK;wPH;Mp@``@D@$S3$35=1t6wqFr@1HD)C{?~RI_ z_DWWG6JsaX0rqj8&XQW?W8|MK=biiOy(S-_oBZB1W}DqOS%iWXTwuaxfYi54@PvJ$ zWiHm&6jCwmnd6^Nt<9NIB`jV>v;^Qpg$HpbA6uT|7VgY#jr-dVT40p!6m{Tauw!WL zi3+KiIqyGNiaHb8ZAirH-%fsSW}D|8-xT8zpIe(%&cI(X8py=TnvD}`<2v zG(2-ogSys%kIsP+!=2%A1z@zB_0mH>OyRHNVpPrys3xl4r`1F3Fse9xHN==aII|HF zPOKM>hF2Yl@08+8)lQ=?xPl$=BN^@@O)|*ESeJD@VhsE)^B0@^v!gee?2rcB|`w)Z2!$54)g#ZrxR4 zx+}}TUB%0_GJ}s@VdqV@*97Fe)JSTs?)YJCi>+cqAJXXu_lO^n<72S~-QSOk7cUC3 zFP7rIz6Etsl%wFUUa^ck|Jg4`K>on_1&w1?A zb*Zw8Ube5mQH(a?-BR=jH7vZ*Mp^w{A8Y5S51Kt_kwXhzXNWiq?>;LhQ|rj<*LxM! zI_XDKCvEH7-0H7I`BL|}9*bVMyG9fMud6+2JD;@~zqV<&FauxEO(Lk=qNl`huwYZ6 zj4-c;8Fx%~%VQkU@zh^qPa9cook?lmb3>V)t(Y-Kh(3Qb7pA$&Y%u zXp0c8oOO{cy7#1m`}KHv!N2S^x3yukL;8z-teJ{xtelwTFQ0@o=;ONINx7%^h%>>1 zi?_%2QoZXW&ezybIF7p}5kD*5um4SIoVhSq3+lhtMe^tWUUU&0YpQfDos2#DsUuEa{6791+cNlNj2GiQvqC?_XuNg%VMFXaseky#4qc+8 zfm+NFJ=iXzn0JMh2dlctjY2?0dH%nb*wD@Vk$Lu|=>`#{N|qK%Zst!#SAaD>?cM{F z_4r5a(u3CIl}4-nP>SH2zlr3zs`C%<^tpZ5xov;GWo1>kO2ugIhl(NS@6z;B+jrHq-MKoX@CObdT?aj*8(>Ls}H zE8Sa&JR=4FrZ{yYd+2Z*guVhGiRplexJ8Z|0apN}wU6=!Iy>&|30@<7um*ZkVAy#x z#!DG#d)LG}y(R>`7EijX+v<0j6-qbNdwOS|?I6GacH`B!*1>Y8S4-J9mrPfV80@%5 za<+rCU0CVh6#%^V`*Z~KF+xjiLAOGG&7@w#!40trBHpWC>U0D#sXPvrPqAvpC;FS; zF`s;LDjtU0K7B7n`IoaP1he_b#Fts%Ltn4|YAU$GB-LI5vYS?~9_UKD?Kd+YV?@9r zAiq^&8c~AlW+U42f@Qw6awU3uO3G@KW9~ zcxEklKOD*^{7We@-%jy!^52*c5?1qk6R{M(E#iAu$4LBUs#)zE)WLr5G9WXj55$1d zE;QFDp4yo987dbmE}I|bFs@@tsggRm+1&K-U2*-l2cEam`((=H2eK60QzYko-E?Ne zAgBdb>t8Jybl@jQ>oQI=z4+bDz5toO`7_3vZWnxwI}kuS6!IaEyGvgzl-J+KrSZ^b z5_9wmg>eTBE{HDAmNyj=#g_TWmJ=arT~l$)G!exg%C@^06s5Us zxrMsFaoNW9j1CDI)RF504s3(=Wp zZw_(L$yRJO(n>z#&?VPo|GD@tCp(KB4=~Z{w8dp(Kw3x|LMOy0Umn1_7i!n!H>O$6 zJ%szYiYgt?1ghbxyeHay_}raRTbb`5z4w?Z(kIX3T!VCE;$g0j%vN+IMmcT+ce`8# zGCv8^-AouSy0tA;pqnmQxCd0**qzHJL2}-0;(+o6`Xdr>%>%-mtm`hO9Tz{mH^WW% zh}Z2}pjg=ArYCB<{qE+JIMu_eE8Omz#EmI`SV`W^CZ|i~@Kgjond#_bBB%K> zQlr44q%3@#xi*ofW}O>*oHd`I*W}tf#W~fcc&n>Xh39FvNhb~?D6ek%#Z%v_3B_3J znNmU@o8fSV3msjc7i$wBy6pSKthWShyJ~f_eI4WN{l%dA@42aWT6u2gXVI~aM-sgy zKeX;Y$k5J7VO^$6Q+iFCC-tZH@x?G?cP_+8+l-*u{3H`Ddjmw`VE zFqk>oz7%fFm2{d(u}$Q-xB|e18haF}o8TW~xWdreQOfylz|`di7QkU&y)`HYu{@82 zr3Mp!bS!gRQ|HGSxB6E+K$#Itw8zSyPXr?;F-VnLzgj%G@P0JMaer9d8>ZZF!TNH zj?Zt>k`lvm@e#Bl*|HVIoKxM(PQXFe%P`|WY#gdR62jKPE)dzG5d!5;ggr>GD%rZ_%zuVESmkp1RaPGHFy=_P zC+I7zYy);kzeP`(sQng0!E7muadSp1QG2hOvD)+LrgelNh~sqJm`&aO;oGIQXu4o){%lFs zFUjD+IU|D@z6Z&vorz5rEVf=83u0YpnvVm^pK@nP@K*rC;z7l&nV6-?=4R7Np;Mnl z@rZV66|TO;FdDPZ!QzfJY2|M2T=;JIYRr><$r@gIhkLyUC$Sqai0X@Ms#_7IVA)I{ z*hml5&g#dmzJ(13$31Q_K@n8`LWg^SgBiN;=K69pqDwtLB*|F? zYFJo!RNb0gw^xvp4obWNoXXKHe+oB-(2!`%AbC!H)A{oX`xGT|vrXRbTqV_^fJOPH zh|9`8MJvnOGR_1DMRnt3_gcX4D;2PZDfnq!_LyZ&sRN1mCVHJNKO*F>hnXzhXu1)M zaUMi}^Vkqt{36=9V10+F4ROf5+-zDd77P;9&h`m6kk_Yv3lV;G{Ie_YAhf-`=MW?~ zqK7SvA({5*87`}jYNGGxxDU_moS)}x)LgIKW}4;&D`_M?@=YkKf7nV$^FM4M6%z4_ zeDwksd_n2N=qFczgb3L|MzgRLG!ebwl1fsOcRgRM+}kUxJD8u>m=)O~+nYHg0%MMb zHmL&s4*fO)frVvd%I*QBZ zmr#ldbFB#LmbgFp0uKgZBkVUh7$&%qdIrj!!>kKXX>nJ8c)j@REun(ZON^?XNM(1e zf7g*i-IKpTBYgKRRa;0%JGc6lOu2JFxcf#J%XJWVgvGiYFT~9=;n(`CK%M5iG7{}W zRsB9C&+nE$0vt*ulm^(pFk=k0W>3G!z7^y8CEd?6^tgWXV0w4Htra~OtW`AYd2Zrs z5a^UrW#Be#we8%Vf;em}a7u0BFLo|7wbXPDDVVo_n9X($B|e8aKkdK$c{@T~^O>F9 zsxD8a$&67R?ZmcT>2+ZK5Y%~EqaVIJ$UEM)?R^50>B5$NLPm7sR&eIArp5(w&2kfk z6U)5kQcGDUuSxA7JLL3Es3K7W?-%V|`dQ4!IocU=$N#*S>6TBvf9@?u+X>muyEbtf zT3n?F6{|cytWj(zVn7_E_vI!(RPZ5gFI#idwhg3v^WGbi^GoYevOp=7tD%r*!Mcec<9` zbCAdMWc<<|m+2N$xAnrcXaB(36sl00XhXbIHWPDQYBrrX3(9>WJMhT_I@kAgU9amo zZr{|B&-`h7O}EzF65|2^BKn*Bi_6y4iuJ!O+~3{@SO;h^d_yzp(wR?eO?CwdCv>$w za8i)on9x?+I^$!XI(FP9ah`&$0*6sZ3gWxd@98Pu2}5n1Baw`RZ$30L5)GJ10*et3 zEXDumoBbcj)ta~1W+k*(?91)9#a0W635GGk_4UmTK!S<+u|-bX(xEkTr;YGZmHhhM z<;tieEY``U_#JG1#A)k+hx4t0t=ipb{TTOB-^LSA*TN?VXE1xgGimg+L2u|o2ZQ)K z+6dG6Zez9C%KoCE!d)D0qq;L?zYc`41$f$V|qgrA5k__*Q6DVtIBkhaY z?gP0C%w=N-D=lu9FHpv018S!aPIR4W>z}W$QMCLOx8*#-a zeHX2*PbC+KA75l_BWEdo9h3iLRq3NTl>fyY5mIA>USZ-7%K9~!2#*<=tGgYi_|`%0 zEY1n(UzelXaKE{VC~!?+oPu4lc`gyh{!D&311;?^9;T&RAhFJ_w@+o>!KYMvXKZgv z{NsFNeH$?tUar@yZlD=ZAE0@T$lF;7Ra?@2rOW3q(0%a z?@;1vT#UrA;)nBV>2%xVPa}VRo7S-38F!XoLxW6R*5n*$QG7F}2!sch#&gaDdt(-V z=T8`P)X%duMs|N)d!9S*%vAH-FPC>?c(o2e(X>@K<`_Bcy0hA3HF#%`w>{c_f#ZR{ z`KLhCCYoLANp9tMZRv|-u+O!xT1)VBidV8)T4i$^?vcI}II=HKuaNAs*)T@x0=rj@ zvK3k>sJ&H0JEQDsfB7@he_!|WEee>HB`h~ms^)BLjqFCUV2Qg z>efi(HvXFaA5hCH4f^yGA*&ft*pRanBQt*kaSslIsIkN=R9j>@4pD` zZ5^Ev=e*cyopY(gNy7ZE3sv0SPvlfh*GaW~l&_LcZwfuU&je(SKwY0~G5&ZN`S_xM3DfPwp_#R!VYl&`|s$(zK ze8~Lv=(?@7+QG}sN1m*hPIHV#q{20=hRt`(_)1eUb=L2)pes@0BHFLx zWnu;A4+x2a`?Tp=jg|&H3DomJNSD%?%<%->G+N-;XB~ZWLQp_^4 zgfXp~3A(pF!K6gWZ+{-R?b-Wt^#k&VGHF@vc~9~4&byM@QkZMsxQb-@j>nkMNnLNH zl(v=;?DP06Q9sE%aC&o2`u!2Map?5l)e63#1-6;^_lf zw-^}geYYImm;F5c44?X?_N>s<06dCBG6lS%@3r~VZ85@<3U{gg@3g z>mLXRg53+{;HH_0d??Q}PxV{u_C2@}mn-;H=Vk8eE5P-rxYDRkPO#=Y4fgOKoZc~l zs%$0Au6rh>x9Xc>g1Dy_G?XghXk#Q~;wOQ2r!Cs**j9c2rm3(hcVCRc1N-HviG*|Z zC2oNE7L#Y$r1L}n`X1ri)hd#Gp_+4jkk0n(%37!K41yK67ao5?oD)KOY<+N55lI%Cd#20hB{ z-?J!DRv3#5k?vwTS$V)Hj_4f@eG@ z!t)6i5+75Vpa&|l+}}bV6yKKiMGsV|qLTJXf+rkU#KoXs3D8H#smQ`dB}E+MR1mQv zpL=RNJvrYwvvg;tyK*X5Pvl5#xuwlWH#q>U7_$?{@1e`9r)1+g4fOYcNhIANUlZIIpPtq>TbQi zQf24~hXfTU`1Yb8calSCs%&rXjLuyWY7xD`#gv|{nks!=I25*RVVKW?_gv{P^88z5 z{VI_kNMYs&@!uu+(*%l@vfB$oTF;g~lpjk}@w%asI+pLCvH3B6O|T;t#CfiC@_BS%UJp z_sFe^wE+dQg3yhX7OQ=Mjxaj!!E&$bcBt!WCj2N!jyO1{0l}1^W}N;10ktIW7RKBp zKdn@koUX`HNPhnVoVnGHN`m(E&z^l4!K=TkNbHW$FKpH>Zo~e%cxnHqt8L)2GGSR;{1}ikg9; z$8QWvO(s@ndD7n%&|nKIlO80d*0(sx9fMPQGp2V;PhDo>4@4Suve`<9U^LQ<5l)7N zO|r(siean#8Bjdkee1y`G{d&_fcDjIqVl5XAy4!1y**Dr}DOS-mE>(!#3>u!tjs^rr^tf~Jd;+`_De+KbA_x6L zs3`Td_Jw>|RnIS(h(sm28AN%8WW2iW+~JP60+6qrBChi>_LQ&GUz3q&gy-%c0ro3C ze~z(h`lyaK^i_E{p8Rf5(RxERy&>ve8GlRM6nKRavVQmJAd`FQdew?ff$(WlUG2aJ*oV27w(BPUv3m33HRc@-;~hIx7H+NL6i#P#CL29 z$Tjp4Z7=oEXab!59UReAr%u<-NNm@+A8XRIlGuD;&W$y~Z%IFRzsD-=uqu$ZfX4Gy zO}H4miT2HE;Vu1Yr2a}N_zxO4fz4y(A2$wyUd!di$_*>ttIuoA$5xt>tW%twAuA!# zi=4)+f0yjy6ir{)L;&7CTd9NnzVG$N1QA(*#7|2Ydj=x6ex2Ul6N_LyP}lJhcii18 zt`&4YErx!okDi8s-(a7* z30H5C>2Oi@ZK-grj`hAPS(k<`-1%hCh2wL+c>TIDqztQG+%>D)sws+z?;^e#O0i1C zRm&O1z#1cKx|eWFjYZcT_0_T3ZmqR1*T(A`!Qw`|=tG@L6iHZXe~^%Oy1j2TH5d9Y zSZ6=}OWu8sG~C2-b3ZONh3;Dr1>0@x=|`RJ7T|W%0tQvtBt8rF z#0QUk1A<3eJ{$%h@7Nr&#nbEL{rC(=<&P%`TR2z5`k9RVx)|YD9oWJ)@^DLhXl;NSPjTGS8C#?j&O`Jr`};lZxR@WD86yP>jZAI}&V2L3IEEsU_S@9b z57geN6q`dsw;y1Xtw&?_2IV2@x#)2%WdmJ|tNzLB_L_+uJ~cS7l)cDpF~O43So6D| z`tAHD9V_>o*Gq&%MX-tU+k;+z9|;<2_7n@0B$+!cJZ_0^s5%+}(e^ZNIhFtJY4{41 zyf6Pwp75VAn+eqd1O{>CfERDpYPmyN@b1&%gb#So-%)%{4~U5v=F2mtr0k?!n8WeA zFRWr~+)nC}S=;Q}%lg#udr_1-pSkoA_H@=%6c$f<^gC@ZTSh_62c5vB%(4uw&r8Q#k-eP}F6{UT%G*piBJRnAd$`-%U+ zpqWk{?4#SXFwFVYU!=g~Mb5u#Z9Fi_rvd1^WKqxaQLsRc80k~QK9HF( zqGCKkJxQ|^UhTqdys-$~%6vF|2-9rKs9BQmC%UOv{%NrmVC3JuY<0T+JIuuU*>|-Y z@K=jdG*p~^E*+d_zj(=i`)o;AfVR&MB{Yk++hLP+Gr?1)D;`wWMVb83uR=R(ozeKA zY&mS`?%<)PhS54X0;>cYD_wV`iB4@IIO&CXfqpZSXvi-t{GG2A`)cNna@{_r!v+5! z$o}0_Jl47;{H*ch0i57B54dG#lqXg$m4IkCy z`*DQ+OrkdT=k9AF@5_Juq}b z5Sev>-EB0Dj+|v5olqztg+Inf9$cU-z=DB!A%u9-Q`TjRf?3D&vo%%5`B3q-d9I(p zPgcHPH(lRo@k>#Dhv3VF<}dWuhA2RP9RCp$>i&(mxml7Bo%BAV^+K`rQrvCb0Y?{k zPHHdOgxn1l<%MsZUyl9h@tqm+P5H|*zr{@P+^4>(Rz!9pTu;SCPUhxmpTt94!ER;uzmq1MDFuUdG zVlkIh7iVDJlz%7TRIScJTOB0YO{t`DY0xFF!c4`{EZor}B6c4*uNgGow@@tKu!%OV z@0&Mpz@KpJbIG!ctSj|3YOuy<=INyC$JdzV%;_W4pPnQM;&OJ|o3&L=t^l&YhMu|6 zZ&S0sWDnupnd_keB05@unQQF^g^jj@m#$5ucFD7Krab-X?DFPdO{6%)B5nH955e3g zpj0b+fZlbuVS#bH=EM3>qZb zj_8uotepQT+M20J+zc_%p1%T&ff5%^#p!x?bi29PTj=pRgL>b*xyk&^7pyQ+zt&;y zvY(YSNr{}Zqdb2Dc*dC~8O;n)c265-H7_+jc<4ni(8nd2ppZu6;pKb6hDX&Q49SF9 zBB+OB#7E-vb*<)wh%%k4oWO2Vt<};>a;@Qn{$F&*?VQ8mkj*ny*K6PGSCag$f3M5| z)icE)vakL`s3ZtFaHM%oN{{Mt{B_-_Zkm|g8h8az5dEQ7?B|DAz4obq(aq7G!OeEx z0%Ha%FJ;nxT|yPhlS#g3F2hNJn3`kokc(=%zlQ+WBH&P>k9OY$Ux%=>o(EZ=8; zyB3cgX$v~0!>7PA728#pPGKFw!MBzcSV>)N)MG9c^seK}plBuia4Ga-3-e6{w^(<2 zUH~W8p^;yFvZ)>FU06WhlJz4SQth{an8ypd8xt89O8wfvutl8<-g8S*6JCR(l0%+D z{c-T{ApNHwOveOpnG-twl3h>lK=;Qb#VK1DyFYi=Z&N7NSeC#bbr0frKA~0Qh&6aZ zFS2tpyfvAqv8uJLDe8u~C6HB_0AY{lG&0P--(vf@3oPSZs-`2a);C{l#`p4EgDwjKp3!Uu%1vekaJhI^@KK3IiJG z04@;DY@7TTudKz#`g~yl7N}O(x)+pM8`DZV^I}YiVhPEx9ay^;A?+MpH|~0r@rV!k zxkasz-NAS4=%A4E#jOxy{0vQg{F7l}#BM5J_5X+@x<=53-y@n{Z6!;j*?T=of>$$KZ-_aI^n#cEOT^QGlxh204 zAcD)h&3xFY&7TnVPqTO6>dY>>yBrMa`IUb%t<0U^K325!CL~U&0wJs8qyh)mRjQTL z!_?@8S*63mHG6HUdpTaow8}^I}H{s z-Bmo?zOR>W9(d)H%PK-NwkvXeM0E)b+}D<7+RZR8Z|48zJr$tu{_KWa*S#QO_t9n| z>R!OE4q$v_MXHxvGP>gSgcMZ|9bQEsYSh#?Zf*abOkgFiX9iz z=9BffBFs?C>{p4eG;XjX?s(6j@u@HqK0ZCv{|MO&CiJ>1-rwic*YID&4SV5F#4iQ> zO7PX(wp#xHf&5LPc#lk;2V|WtbgS5|(`$l-cll*GH~`dFqYO<7v}z>bR-B*Uzbgv-Lm7si4;5bxQ{tmiP`~p>c*%K6 zEj8+YRAspOS)Kz6kD$}1iKQBf&iu04aCYknsX_UpL(K}MnSf9?Gcm^19axfh0CGv` zUL2>Um;SpRoFne@b2Wc@%Ws9*eul-1gwS-G z$*gpkLlcs*T11GXU~n)wuimmOD#2wqDi*Yr2u^?X@}yL!_`SLx%UoBE{?gC03{rg1 zc$w3rx_c^eaDw?oA1iEayN4s%y^EhLMD@a0-r?Ir&$HnsT2awARV>U4P&oqDvV{a8T#voL!{6pHELS z)jTi#x8hwI*2>b(<4y4ew);_cab+FaTDl?fu48GCgqmpc63#Huuu>}C7M3kjb!kP_ zqT7R4dvCj-`OcSdZR+MPhij7FqoT2R?rG80ry;5%a>D=SBPlxmPOHbAO zVd9zYwasZQE*d+%R&z7LktB>{GET%su%T^$5U7U$fsl2lg!W0wP0pp;SM%HO+p$$M z2-b0@NqabG<;$azOI!DS+q=2`a-X%2#b@}_`$~Lo_?*{mduQVBiGC`)(Jl*@2g4Sc zr21!tB0|LBAn@IemjZ>tD31X`g#-1huMV)eb`p;-D~$*_t6TSzT=g&i0B_1i^H&gK z)?=LJSk8WURK?X)q}}gAoSiBf_EcdDbhgLN=MKa!bAix+N4_!Nsm3#t(!0+ctE*ny zJwGECP`Ud(z(`$$in*DCe5_6|Hg<1QpUSn4s?A+!{{W_W_206ZZL5xyHO6zr#vb(((U=*@4woQ;(fQmU)kT|FT@L*ud_FY{vY^`TPd@Gnzj9mnpTOlBip!|1W?_TE!&g@kN-|&EQc|DGl}pP-!uk?$P#-Ve7eo@D! z0%Q(5lkdp%G!sqo==(3gpia`VqSOmDKOm|)zst4^LK5x&lhohqu`+-lN(k#D8X?H|FKJX6}*Sxj%C zy0BY|Neni|c-dnc7`Pzt*!ft2hW0h_$yz$yS!rt@r`DTI%iU?&wR=0hm-0GGT@PLG z#rCOmXN~mqvNsmjCe7lR!p3*3(JF|yC_j60jzbE3jxu+5PR(ga{{U-EbKs}!bMY%ux4(+RU-8APKMi~wVk-sfYQ8Rx;>POw)92ih z==vblHLynP4Lk0Vz*kmRhn_bv!_jfQC`s3=Z~6C0-<9fKBKAh0R1RSzTY!dTb4Gp?6>@mY{}-y zy}@UY?|gMEc_3q_9D8D|Jq{`R^1JgbEuegoFx-#&IM>HdC3a@Kn3?x**^O|)H4=okJC z?)bf@_*>%V$M1&vt^68&pNl>nXx=zkE~H4HH$DgPHI9QEVcdoDWQ*bi&Zq`iB6Iu| z@f>M~l<@c}@r~U&)1>X%tQ`LUI!Ee$7vkYd6`A2@D=N5pc!d1uR8-&J^^d`yV}HSJ z{wL}l5B-)j9|q~hbUzaQAX#a8oXS(lIwpms-s+b&lKkPzTxwEjGei|xK(mm$DcBq1 zxDN{&`NZo=&+52oREmGkIYtSuNV$Ffr`LFwjh-7Ijvg2P0ByxWl;2NfPBN(^`s*%6 zm93+_y8i$pvcA-80myH!On+Maoc?}-yyCySzcFpx#}pH<-G7mnzTuDG_>?qY16f;m`~pKvyFeKEuCSs~kMK+t=_jE@M>% z#|Jq5K=u0mbi9g#acx}X?%2gL$PX(20MD=WsFsfYRy}MrrwK)^6cW#N2&Fj=|+nZBfI~SgH1%O1#j6wco)A&1#p&x%~M?<=Ky9!9MCvKR%v-4A&gCIxaN(~boYPPR!y;&X(VSD7|t>?{s)R(*JL?eS@&u`*T}%sUFBv3 z{_YQyDem~(3G0xf?)#I*F;7ps$rCo+*P>sk#K=pk5ysNz88|Fh|O*NJcZQQ+&wvefUiON|0~QQZl#y1vtO38TsoaMwCjt7E6g z4^dn=ygV^f)jEkvDx#WFS65M#e*XY@`XkiJ@wIa5(yK+aIZ>4+)3>_kPEYZI0RP!B CzpI=8 literal 0 HcmV?d00001 diff --git a/public/assets/avatars/avatar-eda-annies.jpg b/public/assets/avatars/avatar-eda-annies.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3fe0c77f665ae5f23928e29e8968e3004aac221d GIT binary patch literal 24122 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

KuZy${ktS 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 literal 0 HcmV?d00001 diff --git a/public/assets/avatars/avatar-rustin-rathe.jpg b/public/assets/avatars/avatar-rustin-rathe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d2f8cc169e15f01453046fac893ac5cfe19915b GIT binary patch literal 23866 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 F{{tYB6$1bO literal 0 HcmV?d00001 diff --git a/public/assets/avatars/avatar-sean-picott.jpg b/public/assets/avatars/avatar-sean-picott.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e474d7619604f2dbdc497c8da74cdadb395d4ba GIT binary patch literal 16793 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 N&Gq`tw&i<(|Jm!kaLfPz literal 0 HcmV?d00001 diff --git a/public/assets/flags/flag-de.svg b/public/assets/flags/flag-de.svg new file mode 100644 index 000000000000..bba6365dccc5 --- /dev/null +++ b/public/assets/flags/flag-de.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/flags/flag-es.svg b/public/assets/flags/flag-es.svg new file mode 100644 index 000000000000..6bb1d4b58d74 --- /dev/null +++ b/public/assets/flags/flag-es.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/flags/flag-uk.svg b/public/assets/flags/flag-uk.svg new file mode 100644 index 000000000000..6bd75d83e567 --- /dev/null +++ b/public/assets/flags/flag-uk.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/home-features-auth.png b/public/assets/home-features-auth.png new file mode 100644 index 0000000000000000000000000000000000000000..e7d7aa9da8ef9a17a55b9412ae70a3a19eb0481b GIT binary patch literal 236651 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�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

!`-`TahZTW zaz{kCIq@hvMVqG^oF;x#sYsf#Xz{n$#O&rfRRHt-R{bOh>Kg{4bgHgQ2CTot1Eugh}JSVnDqt{nG z3L4CA6WGss?^lBLg?>*X4=Bu=+jDzUH-))r#nBVpmp!tWzhJ)q8q6_JoJnD(5}+SY z;UqVZN=L2Q^c+Gaxw}}}@dELJBb{_nrA_c&8jOFg>-|;Qr6S+cqYj!);w9>-Si6-^ zC&umb5MtY6^~2m-`jVzD+VPE}bnemfeE5b}7-zdfW7CONGI)BZ=(&r?ZF#QgR*|86 zgt+z^f`r{br8F#aQ3TQIT8uVFl4Rys$ z{*EAXy&FwbwRsHdx@3DpD8*#K%*iRr#mZ82Q!XEST7XgGB4X;~pczt|Ij_A{jStqC z@Q3PFjho1gmwB5kNm%2XOi9cBJ!FyDVr|~e;pXha{Zk#2wTmaEl48{Z<{dg7b6|$` zqx6roJB3PiM^w-^mE>FFGL}t9jY20|?kXj}mqpp>vn-Cm1W*8`2}^ zUqY**{=V5qiSo#A{_L>|QL$8{b0=NrjR?^5bA1`^OG=*0Fw??T+S)EX2lQFL-x`OT z5M_^te@&?D3Q#Lr?zc<5 zm0`%f-zsCOaopCWjkqzkNl&i_yuF_&wSr}GckOr`PSzqBpyUJ==D)8`9w^>G)b5 z(h1dp=o#YP8}ycxHT<+`v%Z+d4LNP zOW^V$};i#joes2F|E^6tu5`vGSpH;>8;^xSr<-wNY?aE?K5Zr6%@B zAdm>Wzbqn}Jlol^`*V%Se}3t=P0q6${-j}#?5w2S)C#jvA)c~Uy}`h@m+ufjL)w&l zstHZzh%FwrtVCM&btVqhD|2W2cRYj6uH0SNqv0Oqvm8Ud7p+5o;?njq|>p+!IS(trW^fcj9o%_OWmPWK!i=F+R|L@SKax& zTrPrVCAD^oO%DAN^Zp+x#X&bF(4B)|7fG7nHP`TFrnQxy&;~_B=9LKj?BE1<21-63 z;txTFa(2?9YzM_px1MVb5z9ovLq=L9OUc?zxlMhqsC>3FWS$wrX3yvaT|4EEjs1FR zGF4Z!WA9JzSKtu=oim7Kk_yCbRX>@N0U5V{_r9a<6C~-q|Fsm^Wpx?-=R4^sbqt4( zF7R|wrBrq-)$+f={8M1;w*;T-4mW4%Yohqq%MBbiFOTJE8?pCIa+<4kfRZU0PaCY3 zI;#iWFkUocbhuM+NV)Ue08-%XQ5cBJW-pTH76{Du(B9G@}{MG9|jM+ zJVu+8%sz7?+AOeAjhZ{H^}7$?=gqeJBr>b3X8khUB=g=Q-Lpb(DRk5kJ>l(_pkq;E zGbx#RGo$n=p%p}YDJZyttdV3eG0em5{Pa%_2zK_KkR! zd)36QPU;Q`-5cKq{piJrK@dDON$K!`!HorAr|&aK$KhP%*vckmPb$@;`quxuYM7uv zN4e6-1lHX_Bp_-jDV8s@P;ovnK#aS4)yvO=J|Z%at1KXsn?50AjPRcc4%MN?A7R*? zU-7xu&eJm#mW_}beI+sm8f%m?2fds4zSEF+l(%dW$&dLn9sBW`jsSULbyuBv;iU0r z8Q`NA6*LBz)&Dv1s2<_RP^+o8++XuiOZ5XygTHQdN##J|#PARMGWgQ<|6WOW#l!+q JX>=?8zW~H2{?h;e literal 0 HcmV?d00001 diff --git a/public/assets/home-features-filters.png b/public/assets/home-features-filters.png new file mode 100644 index 0000000000000000000000000000000000000000..e8555b0fa3dfa907dccd4b43be56b4dfef39b27a GIT binary patch literal 35285 zcmeFZ2~?7K+&{`xGmX>Yl$DjKGi6#?T3MM3Qrc#k(rRi-Woo5Kint()GcC62q`5Ch zZj=ipC9Y6Y$+&?jN^Ve+q9CFoA|P-dY;5Lz?|aVw-gEBxzxST|KIe3_$7lKezQ6DC z`EJi$sN3NsKdt=<1OhE_K62m$2=sj}2(;k&k3VS7d?(@qKXk4i@kD??t2S!?edm0_ zWDGd@9pc1cM^G7K-7xT<1%dmI?FWHgBrKY_@I450_p0-O{imY78|l-@@<&FS&BPQN zR2To|`)q%T?=O4q>+~%NxD;fP;i0Gh#{sJ?S9^DgEBBjPUF_cz-~czhYx}#^n$Y`_ zwY$qc9N6$Fk+|U};`u{YuCMn#RGoP+w^%>-nWuo`tZur-cv|gq+DA$%5X+SE*KfhH zVA&ZY`?C!V6+%`q*8+5bK-*gsUw?td{;+HI%)!h1=4*d}-u#~vT0Z;_KmJ?A;oYA< zC_CL=d3yK8yYI?u(JAG&3~De4VoikTCutVh4L-t@yN(TC@lZthaQTPK4QX&Z9X}y& znKaNU?dt^vYN*|wkVCSBdS9BiX=J$ZRj$x#2M4U(ThP7B6^I}j{aP0)kce0JrcPD) zVrvv_*?&Y>_32z;qvTiQZ3Qk)n71^HzrT`%R(TWDQ^iu zmX|lqTFlf@ZYt7g)%K#m{Bq5k8qE#|H|I}Tt(+)@)fT$g#jaVHfWizn#Ykm5p)kmU z8N*Y+79+dboD7tE>a5`P?zXAfFRVV;d08d@r6uG1#VHER>VrriI)NcPeKbeft%pXb zV%Q{d=Zh*cm}*7Kp`&~GuO|AbFR|c5oRH2yN9!$0j3g6l$ttF4-a;w8p&nk?3+L)0 z0t?auT&-)GiEEhf+D{$hwcQ&Yq6anow}l!9*0^3PCRvo(^8Lf7t2K<{T`?OHnOasz zoK)6b2wFh7Ds$L3;qEso00xOq*C7%&Fq%>fR|$&L{pBw?Uk(LW`c%KH_B?us~g5IW67wRBtpeWuE?Dm zdK~%wE;eel-umyBXz$s#YE2EN+Sf|17Q? z;mG&d`+C9U_oDa#T^C&J0wdGpyux_ldv-Ba| zJ0oDfB@FeEr)zaoCFS$3b*&BbOvtx8Qd9!5q2`1Jx_XE>s`EsnzNqbkz<-I_$$+q6jD!0I7dE1_HRnLRjvM#RNuQ4AUbwU;@XQc@g2+)7fWRm z)RH46=G{{T1T4hhs9TMN8V~SIB3dbGcsu82zHZ^sehSWgLoHN;cuyEfpXE~ z297@DfYbgs=>nNIcf5#zRUlwTNmgZ{UAUM)VofC7&O?lL&uXbtzKNRIU7YX}Qi9}` zj6i5&W5r+e{%F|58))Qcd?drRVZvU|F8fGMhbrYh&YG1NUvpK2s6(BgAe=5`xzkI`iZVsJda8V2h%6qZ*x+U62A?zQo*G(iD-)UF&(vg# z53(4=Qz#B*c%dVPzcIBy)Q)XacW1|}jgCfx@rn_BC)Ma~ZbAZNm8?DeMX!xxaTxYt zx7=4*Cu~=%ZL>qV%adWBKFUsUFwQeCS&=>y)W(SbKH59En|-H2RN6DDBmI*b<3g-y za}}^@gUPcp+i0-*&fS68{P7vXVEd|LljwOm0X8ErCqp6N&H z&&v0$n0XF`P5jBHOU_o5l>555@_BX2wkS??1p>?EOcXA1!t@2fa`rrEf@Cl6ge%`h z7E11Njm21aFSE(w4jnKj>dnR46F>}NmprrQhD5Ge1wIDo z2WlYHZ3V?UdJ0i1yUr+Vcl4=Kq`gFsNKovJ#t$?f*mv(NgsFvlT>{@KlC}s*o|sd_ z%(mz+T@5g~g5ua$jSM1kRUG8FJ>yvpyx5awz1)}t-jl;0fK5lCvpDRKJ>1CzLPUUX zQTm5WhGGE9&05}yl&)b$ubLF>K75+75LjYtxxn~zie9rm&A~Lo(wUqiHtzN88ol$@ zZ$kbM{s%heSoLKsD?lqgNOXqK3pX;+qbB}ACsXYjK3%=?#RyviK7r}=B<&u=R&RW0 zX3l(KR2tFCD19%dq)2(3`HBp7A-DPD{^XYwPz(g`k z8Q>3rsji~W0rtJmT`GLOxzyTs!p8e}=90c6I%ApGiFT+YSODnf_kJN71-rI3jB40- zJ4}m6wwDU@bi(w5YSmsf?MA{jNb$kqo;<}R*M&M?$-XxvUl2~k9~Zyl+Zno~)^}~^ zJ19MzTF99aNon_zM^vw!5yRyxAHG1kSh%OY5N~6Nzp#=TrJ~V~)urWFEWIMQ#)`#P zb()(iTLh8!B1WDuJ`ImRL`7I%sb`mbDf>mSSqhr5ryzf-+s}h8q4LV0kz&+#)_t|g z&Jojt13-lkH>~f}SE>F2WpXATL-ERyUGwe5A0KW9RuG$h+{FQI+-oQ(5GRoF3n_G_ zksaD!YWRfk(Y5HV3k0f$ z$?5Q~=^Fhk=8hxEqiRj2%6!J%j@PV7ND3Sc?pvPJ)KkGpn$izEDn53Ka+U64Fjc^- z=$F()jJoxl7H>ypI`@S<*!9egVX&+IF;g~SiMD51&v3k*>ZW4Y9#b>~dw%kO2TmME zz>YCB>sj^)g}ZwC8X-qk5;*G|(rkJb^57r&2PCQ+9bY73*jd#vl?!A#HCbv=x77jL zerw!{_QM&AYyb8pk*Kkbch_pBhBNvoJrHSngRP2Yo@7xpjKu(H$HqN~g0PXpg~ zHNxd8ZcE?^Zdlg9hqi*IwSEocmv+uW;WGhwd&t!i|Kg1$K}`Mv$x57F;QYR*_7(zG z7Q@w*3W7+BkUgC>?GjB*dFHk&@>`nG7DCR%L)sE#OGZOW{w(qdvu)rvIjj`K8;)BG zbdB#|3haBL<@>TO{ZZotM?1ONYS@p{sFv4KlRiY({I)XgVRUaOc05NX@o$jyqt4Lr zwi2G#%gUTzIItKQId_L)MvKbjL}ZMi)XuIbc)FmnHtA!$RT_W<0!{IC!;^<}q6@=2 zMJhoS9G1#%9}retP&p?nZsU{_FR|y~!ipM4FnYYft1&#S3?w4a>Sv#d3CV*PYXf zKVnCpB#YBuPFc#cDB|Ki^Yp8~qb5VA>S!V4LdgU}lAYevA??Jk(?XegyF-9q^|Z;v zg}D&f=VCBK0NIqjuryX2$*M!Y_n<8kl>3jnbqIa+lIZ-b)5lJ*^_ZoPYs+XkieeJr zc-6+ZbcPipO5Ig)jX)haXnBV&Hc3NFfE^mG@^AwqR&CK5%)nl|Nbyze!nPyMShzRv z?}tr9M-RvYL{@!a+)ZW#OX^qw!B_EH8qug*a{b1{oF+KVtKMK1O20 z%+~iFC&Fbb1j|eob(eNaN*htpw4ekZLqX@ZNWRsN8mv&OmbCKCrWkhzxxN$FY-5I` zt9Ia+{%u7C1RXd~NmB{#JF0k^nL((#jr4C5Us*68${+*Md?d?)Tc;zG!Bi8o_X9}l;e5qJYPbc2;vg6Bkl3zb|nz~ zgZ6pi6mj})!SB5$szQF*Sg82|al4LlUG&cm8PTJxG7%S}HGy{Y7?5c2fUNzfkYAeV zH%c1aXoByW*rAa28xRSDtzzx7fl%h zCyh}0?#8nj6vIF}&71e|AEhJ5ii)JgPDJmPL;iA(ho?KbNP41_W?&gT4nM&-t8%8QK5<40hSVer#I^F06f< zpV%V1RjCT2NgjA6uvL2n{g?5r4n^}us61(AAT;8k!b$u`g zXm|C9B5K}Xd$?;_r8g0jcZe(A6&%m#+TgD8v#CbiX%7tGiYr7r<2&SJ#P8898M_H( zK8VS*o@1EXQ>@-_KYOvE?ipr`DC0Dt%o$0#TE0#z#6xcSvk)tGy-99Rz?MgLC-3sR z+*Z4v8J1)#)Ej55`1vQ{vzn~MQHp(5jO)WXX0d@mo1_O?q>|Zydrrok=AkM?fr*i) z605SC)Qr73y}`WkMApfiSN6j)|3q@SS^8o;ocvO|wDT5!e6vZHO#^>#_)?X#x(wID zmy~EO{1K_$wOEzeKd?nhEojBBb0^leemz0>pA!Hh_AUD#e$2|pf44X+GFTvruww;~ zyV9KHm0hmJ##*v+SIpT<0Ow7vgegOa#U6%h1Wygz)*D78Y+w) z0HWMWM3TnZaTudPO7e#9jXI(QrPx;@lqXbGLgg|62{Tuve{CLvd){ zHbSRft2H;`@PItoJf%n)Z;Yr5cGf(BE{wGQ`D(G=uWk+end`N8LMeQDS4j9o)oB~` z0cVFZ*5rJaCvG6<=*Vd+CO>@CW!tmSRR z@ix!OYm;}r!(1_ySd*$PSf!C1J;7aJ{32xg8Uq8rHGmT&a;F(GC&ONR!vurwmi|LrR;@a)3 zj^g+umVbd4X?N)S#c;iUkZ{#P&6g!+w-tGhqpG(JMkE?X+?zwc{w)h#U0>Fo|@Obas8sgzmE z;9uA?i-ubt&UqLhWnxx(zhNM#EP?#UgJiptrPo=3ziA>#4!q zDsxr>Zg3)sBZ`p9-%O+3yk>XQHRYezTYG)x((ykhwHT|;xh^nvcy7-+*@=gGD)S%5 zs^0~cEtdYFK6s@r$x*atc~#E#(RJW!t-%(=t&s4BH-wPA@@Xj32IJT3?iXynaOo1H z^3#ngaebX7s16s#G37(q`ix=K#~Ng6%!&ZW?7MmYc%UKH4Y9lP;4AvObUL>Niy*>r z?X;&Q+3Y6rBMC|$HaW3F=8#zaZc)Z7U);Ubl%5UA8QImJ-$5bD0{Be@tKEGGa^Q6v zl%hMjSV~gwanL9{G(u?25BQ+BPuZHk##ow!6EL3p8I66K+wnty<-}3tVH+k)1EIWU-aIdg(4lTcFkNS#@sgk37MNRV=)<~B|LV1+CO`lkms-g)o)O^W#?k;-zGQBS-`U&heG?7 zGqOPl1Y|?ARSvq05jCo)u0Ix@V68;mBfrq9OKc9|{*T)G_ALw8XO@@vhSz-ENLo=K zs$b;5j3q~(5%pw%)JUQyb=6)pxCZY zwktrfzQ6qIe9k8PUhMhChP(zWMiyxYIzQMvi-sS)HR^(*Jd=3c7hu7$-3M0 z(43z!$xT8pd7epZUv=z)_QHoWN1X7snabh5Z8fqlLG+*{)z^fSZHx z^L$YAL7U^X82TvGc-`8i$i5fFjy~bnsqsz7-`SCJL6uEahmkWolQJM|xzTTR82tGT zRH;uFGQVH63b3weN?UejjnSP1ziQFnnf4?L$~P`at>)c2-aD`}d(L-@3B7_~%Z}v3>khaOH-U z%h7wWis|mW1fo4e!MNE4R5c`?>gEKs`XIqbb@TCoGMMbx^-hGf92KTKpS54r`ZnP< zYGg-TLRC(_73g*Et`ALr)^Z@K5e8IuSgb4kD}~WpM2JReMmU+%kG88yJ^> zoZ#-eZL0X2IbhK1bKASVT=&%wAMdMD@^2_P%oX#uMAKyA2RcKi>FaC;QQGnfqUQjq za{_hPXvfb2ux#{4sSa3e0IzsZqa6`^g4p`e{>Oa zxd2G0xlE;c_!8K|ccLI=`a~=LxYsMye9-mt#3>!&gfzhPtI&hKKeEp~%~!jqofz7q z&ZA22*0iN^TXM%53$55*|8$wJqod~o`zq|9LKxFDm#oOXcR~;J9VpGhkJ+0!jeH`;u>FQ;2Q71_BP1oC&Sz;Bv+;pFvswo@GMS9U*#Z3NiV z_i@d=yQViKUKmlW&rHHoGd$U?zIunD3I03KV8wV@CrX8Kn^U!2Ks2{W01M!>#8pK~ z2J8V6@F*$j1Sqy)C_=Sc zp+DsHbn4h;Tsrr1ruW=VI0D4RI(ogLBg~cO0diiC3`NxKMqR1Jt`p}S9Bh($lYHSv z|4qiNW>JX~IC{N&F=)GW)zM7uzaN!*7^!?b9?`gI=DK7XK|OTadrMD8peg%R+frp) zyXGqI?u(o-w3lDVrC+MEHK&|U%m;-hK{lB9>iR~$EhVT)2Jo_y4)(y#($h7~jY6>e zaa3KjSM}(+$jg&khdYD^<`z0swIKXy{vyz8bi3$ey<{Tm7tcRZX2x!(xeiBwlT&2{ zQkf~49=HudbS!Jn8l$a{s-pnzw^5aFQ}IQe<0BtcwU5NODTk%1Sn1O5~;9WXie{GmA*rm zAIx;m3}k28j0gYS8{xV^OKc))&#$IWGOx%ji}D+eWPFh28T3D(Qdj(jZG38WrnAS6 zXR*=agd?h~<;#4~`4FO6hR}+@_nxR?EdH9RPCKOaE8u|shWjtbKNS_YuMxYv8LY*_ zMw{;eY4ZRM)pN7f`v5*ZFNMGC17gOO?33x=7xW+Yg&ywiKsh1GY@HY-%M|rpK$uh) z{N&9*XdsxG#C_hx=GN^|+DLG--u7$Qzpu@@VL({}0fA7SR;t2tc0QI0;ve%fHRiKc z0r35^1fKsvdS;@kFT~?2spa>Se^LyfSR*S=QG7yX^XkBbqHaGc74V>*C^mj!cc^dz zi6m{rTg~m}-t&5`eTjB4#uPv`>MqyzzOQU}@DvOVY(6!wz$3{51nLU*SyJ^=ror5z z`eTpnbKiAk{iAuH)=U9y2fG-5bSda{^H7KI*uS6Jer){@fEjvBk`&hBL)>?HC-W+E z7J$-Vg(yR7A9kiBc@Akzo|{*VrC)dw`HLWOugO`U9#3H)&%wxws6<{wem3qqJC6IN3 z{(}oor^v1@_nNazDAVuywh_XP06{7a%RNtYx1Z9c?G~09+C{`wqu*ah9%vb)CN)Tf z4Iw%y4AhlLZsOxuDxV`Fl-Y%xo)17z4=U$e^~fL4majV=J1;||pzk#LB(RLU%)Cwn za%K90#+5Ekm_L^_wXKyJsV333wjhvlGmO#kyGb9Gx2;A-H6(B-ejY^ka|Sp`sdDSk z(~YOSN~8Mr*76@gDZ$EUVhqXJL+jVwr~343Wz=i}2eMkImjK?vI(UE8=}zIR11~MM z%!=bdVE=5JEMv6XU3lAX=RjGFcnNZt5PGQTo`2kJ)X=XgAn`VsgSr?EpO}6D6<1lS z3wv_ncu4LJ`Z^=Qud4Br4Z6Njtv9Fax-NzLYF?bNAH4y99LZ=+zjW|ITonfpn}kE% z0PNYMD(tC)B+#x<_>bb8d@!eKIrcAcp+w9gUf{z?!Pd)j5;)YgAUp-8%1fxXTb1Cj zN_>8Vqk;mtSKWevgwqvGGIKBR)YLIqc7~B=Dzp44795~dk<1#a!FV}#b6$_^Lli94 zSA%MnL2%?2r8TYj6<)*Jm?)XB4>o64C-(`d3~9YiE>6*Mz(g*WgTC7nrnI<9W9RBLb{;}Tp1(vJ52em}fz zn^GoHNPm1$8gc9aSo&ex!p9`0 zLUCf^(*ARZ{m&LD+ZI#5x5|7^#Qo5a_e$6@gXT}zvyHM>{s`Lc5$Z$GjUk8!TvZqBVb!6<)8tNPe4&NPn>qR2N9q%#fJa(LIZ7&DEUnqDb1 z4?W3+S+_)oH3i@x2a(iT>WOL$ZkZPye8?iX2~nGPsDk3Rku4-ok6_bMTszc2vAZav!fzYiOx*IfUH( zia9YPrK!FqbU~Z6fJgqmMt2G5b$H^Z??HQ?Kj0p2rad*2D5E&D31QH^?enV_-CYTa zm0v3iT*Y8v0kJoG;QQm83DA0K;LtK@mRp+~=Wv7;X8_0lwiDHP$?Ej9h#Eun?0e4# z&*eg2Jm0^w$`?&eZ)dj5RsmWwCm!DnAa|Rwzz^oge$ut)uPDt+#Q4+;%|!MKMRvKu zxan>gy?HG%5RpZqUt;5hXwAG4V;qhF$Eua;?>`!=)mhwnB?_4eftOLNUe5(u7k&tD z`Rhn+QYcqjQ@zf7OIW&O$*t~?_jU$|fu*eJNUy1D&-joI9b1EH+~Rla(l{touK=)`&XzilF);Th$O0ptp?(;f8K*;wglwq zJMU}PJ`uF(!i79KYd%*tir&uR#rt-p{ZShY=Kx*{IHrCz%MmN&=l!EcU8cPL0)|fqJ43-qNS(i_VsU{2|eOwFY}tPnG2=<1{|?E z8J81nNP&ODtQCJp#LzS?U;~cr5C0amLQl*T`9Gih$?B`xfC`W6n&nD4T9(F^hfQ>S zgIjab{J%N1y~qGu*cCjRW(I9?pHue#lWwCzzOMVVtFVJv_>DD7zDmG7ZJGf%a)10^ zp15=CZ@Y7u((};w?+EL^sB3_&=cB~U$(?)63%i50&jx`lWqPvg;Zk>W$R58NJ7gOr zJl}s{PHJpfQ{=ishYmUVv{HTn?_k_s-ln~))#+kNWUUFp*9%8wCo?qO;on=Aw<%nn?k-&haTH5Wh5P#_U*DKNUQ1W|Dj(z3GO{^Gk z&oY5t{MoN1x3oLG9_UYRzyycTfeENmfwG&wbxx#PrXWF+xijU)F(WSku{U0V?CF!m zp*|AsJGJNx7q~3FqFpBlY#Qm_zKQ=R!kh(u3((7~12VZ|dE?{HHYEHg{bS<`TIF@Z z->Y}60n!73rDtmWcI@1_T(BYGy~$*}kM6DNn8>WI#H2Q`Izr2VeeMnTjj0dwkA!QU z+;9Y6`tXKe0i$kZy}u&={rg3ZqVZ*|f9uX;ZDFFsK@W8)Kl`fdp@f&bi2%E)5lMDJ z3T4(REsd(O{5W)9^}5%%*_nT9Q9qBmBAU^J;J(PoA6@y62Kpp%<54Z-C*Q?Z6?s3& zWheary8eqqVw|>FO7o~MPN&7KpF=r+#OCBGdLE0$hy_lDx2&fiBuXOP&UdmGo2#->nI&!Rah5~Ps3}-4P2b-LWm}P31IN$kWQ2y zID{mTaaq$X_rCR;{;mF?dvgZ#e=Xzx#T7#t|2VFzbJ}(B!i{@C32Aow&I{%|)qk6V z{oB#cQTP8AIxb$&Mu)NUkJ@zv_@N$fVCEgv5Odey!=iKjxLuhi?RXI}s3|LWIEUHI z-T>)~hIIQmK*m+p0e^iY<@wb!0=fJTDrIn%M0|V>^Z-59O-96_mEGgDhuW02zhHhnqph`^w9fjt z>6uGn-L$oD-F;7sen@)JVG=jUc_wtuw%q*cJgkDBHT*^4%-m|^WyR*asPz}^%hSW} zkW7#EkO0bhF3wYAyzzEYwGGqkIzvpe*7eE%y56g~2Gc>dzaA$HE(qsfYrkkoErr6W z1(Q&wn=&2I&=GFyfmLNdJuDzwJAd;}?x4;{i+K}oQ*SHct<^Mw#W3t8v(Mf3g*U9! z<`_AFer&yd#!3gqXhzb5eJ&0j|1nqo+J3i3VoD4%FXLw21mF6mBC#Xzc1BWbjd72j zp!}9gJ;!}pD2hIYAuL@Nez`Y>?0~Lpir)RK$J$_#qfZY6>P;p!jTde1vOCr-dIV+K zZZqZJWm$+V%-Jq9V;Z07q^duyZ9^yHZ3or2ZyPT~GNC2&%~K2K7p%O>^#z)|T*W}~ zsd3`-=d>d*o9Fi1t`w*s89BJU*YuM<`sj7>)>*0m<8fjGIwM8GSF8P#(oSDqtJUnyRwVoOwYIjmK zf_E%abzNh>AE1LV&2_uLTOmr|)53l+O=Fih*s|U{{-sR$v52-#@QTen z>xq5Wn0DSl#=cmN0*bBXN}PBh&>N=XeojxYjRMy}9zMEC7w|>qz7w@j$k+$wE!(Wb z);Q7~zD&WDmxkvYJ{^w}A;-}`7YeO7*t+dbgV>A&*}?Lto1B3n66HL6l|5_a71OC= zi@nyY04uC2BL9G-M9abiP&3)A zSuQ9$Z1j_K0HQcTEVW12)_uwX;et@yijgV^tI1udJB*IkmC|~rlA)9(*AkS@mc^c1 z?Hmq9??T3mq_d@K=slxA{lPEZp}d@vN>lei;Z@gyh+;JT7Gbcfgh_lm9_~x zQ4bU%O|b1sv=H)M1hjpvOjczl3qldw8f0|{ZOMS^#S zYS%O8j{!9q=#Y5B$9-_UCEF4svCckmhXcbdIrT! zy!Ih*#;?1Y!l*k;Q&YE{JMk1Zaeqgb%7Cr%w0*Iw#>S9e*w^C-4*bP53Nc}0b_a*+ zLpZ8hnbeh6VJOX@%SCAnU*@jMx{~_)CyA0@vhNA1Nc(udL%>#tUn4jL>^~~>Le>JY*i3Jn#D@#cc6Sr!{A5!u)_h4~A z=YN=^a*exPX&6?n+-a$qV3U4AHu;Pzhw^!TJ8hXM4wA`}jy{RY`>gYMgOJp~Z0fHp zQFd3?IC@X;196jX8@B$K)^vR{u(L4e^*Y4pBLnkSqpV`}c9nmB147Y`CCy$UiEmKxv|*wd~Y`!oh6rc%X89rFvt zsWSt{tBE*>X@G+`X$}N`Wk|EPPx-C)%hO9O=m|}bnr)`pY~xjWEqtRYYBkappOvrr zq>&#Y;+~II5sYf04tiNR;MzxPcoXUkTj)LIW{f+dO;)5J@!Je_+8-S05Y!JAQN;Id zIpeQg{)Y@MZFh0}PtuZI?bDB!xC0{)gZSHuE=!dU5neq;;r(!>=B>v&&qf2c_=e#{ zzGKbx>eZGyeODhmsPjpcAsU{fRdUE?rkQcKd9FhHVw)bTnX|;WDf$-_rhc+;5{q`I zQ@<)sa2391W3FDCLgF<2jcWBI#AgN53Ink=%ZN=ybIkrhjarzV7MKw|6-xQy|Kh;l zN6-4ww{}i-0rXM=_WWCON6h#$E5~aE2M|`-A77b=ERxO$)j_=>fxV+6E6q*`a8)96 zLddylTUNos_wNKTArG4*LO46I%hCr>E@Opf)_x4*wR0$KzHp1OFFC+Xb}abic!_uG zz@p5gKP^#e(k+EPzG^)y6JE1{Wp5yFE(-opio?pPp?K7xtQ}NThu#(;Zb+j+1Krk> z_aW?6^St{DnvF z#klRosqe#drT0h}Ggj8mBs<~ck}GxaIK==77%!3Fkr70v7^5Z91g?Zn$ay|m35BW3 z5%gY|%3Alq?f7qCbT%S9Usil@Ggp4!^1*!}Icm{Ci^JjyTPyj=NDQr9O^)w|MxS$k zms7Xi^la+32X_a}u~;WBqa>!7yE=)&SN&p|Z;e$N5`f7G&6~SBe#_8fKkSaKo2o2| ztM-rD&PvsgbUivzP1S*M)u@Jh_2_b$&<6vNwAt$^CP+Y^>`K`EyPPD8dpbjWFh2_# zXB6KchE#vqkgQr)zSs0AGiItC=+GQG#3zm)DYf99m(LtBleD`I4F0}@A`}B9%VbM1 zghf;IbK?{(#bun^TPA-VIEQ==kii`KnR!~6U^Y{j*2C#Q=(l_spZYo!>o z;7IV)`H}>O<$`YY0O0LfO8EEqBT8GhKQaA$LoSK%c`q-D+4`1X;k#V#jmwGU)j>BS zpE)aaLLilxNNMefi&Za0H|)$4JeF=X4!kdbFIcTU_pkX5;PoI$bIHbV-Ly-A+g{kZ zk6@H$5$bjoW~YoggOCU}fqee+<*sI38CEGiPf|)BzaPmQ+&ZW>4KhPvHJhZnm?g#dn<_8Ot^4NRX49G*&=`-SlI?3Kh~NG2^zV``i4?b1 zi&gki60;c%t`@ofUbXl?DV!w0W=AczFy_qI<1_fl_(9nEh;pu(WK#KTCCx%)e-zyY z!*>gF;Ixa|ng7vF1M{xmPW+vG`Tz3(EW+DPg@_FTCOPp8-XUyP=_C+fH$&#qM<0SA z4go;$-fRxEhs-8+&X;`~TGZxV(wqde95Z$eT+hvc(q`AgH~b#x;P}R2?H-e_%JQ5D z*r9m%EmX@V5y2N6735zRVbx-r!^fX*b4wo$*e3LWaoqL~EQu@Ak-nmX!K~CWTk?)K z^9vF=)(wF`!Rog;C$p6DAsfQ3tV%7=sk5Ri5WdL&RK9B6ETjaq5HTdkw=dd z9j05vH}H!Y(LqEP{YeiG(htSJOV7+L3>ex4n3C(xm8+nXku~ci@(&IC`P&-pd?%u_ z*y)_ytaX~#OzIjzCO#?z4SoG=ACX~);7??t7QYJ zJ~0=v69Sx{>1Bol}HqwTiA{z$2?C8rnn zSbBdn7AW_qBZ#DFm@$xc+DG~i{25GFEanG@x~7}&v$Kr!U-}KMH+vKb-eW(go_c2b ztfwU_*eIsBllU%tw@uw-?nXk0eeg9u+gClqwHZ5sK8I$XvNPJelePmL=nsg#0uQli zx#V{D6C%N3BMWfSj&)bqolwiO$U{V9D(~4#tof+f#xz)DFA$K8ssJ0__A0YqQd-H? zZgVAV;pnq<);%x7e2A8Iwjq=l6Vp;sCI2?mTjX^U^-R%bx4jRTeu%yDt=m+KtDCL- z%&J0X&FrmNy4-P5qaqqd0#9jlq`&)JJfY~Lz}5&}sLY*I z6P}u1Stn_7V_=>uA67kB0_E0@+Gs-`oS~rYdzUTrYrDK34zpHh1umxl2G zikouyv7=jPQPOk*RaAu6MY8>39Q&S!Un}5L#sqcmJb1T#>j0%-f#lTRl$2VWV1iGH3O?`wdk^b3&Uo6cqq?~czdeA}rX_~*Q(5c2jQng06Ra9M(%z&6t zC9Xk$B-ej7Pu-3BCmV{MSIrjh16B{~Si^Al2}KjF3oc0z3AVc(fME$hW|yZzE;tc0 zjqfDbksmAjalwX0B}N+$=0-Xwpy#&v?+sfX{q{mJFVy(soV>?=AlR#Hw!0Sem&x)%#rM>H9S9dY7jN@NkR{FTudfaGFaB<+j3y&F54dhFR=?#4W z$JsJ`f`NOmw0|XG6m@AYt8ar7Aef^j@7rC6!+YNZ!uCulL?I-=u{3^5^;>Dp#RWez zJi^i1EJ9}bAV`NZgEsrF7mdF1f0%se)UWvwe-rC1SLdcV_=7*p$?1+@Qq~l zaTsRios5cH&c$@FyO5Y!5AkTuLuhUE_PncaKD({2%t41d$mpvT9|-dWn{7Q57FM0K z!U$pg5H-(M98ueQ9l?qZ``ym4Fr_!=>O?eaToPJu^Fi6@6b= zdQ5|*J}3J`M9Mbi>l85HMh2^X`r64in+*c1Bq?aJI$cFhAnUK`mN z=0)q;b|EWZJAYqTU}yO5@pE`E&|AEJkoxGQPwJ0!&du;w5jmu+7Im>$26#;j-foX_ z4N%SgW`SBF;v+zy*NZ<&KSGJ_HG}R>eLHKdSasih5e!@b6MF5>m-*KCC-wMry6B9A z%c&6!p9$(|AZ|^&Gko;?e9-Gla}IA7t&uM_wPFZ4IF-_|&(?nRRkwW<@6bAG89AF@ zgqGJu1|UUp3ukdHTGXFR@Wm=vOI0y4t-Ps{7(S@6Ja~A`pp9^kfcge#9xD zUL{GKyEaW*DM9Sxm)EYkkb};xN`6+N15nRA4KyeL$1Hl>Ui9Vu$-D=8@E?IYzx6NA zz9o1laYQ7~g{v^>W!4800mtL{A9Z-CbMK2}6s(pDtYY4r+O_^)u6X?y)qwxoRkMFR z!>xN5U*|QB@7Bv>XHNV!yTqkO{(*lQ@(&NwqSX2YF%wqE+2OC)u7X8BX|LP2Y<6zN z3Yc3tejq;G+766!o+ahe>p~^KGVK)s`w{}-;n5>S?LF+0!$tHi?S~mapZ5K0M5|%w zb(r}!u}f1+ur`(kr7i9|rTq!IclP5ijr+$KTlrUxI%IyYO{D&-BV0QZGk}Xk66r?L zn^5Zz`yCF)T`X{8c{n|RXHluHl(obxzKSNpezF8+;)`J`1PSokjUqGCr`FjKN3}Ho zP_F)*bkEk`wtB4-KzgHsh&JE#xh)&=4grRvTddW)Sih}oaxB%(P+SY@EnB&v-9@2) z%XV+2Rq1i#dEob5vxPwrB5Tx4`%uuqN%TBhvvksQH^u3iHDk%Et_ODqu0^WtSyD5) zbdScwlmMHV2|P6=;XVGt_myI(apH{G^g6u`Zml4W5K<>8gSwxKJV(rAeEhh&sdelv z0n4*v->Sx3KTLG@iVP+OX8UGu2JhOng2^xJacXfMF$SJl3!5}xE`Eg@e?#DeDN~@d z$i5|^^2D?sHLqYcU|`Z^V3vQes&DRVb{6LOF4p^3=`H3bCuFxXLzYTs0`Yo+!w_UN zu_s7)twzb29aT9q#nr#T%)UA4Sp>0RS-Ic8%Xdc)HbUcMBRbMG?)MvbZ$vdtb(1Rm zk)G_eg2MKT{c>+^odauIWIc~MEvKbSNsbV;V?l(R>yEBR@sF3c+jObwgz$UHsx71Z zUj91?$7+QhJGB=01c~pYo#ju`w7Gr&*V}WNsb#Ek0Lb}B>DHW80;`;<$52Ya&GB(z z=WUcg0hs5{_1=yxR%w)Lb#|9vp&*yJ(5=F)kRNW)b+fgvI@?#YiyiLE4TL$qHGb9RP@OB+ijl&#)dGJ(zktFn!Q zmr8%vw+F%y;Ml(AA5)Z_^+#e8w`TM zi;$1~=Krc7RK71`KX{k@xoGuZPX&$!>qocnMVX=~cLK1X4>47^>mEd7 z)g-rG)D}Dxtc>5wLvXYv0658bl=fqUQuwPCgt?ucSr5diRr8>b?v+ z56Hp7NIE}LRDYmWP~gYB!*CWvkUO;N27NUC*TT1Y_8J2tCh2UT_4EcnUv?jMK|X?hQ$(>rZ0ie-^+na&JNoMxlTTo%u}6u-I{S4$3Iv)R>J~ zTCr@co0oo4FZ&$MkI07zvl=B_1w%?$T5|S`O^8`nwp-7USzD89FlR#lh%K}EJk4`7 z>|Lf;4-|Cbt2oZ?4|MuPz@T_Fs^gJg89Suj2nX{UNpEfmX#AN{%*03i8A@=Fr}i%% z0_LeTNBHFRtk0i6L-Em!^jEx&gzZz{+xAL%n|5}7i8beh4PJe4VUd(U%D!GO%YyK4 zDUp_ln!b?jNV(6*@+Ay7!fd=2Uja<@yrMxECBBIPCldBdjqvNt9$&T1j=Mc|Q!zHS zfzX-6jbYO2#42s_2V_!xXZD%@OsmeZmoQhmpEJw|VGA{n{tfX|sn z3s$b2cQg0TFq2<@_Aq%{{qyof*QIF<>(Yy37|(Wd^XzD_$YXf!u%L{6-wb`?G_5#( zR55T;tX}c|%y-_Jz3fycJDfF>c5^K$XFGvt{JjbNNXEk_w%L_=0pzjxRhNO@+UC>- zD=I_qt+C*8L>TLddo}?C7+{w}Ibv(dR{E*C{JZ?85;6=x+CdYN7a^*H82VpbUwe`d zPGaU&s~Zm5VfK7z#2?E)T-4{>^y6|M zhd!)!n4BT6*xD)6xH*(eO$L~{M;1IP?K}5>)-+%6s>{8KU>9F=tS7%Q?vK z1dsAup^|%#$Z*tnT!qfh5Y5(r`zjR;yRIet_Y_OY$@+^?*AEg6tVe1g%syZrPGhvUzr1jXZ{>icE&wPR|r3Rf!gpxji$H8w^9j%uNk;hMYrO!t~kwNN_KTA4}qntk`ZAtmtn z6(y`r_6W)@HCQU$%nv4Riw;QK0SEyJU0xH!R6~uq#(|a)-k%aDpH9J)eh9)&)5K5D zetenA7wX=wwrKgW_hl%ix7yNuA?WOKs`Mj|FzU|F)Q45>W?}Kf+|0kB76u>7;5s;j zO`aw8R0IQKBG1G7Wc#w-)Ly;pPt3G_Z!&R?W>{x|4-oel2SSY<)&`z{UFVE2tR>Dh zuXlm=!5jHFUHh?8VEOmBnbihwr1*f^;13Oe3y;6#x7PMCPX$;e{QdG0chx&933VZoX$2*7_nV_b=0ZC zOO^ipx2{_%FgSFe@r7ULlw@pdET6)6x6qE6q})z6PmM$EYPnQqcA`34c1)%~+pu|b zx7*cMJD@=Jq5wY7IPJ3`FE5WUC}}}cKf+Z9=PbRJ@77ZH^-lUIKvu<4a3A7LQjQJ^(M2kY?=zv;{3vF>F zxWh+ibG?ywsM&zg-G|F0nHwD^gVzGs~Yi!JC!EEl2K$E3n!~uY{i>x#tkRns^=35-3*aJ*UGqjUSs#2?#_I><^ zfZ!aEiGNC;nJPFsm)lSP-HVVbL*XVKfUzjb7PS4fb61f~27FK_IRao*dQ(y0{kj;o z$Z|*_vi#Qe^8_BK4THV4gOts9)QKp2<8zw(<(*%I1G}%j=`Tpk_Z^vG&%)rZA7_T=Gd9 z&BkJPADobjBhX-$1}Ou^scd~J+8emGob<^FiVrH3$gKI&53uG^WPzkP1OOJ@@~afd z2jI6vX5Id|HESb8h0nFUzB%%lUa#N3xWM8Y9%mg`2jWrRyCp~RpcqT;1C-gC`i*Ou?!k z3PeR@PDGJ;6d^JtS_O(2!WteLI@#*%=ZP0t?m7-d)K<_e)s@-;?F8{wR}*Eamzcx8d@f%~(=9hmP}ICxNZKBYK0YqioN zn%$9&e&;GGNH^s0aL3dx)l^bHrz_jsY^j4wyZ*~0bMAfbeAJzq`PDyrJq7A#e!`ki zcV^YDWaWQ+PjokfDaGLri0meFZpr5>46(XoUq-kr60>_bKv;|z-o0J0o80~NW?=UB z_GfmH%5xD$z8$BZI&Nw+NzC;fFi5<-Y)Fd}cOfh&&gwS+HTYMSM-8T?CG#oK#(NQ+ z0iFw5i-$G)^>WY0S$zv+vc2twcMGwrFm7RC6Oz1LUo_+J@U0!N%sZ1VC5{b+r_KSC zSKVil!fE-00}~a2tl!0*IOYT~`4EZ$bDSg8SF;@7<&4RXC~H-^}J~*tJW1 z3f8Nv2bf!v)v9?LRBHEhoOUcs#ZiF4+i|E+xYZ{C{RT{b`)YjsqAdZ>kNF7IuECPL zjFX~?X;~ha{_BId={IUI$zD0##uCKwHNZdilW6nPDD%EhUq|~$iEA>}xRw8VUK-C} z8ebcQDB21Rwe>K{N%)tNeiF~QvsZHGc?=pT<_6SZd_;0EdKuii1vq`&`D!6Pfa;v5 z74eH>Q6uP1V#aAkS*bo`-lpX&yl?|BNJBCw=^fnb1eFBw^R+n?LvgP!N?GcyRK?EMLc9i zx3UwT!cz*NEpOWMx)=N>(clK%z8VK$vkhG2sjXK5(4I-{RMc8zqh=+@Vmpb8Ps6k6 z?|G?t0Vd%dMX#-RF74?C27Jz#fKS}HlNX^SADD)b%Tf$i1X~V?bd+9>-X(EcJB@{J z#`x79ZI;x?>A}1WgbFw|J3{8nP>tF*wnAn5i=*NueL+PXiTLg^vF_-HUvI+h3%LbSYBYMGz4 zpp{|ab-oGYAhEJi)uUMv{lnV`u*vg-7S;o z{x#lL91#OOW$#qELg}bMd*TDH+ux|Hd$Vfpndfeic~x2U-4yICMz*NQkPP@@z-kJB z(-kwC#$|_n!l+pj{*R080g}n9LQcmX2_o7&fEEsViZYy-MtAmSUvcH4mMa% zTZ2g&5L(E2uv2Gwcx9a(B_O0K693P_8_=nUc*yW^w70byPzEzY$g- zX~GmU6m~Lc=ec4s9LFIEWz%U`5LdzXnBXb|&h554&m8F8#qmQbuhybkyt2N+tdEqROEh+PS|RmREgX1skxjo1vj*N>vLHiZyZanm(E$ zx62?ZpNC^o0j;@51)mV^mA{hXA5$+-)z*PfLQXCJhSnAk>ZE2HLJyq z*Z-)wKDsdmsFVzkqRD|=$|Ov`&mZW|3AV(+cCjCm5US3uVd2Z2OQk;I2dCNepqL@+ z2Y-OTw>*=HTH&qp&N{Vp>3=uv`GC5vh&uh ze|X+FQLj*W^2w7nE4RZDlOCcFps!Spq&N5`RhMw@~m z&*03*ORxp(7>yK%DeCZJ$ffsBE&a8x>gt_IKDqNjHB?$V!)`gK1HxUZ--eL-Yx*Fxby6FB{Njj`_P!Bl%-K zKv@ufK9>B$GjATKwD}wY{R4QPq^ostmSXppnO)2fOAgL?xh!Gxf5w>p@h#P5-3&mb zW67mo05i>&YN>%y*xU`wHni|lWmHDuu;YUeu*GsvwtuB*jO9nwrQH5PLjh}NR@1ki zy@^`aVyvqKoD4Dbpy=hz6Tlso7WsvOf>U7I6V}Vt^^Xp93k@If^&c)rG>a_(^a`LS z%WMEkF?fZ=kt5q!-A}Bo+-k3!8=sfj+(eWw>8%t5js1QP=2+&`{pX(pIZo=k`ikvI zhS+e9$!1osuks{sEZD5SuZFbKb=8x_5at3i+Y54)OFyupIW}g>u{)(KnHWstgc zImB5CpzO5<9;1Xnq^MMd_%5Cs(-|A1VpWzTZuY_CqbX z9060^1657oGGj%u^3rb>-{>9sTV(gC;%#T6o&G~$=WMxUXMRL;_WMrkx! z#GcuUd;d3`aqoVJ^m zFQ~_SFY_W9V$%1booUy+%E}*3aaGNi26wSGpL$$w)ZtoFy(>gK*--xy?e3id$}^bb zSs7$Z`@Irj{vA=EKR{pIz?Z88Gh`qqzb3`&VdA_D75%+s)`PBFfS&Bb7C^oParQhj z@*ZuE%9_P#TTEu{ck4XjPchtWzkMfgxvKrcW082vbTJ0~bUwmf7|5=RX3|+<8q|l7 zUfOT&G*k@g3>8czd$?69w9IoyJOw zQclPy#3NmuUqdYxQheTdeSK6{rjlW?{IdI(swm@3n1_b)jJ$J0{R%nHd%_}~4dZ={ z8Z8cT&brhJpic#>w^zZIUCgKGGwyMau-K&Ia&U7@f6hew?0Moo<0SuDle#Br{)BKl zOkBMChjV`%fp#qURQ;gldvP3a>B8BPm1p$H$Ik~8)Q^d0b6FE|=Is#I+<|u~-q%h? zOV7JiB;5QQDSq<6%@s!P7CaiKD~6?SiRpIUwU^pb`%`f$$$$);3_YU8I-FgXAkL}j ztPBXaJvQxh!KDAXuC=9%x<>9@1Zfx-CiWEMYV@wou7_>JHhXKS0@?PjG5;xAwM5xIX;8AMU5(pq}vH^Fzion7r&Th`*C z!LJd`TtEI&66{*5|ovu*7?D>n_u8i zN=i40Lj8|9(E$Za0-ZwajU$CjR5j3|Q3%mMx>d8hDPupL*==w`ypY%pBku)eb+)Rj zq)a7uRNm?^HbX*q^TpGO&L>elk-S-vmAB(V-_R|NC-`smM&EIL6{59PM6^&IlVB-J z!zp5mu+os|CIUAKeux=%!W#W_I~KiOec&+En~T4mx1oPiKhg}qx)UAq+mK_E)o(f1 zuLExMu=)Fp6tTQPyI#nF+^vHgX$eZ$({{l8xjFUc7`c#>EYZ{e%VG=bU=Vck@#Prl z)0lsg9X4B^>XMGb$QtjMeK)I0330miKOLI?^YtnpkxeoMOIH+=ic9V!98WxionxP-De@ zcsh+kA;QSpcS>kh9j$JHQ0@;MaZW@LlUms56OzaY5$BM!& zWjytYWFZ&HlT!o9OksAqB#-UBMQGOagFmu_eDjO_WYLpUy==XY+Z`#Xb~}(M=EEfy zn(z-JVlIau#%DdTq81yRq?9Cm1tSQDZMX9;Whrye7F$%GI+hcD?6VyJMDFyA;oDhz z8|j=%<$dHJ+XZ_+dv`Y zMHrdy?88xkYY5D&!`d4AeW0O+nBZ;O{dBG2xS^VP|Wu_nZQyV^<(?G%YO@rvfEFP5tU z0xoE9OQU3JEeDpLc08vG)PL2LAEMXy9@&^~n>cLFe*tze{R*kOtAJsvd;C#0^A@|U zIyeMggqsp4z);~5wBrD(e*n;Lo?lDQWI1lI*v<;>9Lm}UNV{11m~op%1%Sk`&17xI zYO9!znoG|l4F-6R9=epah92hrVuwx@P%9)slOm26abrK6VJ@t-xWLyZ#mc2_2X>%H zF$V_C?tAHTDUA@|2zMc(d9H<2T1N0_BU?7l-CuZdsAr0iGbgL_R@A^CVjjg(){~-8 zWt~fhI}CQFrMK;p#2*SaF+;FT@+!^)0ch)b-#s`4b@l;Fm`{Hvzu0EMygJIhtbZ|Q z8Zput-aJ{KH!@2OKRbYOZje90#TxbHs-O(}yxlf?pJTMKMWkeu@?BLbe1zBkg61VP ziHdE2n*`>f8upz|WRetAYCoNQX^Qa!;^HgSxwW4KR6p5&Aal-(<%}d)#vCEW$_L4K)4t@|8?&9(^mlBFD34K52RtQl@`Rx_yEisI{?f0a z$w^+jN}-`>Wv?G@58J+JYpO2M+S=pSDEgr974^4`fHLnZv|Y`q0WhzPG`nV@oi#Y*i~qJ*zC7-2lJQa z*G)*jj2OMx;cu`HM~CH%N69}7@>n4REsf&NZ>OJ^wuQ@Kc2E%5_ z4`d`e>}?@5D5!Itx0|E+wPN6mvPlk(PJFOn7Hm@F`(h}<5lyDgcHJ>k!|?O z1hE-~zHU^#&eeoD5#X{l9S9d_8wB$)fnjreW7lo0wMK7_aa{=VY8Vb%tKCT*%NY6ifgMsDR?-+E0t8K;=3m8V%c2xAlBG<==i%Hy zNL0!&wnRHKcs5+D{DGw!=4qOO9u^NeL3s7B${5idOKOd=&Im-5X>cQQum)?wbRhUk z41qpPq6;|V&V!*O!suWi3MI=ti&!hjN_YE?Rqdf`DI15Q>;Znsi@kl=rjJ9bd;bkEXtZ3l=Pz%(=S{bKnf<4 zrp~H+m7J;tuY}HWLZH|~_|f`6ojL1(WSbH6$oAAXq-Zz0qj3K0)_Bt_uf2-52x+XR z%zUjVE1j^buX-$)cyuU6c4U^{wLQwT#PGKoui#m=u1dVT0R~z4m~lZq=1p)KoNlp4 zT`7VLdxiV3?qS*`_Rb*`6V_KwY+af*lX| z(EX&%Qd2XzrfSU^Iz8L_l)>{D$tWL_N~{k%gSD|B%e>T$=7em|iZ5;SA2L62EybyF zW-_trC}!Kth2O2XJ)aS;r98kXDXZ7DB3L|L*qGT;f!P#b#4i5Wl6Hc zp7|Hf(c-@V;<>h_;a7|g^{zj&>T!A#Z`Dj@%&G~!Yx?a?FFqsjHFUin77+xeUnfj= zzM!S{G+T}$1HUvYC2^0_Z^%UJ+^EC<9%i?DwX;P#{(7ti=%VfNf(Wwi=k(gt$1|IFpBV>B++=`q_%y7g8YCm5h&id+(m%$Wo7&t$nzY3=^?w0S0QWgnxvIgM?$n?4lXbJ+fJ z;g!{Mn|e=?yv=auN=e+hR~garxqigDP|mZDCm_o<`v-9Fs8k(Pzq2pbT6j7#s^$Q4 zlfx|1XPf(x-{>iu4p!s+&t6hc>*o zGbS6K{iN?Q9Qub_C=3+l6lok6E(^=dUuM5uQUrEQ-r{%^JD zN;xNj{T?Dh2e|J!f?qA=hOYo=3NofWL~IWt$Nr>IZpEkS{nK zN^!?4Q}4$&n?}{T1O$!#TG;dJ%KlPDgrZeQgDP}Vj~J$sBBn9X({&?LV+;$z1|7Us zgLaTE93>5+KWB%|dQob>>XikgxKZ~qEpV$M3d3+Z(+I!z*32}mwgB>4u;YUNr=w1Q zz6LDKmyf&m+6?bii=H78G_FYSQ6Byi`tFU-+Mw*yuc*;Mdr@miRbUv`vx^&A~4Yq!7u!wfeU4N4mZz3>=by32|EZowKKY@#Hh?dOv2B1pD_%AZOlzfH3SyuVk zL?8R?4JlH2l%<8ZouC{_w+4f+*P8HW`RZ_xV`Y?AkujVX4^vq*bqZK^hdFyWlrv%H zy}58zXyoxj!M~dNKRUeQCkxTKNvN)(<==W7LIag-F3`@CE4IeKi_{S@oO}usFUyhI z+dgf{0C2eXFE=;rOC z$p>t3rVp)}74itt%qv)%*N=snJyf)zb`@GI_Z^Hagt^@DJKXTV7l5AsdHrZ&RGV1659x^skS!uTe#9a9@OtK;Q;QU-@;mRWsO4 zF}()t=4_yt3%Qc`L2Nf6jr32}#+J5=&DBj2g}qZ@ImKZ%KcL+x+mCR>7+&m*DY4SryQzB7$sZR%H)-=0x2$2xL1bd(vydPVE7SIk<$#Sv`1S0;Ra~ zYc09_2tRVNFxE5xVxfg>RyD(G;IIx+(!$su_Jy|xTe=A+XqUUpf_jeVUaxdV{ZxeG zh|U)=RIr*XJ)^c&GAkpzy5{-Zc~$QVmB?O$R=TvDwodSVD>q5VP#JLoJ-8t6_XaK#Wdm?de7ovVN0P`28dB z`c1q24Yc!A+Ez_W>LQZUtyAI;MpISJ4nSgs)Ic*@HsgNW}um z4%U#_bink0D=u^ISyhKY59?U40Oq<1&5X&>4VyaIw$a;OMaF=iq7a@x8~#vBZl%kA zWAw-**)O6`9c5&abI+Cb@bdE~O#&7FdeXd`6c;NhScrx^@H$AtLv$X7YYeLa zO@a92Yp%vk->zweM2px~vX6TmZ-^x-v8L0A-$+)&AM#Xr3?7iJ&WqQ(T)HIjhZCMY z3xQr?w9)J4B2I#ZtG{%mk+iaejcvbpOJ+_2?=DIViFr3Rp4qYTHISOKj0uMqFJy#{ zfK=0R9Zq@4=P7zPmHd@v{kLp7=PNQ`(;8~U`nb{CNA$u)1;T{Lv4V`vnxeCIKUPMF zkNea!5*lV3;pdx;kq)7TT8eIT^pAaXV^qy>HM70eG1be-Jx-vhaORE^!Awn;ud7tN04IxsQ!S?J@m-7 zN|G}DgonfjhnsD5--0eoyPvjuV?&e4x9O6Ki2B;dP#__VLUKUzpNiVJNi~o8Nld`| zIpY#&ylgJW;v9I zP7X1TlvbuTu~;; z-HJ#iY$;4JckfVe#VdJSVpa(yY*Z1N$ZQpDWouscKYR zJ{>*)h&u4?CSEzpB8qmRW~O1*2>BgYLM1A+$wK=9uo_f=mBi$Fqdp2$CPlQ*-fbMU zr;Sye_R6EB#=xGGEw{IuLhELg);#1-jcWpTdPK?qsZQx>#Wpxuz%V4;jXk2B2&rRF zhsbP4V~tzYdMYJvB_)zl?Fz(6WsV}|!$(-~C2=w-0ttZiErTR(0|YBl-%9`#EgWl zKk2diRZi+lE3&-fg`Ab~z@6_)&|>A`-l!4L3aNT;V1E8Y$q`@V_+iMmSD;|;>*N+T zr7`@bsaTh5e^|%Xto$0VcO$86g_Xy_*N9tWG+u$W(iCxM!0s5Lb<*bjxWTQOGT`nX zY$C;;ZQM&YUUh4QT%|H{tJ$`w~F z(yHUM0~%_cuvhdd8-q-8SodBy0b9vn&l#<@d-u+&oT~sNuRE2yp}M++M$NX%LyE4X zlqdLHuOWL6!PV<0Jm}?>{`&ceHA%YId**V>+$Jg+N@lE*;?os47>a{;v6KlaQTl!S z1f%%KnPbs0T1Sx2pY@x2n3D44Gvk#if}zHdjV#XYdrkfeQ!nJaooO69>8q^hc)<%+ z5E3<53zt@=J#FwudxEwBD^aw<-1sCGhEZg5zNw>c+Jt6n(mK;v_U$%cXoF8v8cAms4J? ze#Ui-J{NLa%UAfaAovSE9rd-zXf zyOFYn$|eKEi@Ln%(8gzwEuU*0KVet4ts&lK_ED=tdRX^0F?VlOAaGlFekt0ig>P3u z5%tq;aJNc;ok<%pmHnz;HKck56*E5ANn9|WAYb&=f0g4Uctz{GoUYOLMA|G9(f!X=oJ~ngX;xj{6RF+p(j@H^phwHg5c7pwV z2rN&=JOiW`{!g|hX-D~z#uoVRi`<}zlgfrUKW}gSeSHGy)0OkDz`}ur-NzC%)5BrbD2fS6{N`IO0%GnIIYG({h7sND<@ujSg z%=TdmA9F*ZGNo7t+xD=Ocpj6XgkeRP1~=d>S~^N7>jTbaB4l~t|qp9_`=3g-M4M243T&)+WzEKTg$&?yGkFP zn=%!_`6iumPX6z{HJFgoHCTSqg)NPdk4>7jTD`#Joztnh6OzvbDa&7zw8quru?b1; z9|l|u4L;|b^7NuUZ=~H2+o+vGjEntSA{p2FLOgZHsyT*BZq)zjbi+4bVLH#bt6w)( z!Ycnv_&)aOP#H@9N`2oqg863Q*$QsH+DoFB1>HpCcXbYre8yRbQb zS!Cy?^vrcU{mBw%a&q)#`#l&uT2gtlfj>C{V<$RA{3fyjLb#qgDDA#jkn+ASVbcBU zRZ;+AbZEHDp$MHcr6M@HcXY7N-=(M38&&8BNZs%q1HKl#CIMINQh;-*boQCQ11tT| z+H>{NLiF%=tVS(qNRiow>9Vpk>tnXZ48r=IY4y30g7`Zg)NO2gh~PMIVX2X;3xV*b zp!y&941aexMI1H9y-)Ya)m)Aq7pwMw$IIXHpu@2+o7v}`DSw-Bzx>JIGl%LR&wEuz zvZhr>ptXN#x_e3rNC*SZemzyMqrGqz^_; zTp=|xHTMMt5qDBV+yDiEAKg!%`xpG?-kCe!GvjzT<8a`4Kj(SBw#PRQjP&-3Ns9>y z3GLOtd;5`)kjPgdp&jMBcK*4tjYbjt+WqXVm9LP{ku!gOw&_1Qy)3x6&G(VsEuqrx zG(0a_39S3Z2+yh$u_YH4Xn`sD8*-nlRKPp@45d6G!>2W@(Mx&O2@J&4Xv z<=9*m-06Rg|KCR727E?i_UM0acl{z}+u!s3!aI8Zo`!us8TMx;{5ihw*rxLDnb66z zyT1PS*OzY!?frZC_3rI1e@}1R-+x2+@A;E(A?d%T`w#ukTMG&OKQJHxd+)+l2QO#_ zOugjOwE|WxOKocR{4H|#V1W47xZ~HKL?@P%w?s)ev&Xdpe86uGwjzC6#mv9nNIm7O zWLZ6!2mre(nwO%5ML%x2uXtWhQZngSz!y6xC99%0Hn#sa??yjRKRHmE7F4OUJk1l! zna*%OH}a2CY*7+qI5*9#*t+%E)59u=%g<{-kwMOT8<<#5-Rz_dA;vWnH& zj{oMLW9uEM8wNHusb^XG4& z18IRA4lccd{)78iKkACy3&7^uY*n72G(jH0jX}8%{aUR>=v9TZ8Oea`-^zkQwKlA| zb*L?Jy8Ah!)ba!5cc`44oC$X)o6qB=P(_2sx7Gh0r2W29PC~Lp&Mbq)A*uB8sn)lI zT674S=K zC)U-1U*#(KFO8vFMTW$slu)C-QZF05rt`X(7`=>gb-REcQMAAJc%Lq=5M~~x75JUv zY6}Wn{0tqh9D3TF>?OQ&FD5cNY2?kJa}hYZYR6jc>|`4am6To`zI*qp-%q>0c(vf9 zWtqvh_h`mSU+kx`{H9VW zvF-1@PioiFwr7iu-{F~-Jm|K@cs!LDN92cWjT^uR82Fsc`jtcZBT^B1mhe<9SjRqD z;FR7@Dqn|sBtwGD`&M1>@{W;(-owK8q#))_KJsg=Gsa-CDP!D8vLlHB`@l#p_~BcT zb!YKas0G0*G$3QP{o}a}|Mqr0=tPp8RY{swz?GWN*yH+4J}_fDRS(pz7e^TFXAe1_ z(D1u9d-Y=vUu*lnpY-~Cxb(I(NwMq;8wJoLE^jnG3by1t-3L|Cq5bTpddT6P+L$x?JLPoAJo|N%Ba8h=I-d z!0*E)5INo`;BN4YoUte$l4bc&ZX%De@#c`4>*^kv>rWfX%o=?0o_5>iGjBAQ6`6Je z=EueZ{b)~Ct}pjC{PdBQRtlwd;n@#+kInnTyg0uHUZ5T4-%hx9T9kMgg^b1pAH{i|%)bSw`3!j=ajL|oFuW@Tc-8=c^Wtx#hPE2I zo_KOCxK|W-BX;htPi4q3-$3dCcGmrv^KHg^{uam1l41mH2{#J)LFcXeb3DH7?|i#H zr+<_AUEhS3VXWolOHuB4R_)s!-%9hx)sdI5(`Ti=&ta~@xJVG{GQdybfeV{iYz)pA zCtc+dyTItp8|o*$(i_Yht)2K}@gqtoMGncH!;~#AdCn}gwPxkwf?*rKHt}|x_l!-I0SDQP2-tJ!?L(pl=39i58o2eare+TFq z@n4DpX6ayR%>U8Kbc6&?%C;d z6xi9HtGI|2HAgezG&N4<&^uqqa5~=KH zwXj5LS)+nw)wRd%s|jd-I<_2dYGEPKFLOOG*fNH+U1X}{)}{~OKJrO|LL#O)QY?~7 znrw-pwL9BZwwpYC*;s1b9tjajw=930+`l*Z1Q)PuQt+TjWkCD+Z*}IX44qSXDidLm z_55M6b#DAn$-}OW1VtM4Qbu}|3BZQ`V?3DRplO1%Rx>p5oKE@RK=Vfg{t~QpX}Kpg zlD9V3YMm@bddd=Ab2bKNB{$xrzKQ@m=61I5(N?}kHrV~!tl?r<>R{=lL0N(0-QVo- zI#@k-E{;zzNP2ni{>7tPr9WvpWLXWRz7y8h{l~Z0Pogt&xi%Oqs?o*zUed(_YI0(0 z8KFz6QeSZgP_b(bo6(DOe((>p7x|c)(!yO=LQW>6zcy{C)J)qWaPabF?|zk_g)bI1 zk3*XOog87&U3V;mHB4(Ob0LqxeZwWB{lU=AVJJGN=Y-teUtUk z80Q$R<0dbq@W~~kf#tJI{&41)Y4dcKKWGJ3AbeP*cwfbW1s-WK09rOieYFc(6Aq#w zh#eeT4lF+S+|hg75N+T-XLD^`w-2i4KQ5EM~PcRl&h~a ze{mgYk)No&PO%d;@XUERmrr%428}=GI1n40+?Q2DJnPX)v=^MEa;E3#;n#7#ldOF* z>$AIpI1xSJ8D$SU=?(lsNRXjdu^q;IWXnaGb=&WqUt{%0?j#;mm8g`Q6O5q>9bI9# zaBv7MhZHrh-B@FZ;D(jD;*y(Ojla0c=00FS$Xdnvno8JsqkEY$=78I9YC!1As#~PS zAQsqO>L6~bd3reC0y7b$5?^Z;oyT1D<)b|T4{T*upWTePwYOJzyRg&w!&*lajsx8^ z?8dd`hrcFX7tBo7CjpX!FOJdl(Bnb)E@qh?en_w{(*_R+vVD_b78$KQ?lhM5q!TNr6>B|C!k*fm~|Km^q4XF?zNagJfVZ!12uVS&1G3HA% zw+6YKeH;6&bN8ySRgyQhdz)81MU@L#XD;+Pv_Wn>XGRxWRp~MX)3g37<13Af_!j3! z>q8k>ZX7QP7d}7NTptlII@oMk6={OZNL?O} z%7{vM_RxhNok99|_UAqqLe2|_pvi-*wI9C|uTXW<_FE5f+`ShXA$|EojII@8nHg>V zQ-rg7_in&@fMcu8{=YoY#sk0>vX+n6DSY>$!}XleTYjyQ$@uapKpghZZTRUNb)_KYlHuC>=AVp^Jkwh`5*d47 zPV^;n`7Fn~1vOinwD@jX%XXIps1^DN3jBi+UY4L>){%G-d~Ay)U>}Py{=iB*;IlHh zy>ix?VAU$+`N8i0mO;`Txf}G+L$-qMQEKoyu4kQo*t)2s2~E=szOZL#3sMh{=&~#S zKKBdaLP^%uDI=EmMI{l@v}XfVT}Lk3JefXcRAKpmyC}L;Kaf=V`3fx0FjcGT>916} zTw;>n?+1gpzAJ26#tD?LsKjWaKWWB5_xs!79;R%)2d$2Q_NAO4mU~wrVK+BF6;^Gv zh&tSqkTu;Udyn`d>}JcAElp(cT^Th`G4ZcKtcG7_jgl8MkK9h%MGsxB-7CvO%Ej2> zY-Qd1Yp|-&v2SmWT=4k!dwt`FM+3vm&mSv#+!US&0t8+vdL&JbWp|%7`eMH}r&LK= zBDdM>FSv48FZMKLbUWQg5R zru8@NlhyF3XD(J)RY{G^6khdMs2)WJ&n}c-krgw_2;iwI+LcyANcs7*rxUa{Lz^9C z_${X3^2Zgj*Hb;BK7I_*PnemJ$DZ}M2;CE~Z1*jx1zV9RuWJpbjiJshk}X*C_JSp# z;<{(OILe)6EA>nQGggaRmCq2DGOA7vu|NXWn6aTD;H)$Pa z?#;G}CPg`t7gEtmv35V+9#Sv9fnrx14fk#1C1Z0~!z{(9ES( zUsaHF2r@$njOKK|i39Qb>mbAJ>1>J)F!k@!4p5VV32DQ}BwSBiv#j+IQ9SmrIN)6n z+4#gp8ja|Ga)EN*&kQm*XDDMO=rquYiAl93PWusY8FgrdD1vJt;LzTKWUBqk1cd}l zAjZG4wsWP%b+L9XkEAIK8`Nd)0JA+|Cj5 ziI9J~>h?U?AQaq$*rjLLw*)e$6us(Wqfl^wpg$1Ar0!KODm>JJHZK3+(~3PHdxtjT zYC#o8H+FvvnNM&rEpq5ggfjci33K6`=7Bh?zKesGMgOf8;ItG}2v-V@gs*}WHefBq5hnPkG}qt^pdTRZ-+j5%eSgG_6Z zhAJ(eHSQ@O$klFU3Rc+n@#1BTo0+pOhunvWgY#9*w(dh&Z-$Djv-BuH_C)@f z{KFR>{ruAt_%z!w@9I#4CY7+4s&b%okv%}?Y7ZmE!flLn|@jG zr|69hsG6Y=6+cjY-+icL4qRneu}yye)=8)$o(Q;7B(XJw&!$bb@f_OQ+wF1n z^Xy`z~fe6Rge_OSffeRD03%Zs>_;I8FcP zN<1V0t&?ZFx2}k9?K#0liEF7lu`$xQ^?t1#0_4uAwLD^Q%W?hEorKk0+(wN9Y}+AC z((>ld5Ax2a&?{LVhKGvGcLzZ`s=s^*C1bf9=;V|W;4XQt^V1>;11ix)p$pSA{YUe< zz|gc5^0BKF0{Xqr*=>RbW{!dH4O-76*V3vUZ1^u~K5o~G|J%)KKHI1W`mT1Qf8cAP zmw*fsD`DUfda-$-BQ9`xya15|&+%lx`2Fkp8kEK0if_1WZ{g5%`zHrNBF34=nie_kR!sfuqIv5U?S()e;tVU5*pdi&Taa1Z z)%?Wu^A@EZBV;+P&yHR=ejym7ihMRXkUc0Fk6>>mg_4}i#)AVweq%#h<{ys#A@LUE z=RNH8rKSF*PY2J>>f}wLQ_2{#5YwdVPRG)!ozsK51TD)!VrzY0@zgEWx4?eke?UBs z^2XI4oF-Si@ygVl7GRZm%mNxt+G$_}ln$n)Nq{hKB^51k?f^_p%{6{9+TW0h%Lr^@ zzIsQH(mr|hLH_Z7i&SGdqmghZGPoz~#9RLXS&5o37%DC15#UDff}O-@LSy}A<^B(7 zDAC@3oF$W@<^Ug|iXBv@_K$ZYUZCk+G|m9F;q}d3#YBqr^(Q65!L`pS#l53*H@7Uv zTi;FuuD6%tRl?C<#Tz9};dDalcpzhbg3jB(AVxTHdv}TVM;}r0Nb+;@g4tYhU-C+< zS@tFTx*kecqx8^k^-kMo=a3Q90MH}#`oqio1^>7aynLH3x3RgS9oj5tr)2O)9 zddRi0MtA2R-aKOCl6HLFrY^>o(q(s;SvPFh^zwNp9qaI|&C7D&$KEZfK$SwL(4Y63 zmqDb0%M$I7)+qIc)2mf(+qc-!WT)1kwDo$7wF^eC-az&f-3ZJh`nKyM+p@kD* z4_yxqLHF%VL}A&8^<)864jJ(;a?p`5-UFeB0^QC1(GbeeBeUe4@< zbZ$xvd7p&&xh}a_aARX$5d6V9KpDvhmgz~EDJ^JFELjByn z)xl&I8zneVjTWaIqo2laju%$ zE2RkJ?M>+5vQ>3M84ew%1VLXZ(Zz&M-}tKO#hZF81ZlLEte<~Xyf{y>m59~CuY%DY z3H;r;2agF_>G~wE;4&Hf^zg#C&onCZ)9MHL$$>1nhsWX_mTM}_>{ z_wTp~SVUda{y70)5(!4q-XOMG1vPjDn;%glEnoloM_A_z#AA?;ntY7RaFuiVR=t@( z3a-3|de7%%=po_Ag@=f;e(}s~7OZD;0zUzhKz zxLM+X0enfhPp=YBw!aJS6~KxnJ`yM|k0Fiqga-B~HT56-a0Fm|WXlWLlfj)a;%svL z^EkXP0}V_SLTgn|F2~ud>g--xJ3{-D=VPo}mxkv4EB#i7ZTNFZtXjspaj}*BG~=`w zve*o{7(NxXsE(`Y=`qRiaWWvb(XlgnHqL4pS>=tcA9pglsXYYAB>!mkmw$)hTjWwh z!o&zVB)^fvb4J?_%-ts!M^z^HZp*rLd*~j(BClHV{C+9ajBcO`!LM)1iP=tx;Ob1m z>EjMjHkV2?S|k-eVc<~fkuG%`s8eU+3hFCPRvRD?g4Q>Do6E#$7MN(#!^xj>dk2%NjJj0PTsBX}&OBm|;^V8co-LeEi1mM{| z1ftR~S!3YU9?p-%ix7J-npSO+Z)Ex5RwVLK?&@$S?4R}8topJ-?tIuOH5j2}f^1%7 zIWCHuhh1{{zVg=09r_)g&HYK&4q}e39BM0hmU(OVYp5*w`iJ-XGv?^k>1uT}->sMJ zY62aMMFwxxX~VAM9>3TAs1^AXRWw`&^R-L7O?3MDNiR@EX-x{?J#gj6T$h~-5x!I@ zAN5G%yeT%@awY2zn83XwRJ(dQ86J_f9O0hS)-YwYEeW~{(TKAlPR8w9?MowI-SMd_vcea*+ z!^g@RUTFWI?gccsfBy@)=XaJF7!W!@}GhD9~=D7DEvQQ zga02-Gu*b-Y}+RXe8LsoTLq)4IkLyy%W9jYRSVp$J_N59?3KCPzfVpdEyIC0d3$eO z4d%a1a9 zU@1yrK)>Jb8`lXz=7o<$+GA5e@$>r$GFU-IKHi@;KCO4P*yir0PcG7kmTZ19jowkD9mE=4tQFr{ zSKL)N_WiMOz(FXm&9wG*TgN`>0DST2qWb-r` zC+Gr}je_U_!fUK%RP4J{`LI%Qo)u`DHQ=gq&lWl^dSTV;KDRsWn zebNIi|B0rL%;K^QJD(n*V@(E6U2ap#5a=J9h@Mo{o?)*M#~A5BapGBlN$#;GbrCJF z#H|E|>u`>Dh@#E!bvnKT>?JM*SRH@! zlAbS<`18~Y4(GX4(cV$m%+CWHVzx2+Va20rmxsh!hbS|6=42ba@d--4!#UN5AH+q* z(Gt|heKWncNm-t#G&yHH`oC;~5WOGS_Hp$$SZm6!Mq1*4PVInirq3Jw$+pE0kwu)+ zq~QIj5IxAZ&Be7cqNZH%66MZ7PLIc6d3qyz>kv?A-w2NXmAg5K7_}hBdh+*=7ffXY=Y7mER)n&8{5fM!Mcb0kT<#<}|I4ewfv2NT)>i+Vp`1g4 zqS>~p^TnB(lh5NgzjjESMQn6O!(Ay%Y;e^1*NC}DJS_oFW}Ol^ z_gnChuFf@MeoIfv+$0y1ZtQ<7RRh-XC&wVMwNM7QHtul7;4lUP5CS~PdEL0Y2r41w zrd_;nq5Z@L!!G3aMI4*k!sCkuujZk=1iE;-*1WqFh??iXebwb@8%^K|iv}O%Z4JbY zs#-981`_eW%|!zc$a?rt=;sAWqXA`~rxj=^!UGv6Wfw|Jx^Ufl^`(F~fedAdD0Kb_ z#7NTr&Tw1>{1&oq%3aVvs6Bp73iSommwL(BH9N3NYMFLYw}ES8#eeLGC~jBQnNFqa zn+4iyGkmK?4U`9^8v<Cmr$*NGTCk)^NxrAsBAgk ze`Zl$>b*sYWw*eDoge3q#W%8<|BJZbU) zWCW{?D0TYN1QunrOlf2Pl-T#p4|u^hsN+s5^UF^OkHhSN@|k~uX6myh(cV8=qjS2z z6sudVa%?}ygGI(Ga4$WcC|B9$*WYxyo}La436uG{y5AR4!(NKw(pJ-x?kJHmAFxmu zV6~WJ2hpI1r)kN|d>BzDz^IuPwn6#IAn!Y6o{47lti?aV2RUvcWJACoE1m9f@F^-q zUPHxZ6)8*4zr6}o?O1AH1hTmKTP`z68Jr}64QsH>k<3~M!X0BkE`^!@EPY_fh(RzW z8iAjZ*bHh-IqU9-@QJIB>iqOMcn3t~f?4qfLcPGEEvh%8ezs`8ol5-1b*a1RzAyZK z`?xO7O^#GdtA#dyx{uS7FUFUW9;??rtD)wmg_q%&%^$I*Z=1bhN`{3`IoAY8DzUz~ zKrhTSKO5Rt2FBzK8OgpWorg8qh7#lR5(Ri@1cxLWp1t+tK!AUNvan&)5aK>sdvLfy8W^1Qzwec>Wp_%^klfMcJqh(MLX;-&Ly$K=O-wL_0KEJA&f)F{GP%`xmn^lnt5Pf4bwMMt&2rK z?eNJe-3NkJG9qBX3;d8v^AGYe1Rry!z&^}{^yjACDV=_5D8oKL$^H@S^><)=eu&r! zTfbO|%Gg)!Dp*r1C5x5XMPiC9f>l&c#^kV@Gc!vHW^|FsL%|~jQ3H3XT-S~m0OLK% zuq){y1jMssa`C&DC(@H-!5G>ypIm;Eq=FmJIxjR{?~jx99mrX>%v@;8kU;AL{A^Ky zY2s!dgJY%yrqC-cO-*W-L7Il@KyYaXc*lvwq%SoWwJg0U-6S5L@vW(PZ9hH9|LI#v zr75Z+XqA<}NWt-n%b-YCi;Z9%Tybzs>aiip30kv#%nrN@Gp(Lk~%ZqBdiwm8mgqKV2XI4efY zLO*)Ct%?bOXrNIna%fW`0AhdWtRd>cfHQ~C^)dffwR1-BV3KhA&zTEXgWv4YKDx>d zwXn`+!?^6;mi-*k`p1&{x1QOm_}ECm-|5OP{S5-oyc5?58?W$9l1MIFB#{JKjb8J; z8#&G`Y(p&5XJT7m)(!Yl_#NOcv+J*26wJ?4VoF9AzJ*GCH;)rKoSyo_i%=sr*s zFhUooLd*dHKNgmI=Vt25f6=liP)$*Kd?u&7@~|L)DZwEI!rV9c76EaB>{}GqNcG)- z%xuV6x8Z_0K0=UUfJ4ZN&7l~NQ88R>Wl^1*N`1z7V;$QycxparaY&uaa?&krJUiWg zO8S^>)^l&p1d@UbZ6q||rIc(vt;~vb?`_6P4;9ai{1=vZj}@=mSv}K{)_L%d_$!f0 zgQT+Ris{hTY#xfLPH^Vp_Q;56g$&zpJhx7RDr;Q&nji9wCjBr58lwXLH3T~O;Hq<1 z6%apeZ<5zlxmaL{O%-(Rj`0BgRdA)>on=^LSq4+?302**Qs4l$tj-zEi#~wNZfrb{ zHhwLE_3v(o{1as=?|}|w6(T0a1-7HTrq1>WnkJkOUDg1-uHQK;CUsQes7f<%YbJVv zT8uBjkhfO)E)Ip+mb(-(e*0FH@sEEkx0Cod*uppc=gdhUD&ofMqg!bj0sX7Bv!*r6 z^G2`#WV%QaAcM7#&9%9zv05Jvp*vHc2G0s}{DB*SWRi_6Q#0lgu9BRF)|!I-eUhD* z!cT02oWI;xXE!|hD(0wDu0cZeA4O>nNnAww1JNJzjdZyw9SI5oi5KTPIenAbhpbYv zX&4jjUyUMf{lZ%t^*}M}RaU+fqAZK|zf{jHVYWcW{N3_oD6I5RZI)A1b3bltlJduM zbQZuLd2ETUh}1m^0m0CX<#jJL&;q62=D&MqcZ7UuQ;H+p|t9*~ybGyjcStj~1Wjof_DYq_MEZl!JEXeDL)r|V<{OO$$uT5?5QXt) zN|557Uf7BsEufTqoyY+cv1RYL&koqC1^U?__R8 zd(}Q*706{03%o-(6nVsY_KT}o6Q&to)O+Sz1tzsu!>U}+EQ7Tuh{vti`?McCv-m=g znFZna02cQ`HbOEP$o($Q#PEaq$AeiWL4pQ)G4t_F&Zw~`Mxa8Cem!L;0x}s0CU)UB zt?^zs0n}US;g^pE_*nT%jf@9Tx&$oho|KE!{i|h}9Tw-O^>*vMWsW};xW{^4IG1c( z%44!|>XV{!ZZwCECPE&URi65C0i0LexbX`_1Mx#zd5rJA@Tr;Iohj-WjK$&B(9Lh! z_GF8C_})L5f(a`FZEc9VKfuK@F5tUL8yf0qew~wzaiSaXvPBWd12lff>cgOAJYugn z33WdMF?Si$V23`XgG0rnpxMvtV0oG_7YAcL=RgpZYrF{R!7kt{(1o3Vc^4e7wJ}jS zV&9*QHh+%Mk5tp@b4*B>n%B6Sz_jx|_2hygr0BNg=qnci(^?E~Q!+mZ=oV>nf=qmA ztJG2bVm6-jT%aA6dK}XP2VR>>R3a`;G@X{KajS-^D9BbiQQ^cY=duK4yJ37~w~OsZ z0aAEnn4)wFIIf`ZpvSRxrdk1JZADLq&`?qtzxp{SBU5Re+y~XR{n?uY#6%d?^!zdO z5_5@2PjW~Fmr2vo`vSECR&!`0wZuPOy&#eA8Y*SkHfz&%tNmc>-^O;MyUu01ODaeJ z%-84Tgm{2Fw!-^?=uljEFZYwCV01E>cbL_-!$b z3>R~8@|NjjmV)z#Aqoghz3#)b`d!1m4T?@(MXT@`e)qbwK9*U zsRZCVPg7jpYoV@T=TBGJDWWzyoYm189^TF(}nRK5MP{Q{t( zj9sZs09gIHmv{{`kVjXtDfpV8WYYY8cub@dI_PhL3?)e?D%;s=N}=gvPW+aqab)+^65F(*M0I+tmE4zy=QiBwd#V)@I;=i4zkvf> z_D6J|S!fl~@*>6w&*6AjVCjsZhi0b*xWi$VtGWE0hmyFDK1 zN9`jL_NH**A3iv=#SuGHWk@0uqj6ewy#mwWJAgXYk*reSBvmQs^P`{X`QQ+Y(m2dr z4iu7DFitGn7X*QJjB`b4HUlg*ulPpI%9ZpJ|to0d7<9j^o%zVmt zYsE{MB;T)2a91CRVA(i(7YZxht2HWHN(vzjt4ioW^0&NyVxs27MiI-B0@qNcChhR zC4w9n(ORv{d8pWQ7Zz@nWUl73=tu=QRwpQf`vu^6+RlqmfW~cfrm*~8=W1?e)rZ}X zI`-y`2=eY^c+(*`B&;AON)9q(OF+42$b}T%I9HtQ=hqkfGxF=3H@ib`TZeg8Xu%g> zN?x=)xw!r2wi4{sQ$RpVxuN~o3IA<@8_N#`Zc<;Gqtwr58tb7Vdql)$SQ+&LUD0#K z@@kbn_Fvya-bmjuOJtf9XD>Ef5ATsAdK=7s2+|3tP3d)zPW)NY=a&V@b3aQizq)jXAQ&&ZLVsSP;KmW@XR!{GL)T-zx_jFe`Yl zp;i(wR*$D?MoDnyul-K6uz3;uFsXPvXap&&g#UI$?0yw9H`o&qCqDXP&^wo|v|ozC zV)gdyAsOGoka}U~#6n_EXfIK~*_4kYpIy~g=U1p*jTYpGS(YCPIB9uSRHn=7Wt`WM z*CTVn1DSB0&fC;`MB^tvD~DIfbf#z*1&Bw_`mP-q?RGgaq~cyXvjA;N1^K1m z$!?|%Ojg#NLp|60`h9w<7dX|VTz~w#!~t6j-IX)2qV5OW9xF0OM8$o9Z7=*d^`QR% zB6fdm*-nr$Y}36~N;xqgKi)3i6LLb!@27Ir`fwq0n-U16zgcxD-a5nNBx59#oAVwV z7pW6l|6*+iN&j$Q_o3^`f(Ff?Jb3~A=TqJ}f?C#eO81@Zv}em}W0k|#W4ed_A+GoK zjC~0l|1cB~qsu8ow+f5y(}RM9*R=(Zjzvi&*iB_ECN-_~46YR|8buL~r)9X*x$`xz}kjK~RM!H{*M6ZO( z3cTk|==TF^OSW z<7n2=nj@}Sif!Eh^Ul!9~slv}gWdO1hsrxOP)sS&`BAKIT#U5(kYUSHhN5MpSZ)b4 zTGw?vf5Nf9T4c#Nz5X%q>E;;4UBwgMjpVkzv9t5k4%K#xXVjD+L#_tCO^Gsrlhg3J zjh|C-F1cOL)&}yO&tZ5!YTsXK_Y#*Ss-gBlr9~rNh%ALnBR)H&5!9=^e%xnDoo0;( zCe&ZM;7A<1lZBRu0Wv02iAPY4=17}vWt>-=(F!Jzzut{)ioOQDI(@dg+7OH;!YusP zq%6EbHgX|^!d#TgBlT-#AM-`$7&Q`oDrM3ako#{=!uU6;`jv??iL`mw$4APysy5_QdZS7Szrn_;q)dG(J#=a zFiJgXxG|J_XGneu`T*oXu|r-XF_eJvT*SO7yn19KL=SjuIYz?X3yaOK9|6qZtI#cd zWMfv^achujk$JfwL@3(wj}j(MG?+$=q>sU~L(Dsk1U+QfZxVHk7Sw<>vP15VV(n+&bULq7=Lja7lH(9VE z+RYd9QNq~DD`%od8Ks666S-*T93lp_hw(+>%wTPZuluo8S(B$1s~J>`!Nv#tGzgvh)Ed4T34O%(K|8 z_yER}Tx3&N!e}UgSpG&n(CPH;vi5Iy*7gsQsWI zS!3NIz&!)dIBNBw$luyyS}w%)*SC}s?D|%RR|`!mO2A|Wslq#)@H(W~u# zg;S}v_T=^}s55TPDtyBDTpc5)=OHnNq1h#i_ku%>zVx?p$+0PyI_H$EC-Ip)bOI4H zSgI@jYM{!AW0Z2q8;xAf{zOu#2`jb0pan@C7^dM7P_JoitF<&F{aPp4FxR!%68niU zKQtQoE~z0{S8P z8g?TUL2>+sov>ojh^loL&=Tl*j$m8#06kw3@3GwW_8Up8F5*U8Qy18uy|xP~np6+} zY97;Z>{YZfcC*&~qx9y183CVKyGc1C3*LC_9jgfEQOLN8eZ$#8qDz# zjGpE7mr9-|P$ZZ1wV4iD9GOH~$+M*ujY^*?VSq+yIs>GY8)^D%AW7e^P?L3U*Y16) zhHjL>3s2ml#EvX?+6uPxfZW-Ot!jNrS7F`fpVOAQy({l=n%|eT5laFLxWKjHHk}eQ z*gquDZ{40=FW7%Wt%{JVC^o{dfU=g@8w%kTYkA(7z@ zUgQJZ@qAbOrVD<_#kQ<*^%37o1QmGp`>*Q;TWa~-oG+SQzeDw9KwKTHG~EC$3r`EL z)6tVX4)TV^5GIX9L)~K*@T+Y;Y3CU5PCd$ZYpFvJ84dUDM>t#IwmV87s3IY0=RVnK zVgPI%>AU71qZx{aQSNGprY?4;44ycXm#$YZt>5WRdewz(9I9A)8JOGefVdK|mhlO|T*AyTezAWJ&D z?%VJ#2;`;W*ioQQmc%|CovJcj{)A3$Da87Y_O_v26&T?0sqmi=-anbSDN-?R$F!cL z;`SRUpYNm5#ZFn&Jl1_-rtV*9n{Vy}rZ)ekk7+GrsXRMSVEsS3q*#|Fynf%vthnbP6mQ|RcW=ocz5|^1+g48yxi2j_Pz&)brryHVE^UV}8YO?Yk`$gF)AC5I zzxHJ=QAf|6l=VW==>GZ(q^|rhOe#@K4qZ2!Q(g{Rdli~f0B{`NdR$(=YkaDC1u$Hq zFYEu|^Ng~B>aB;ToF}sGHGOmO?;})NL8w!J!MC+SUa8_IRLbfmK9~W%n@`k1+dQdL zXbI?{3-ZSYV!!p@88ej%o&TpMCS^R)v%VLt=J@?NZVznbd~^~LZoeFiYdGAY_AIjw z=$k>^AHYKyBR><5NE#I;Zl1+ozA_FgaXB1o7wXA7EUi{*HvqYoyW_2NZqYX|(Jz~= zy5)aie=!wsUom&*t7MDF18GE61}D7va7ZbjVX!uH)2h-VM*IX`L}vo3$sCaaoE|Q? z5~=t?;|se~5Kg(h*XA~7_MBbtG)5Z+RPoQq=n**(@d`odoOY=nNZWgcgs%RsBp%sD z$W!6=>59&0(G~Hd*+O>2dtm@E$xF=o)hoEJ`)R0eY|>lvWpE%k1GXmOCqo08#je|vKq z!)-)_2vOAn;?)}%#O2=f4Ds|$GflHeF~`UGnM3uFoK+`-O$PcWw9^Cv&gNP*#i8vY zRg)8?hZHvUoe7B>ZUi*L`bz6MUqF3ciEHiLCo`@5OxagDiT^)2eZnL5Q1FrHJwL+cvHtGCQ+_WKs6m_r`B zgC3syZsEyOs0k1sR2cTh@w!hU`pEfu=Wt6VfMp5?mIZ_4Jm}b^hk79(^;6_*aQDX$ zFe8^Xp3sj~@s*8|Zbx1LNDoQ5I6K$HMjR`R={xU^nl~iDi;Ql-elWh6b2TEh`zfB@%TcJd0BzOVy_GII&jGZv|jp+{s z$U&b6`5(7$RyrBfz!ta9HU@<}E@k|G?49{LlySWGElE+NETvFML?~;G>_rOM_n|_V zG4?T81}RZOvW4vXGIle}FlZyPk8Q?SD%*@fn6ZrIxjWA}=lKVopU!ps%5{zFp8LMP z-|zeLe!t$fUwgMG@XSzB_14mOp=oB%q(=4bcF_a=jh=h3#?bL~7q!{^ITbzI)z zYehM!Q|cfaaUmrypB{4(g#iwktn=pEBdJcEUmh!AGm#aF^RZg90I(C7xYWAsrdw_C zgj9qV=_jWLcK9xd2kj5gyl(hkTzH@whdVlLd zGYQYT6MvLeAYE}I=zFN9Q?OBwy>=R?Ec~OwSTv1huex4P)_9<#qipibrDqg;@UeQ| z8go$L>^VFt66Vym0D2U_a|%|74lALVu=*=wL`oG+VHr~uzw=X@i*+ReHq-5{Qrt&t zue8ox%?bUB;$4M|mHvt6Fe2Y9tX$nZB+6DKR>dvO_koEGkUyi=H>ZoKHYlV8Ee&+V zF~mEUSCigK2kSHPzg2{Wl)H|N?q?Ny;MB4yHdPFTfGNU@d>>7p6K49${?%c>5}b*g z4LR3ltTIPS9gW(MwDko;Cv0Di^MQjlZMBaaLf)AUs8}vmZ&k}BXt;w*!Gz|R6MoD= zehjdl2l#b9kacQIp`3s&#-sB6U${9PbcyhCPt2`sk9K7(xQlHE6I{YS9lww!U=kmY zQ@wF?zjWjNLV@r}6xx{PsmE_e{aAs%%Pv*5m_77t>5i62B`C1e*$GymcQIToux@%D ze#bf!rS>jhCBMdj`8Kue=tD!FyqfMG9NDb-$Q3$*b9dueR>DXC6)fUNbPVu1jp`kP zf^vAsjPgR!HtS}j>pKz#?wCL0*n>*uexq#X(D|_oUd4KuD4(fp>>*Fje&dCeN5J0p zG5v5n9OS>HcI1p_G+pc&Bg8K-8CRd9CwoRju`Tn)a8`fydQVvaRG)2upID;&QQP%l zz;zia2#xn&&;$uRO7Fb0@~JdNQ+{Lz_jzRGIBUTodLu7=(`Irv8I`j617Jb z3mA}8K;`fb9&Mf_S&Gb|fq3}yp<4Qq81*u+uY)6@;~M9$|KzCNs@0_l`C9m=BCDbXjltb z3;)PB_1QHXG-%S}_DHs(3Z6tYF%7}*t~=BbITx|pL#1ydh!3#|0(_KhJMAv$(#B&tPkR=PB!-Y1v7f(|m+qBkIa3fz7;tr%KqXmEpIeN4 zIT08g0-i<5y-h{g30-(n7Q5N&6+}iXD4Swr;-*Gg97zjinwK9aaTyB@c;hw4$L0xG zZweZ9Z8daO{!aiOO3RLvC&#d=o>-KhZ*b%n4d~B(T`A`-Fuq4AQMH>RxE6DJacE?8 zK9lPjgyDjXp1fi>gFhANi?a#LNd2*hNYSLLIB}$L`SM?&2yXdK_cuIL!>kEKv2q0- z?rf^53`gBgYodP;5oQe|E0aSbGDK@*yx z;y#WDv!yS=gOe+D9v*IaF{=gZ`lTM5uSxG7M9E1Fb&d0Qg`4MA1Zt5o(9CzEkJ=4{ z(kCeloYpCa`d|s6^$U%_LDgT|@m~0)DmAHYoX;lud@v`;GwyUaC5kt+G=Mw;M!ja@ zU@N~IFGWY9+Ph$J$EN2}XXV5EbZbyU3Kl<($?7&*vT|*#G}U6J!`KN=@*=jg?W?(_ zvYn=*^b<7x78~W%OOb`K83+y{F(F@;GwL?kq4YEmY!9~TDj+orD7b45>5hx;Zy-CC z2G^}@c2H0uC@x+nCH74r+9#g-rV_~ENmXf_8E*462@rkn43WiO80TeJ4JH_WQVcIU z#DLrdu9uMqV>$+Q1~h==kvdq)Os&a5$Fci3j|Dsir+Ok@lE8#Ao-rZA8L+S*M1q zH(Vo`#}<=rT2kTlqj_Uq<|S1Nmb(%&5c7QG+bBZSm-dE%(UL@$ZVvefU6FAasvC$1S>YZokM%7j+2MG0-^ zwHh8(I<<`?d^S#qR7PfluD~6RgG&nVne&XyBe>tiGLa%x!hd%*AByepoQ%`yjRDDz zOaL#ASwo%uPAWZt2=gjO527Qt74xd$F+WD}%0qJj#v z%tGgN8l~_D?ewx%`9q8d{>F`DyDBX8h9BvSZ2fs=Aa7uVTXdfoe^Z)PT%8VqE4QKHnm75N|+xs9auhXW4v= z^PI@)rb$2+=l;?d;wZ)!WuKMgK5e!wa*Wo9bgwbUMH22T&L%=g{q&bm;H3}bvt3wF z-27zuk5fiX*i!@d-`@OP%*@q;6Z6#@B-Xz=VxCKno20*RXKiRh_GeX=AI%aqF1_K- zWRMTgUz2OD6bWYQ8D8@lzSqJ=jCyFb+lI1K+~>YL;twO_rt(S#a92c{k>#rF+3U@8 zO$sV?1Og-%umd(2uX^5|%L`!1zg)WfEYMdOa`%;jAIx2N;9>EenMr2y5T%8*fLy7x z=k2AZt6oC$e+*8lFW|KDV{qeiWoOGwdCSDh9N?~I^*Kf#Vb$8>)c`1gOIN_8EG$o| z$^3S5ahZ7Hy>McS2UxS*tbmcvF@W7Szx2XO?c{)ax1bS~nW)0bHD=j&x8S+bkYvCP zG$8&neqgoFv%xH4{?a;n7o=Q4rvBt7?R3vFj`rdU#_*ZvAm0Vu|{H$x?6S6S= zRg9PTXz+B+lM0&utm(yL)5|)~X zUh(Dcuk_hhZDR1TD>tM7P)p4h?Y)@x)RV}wMaVm+w4kr7bDi~+u(mIden)x5&%jT( z2V{-9E(Tk1M$X@(nY*)qo1bof*|+$t3nQivMTIoKuW`KOGpq;SCtv3J8<6&9WndsM zw?@*WTVE+W6GQvCwlQ)%-_=INg*2={AhQV5nhx8w4{zrW6hH354x_7(cyPscjXTFI z>+U`gyHK3$(H(3M9g#8e`Jr&>Z>^l7!40n5kw8dtwcZLvQj1v!`bp3(+1L2MhW@fL zp3e|Z295GJMGgJEkC=B)FW>AxAdr3utUuGE7Bx}_hGVvMgFhCkF{F;1?$r$rz}!tY zllVN^{8=C6FQO(sIwhkTxL#LS$x+9AX@=eR zUzzDgjJ_b&4GieRo~n)Ql$vQ_srN*lxH^R7U9{{m9WGBqL3jlkD9;P$%GA`9q?;U? zhY===O;w2{SaWHutlN-WX;E;UIfj|0@miVe>16 zf%SUaGVX-Z$)9(qQEP+vdTB8Xb*Bw@fi%R@ zkF1)~)4*8flqjEwF0opyX$z#OpyKMNx)bO)cY_gq=U8J6wBLg3dWBUJy{JZ`K`Cj` z!K9O>?1djemnYfK(C9c39An#fVWf;|eJE?EN4$Dj^PvbN(N%Wpz^9bzLlR*SmCF$C zU9D3HW?}i2CJec5vw4)`Cc?jywFzvTe=)jPu>`d*7FRnA%Q zP;cZ~kwh~r*BzhiTBTBC)3rMqhNAmjo#tj?S#$Q&K01IEFcaTAJrqgi^cPCdOMWS@DwEzp9=1J!0Y2(Vs4U~_ysx&+hlFf z(@vGQ27O7i=Zdhz*kM*HR&q4#g%XedP1me>K)2wQC`R7Tk$Y~zG#?fTQY(u5@J8;! z$fE8@1p!ueFEr-N`hdb#Mr7G#J|TYW#V(=sc5yIaIZ$$8HI!fDv%c~x0mJB{GuY=p z7bA5Fz9CyXV`7!#W@2Mw{e}1jU-HRn_By-d^4ZCo@ejC@J(3~g4cNo7`P|fyKP}Iq z@Tv-5hd3&VukE<+3W=19m(IBDe}`$@bO7&G+b1EYgy7Q%AMmZgj+4{|xk?K~_JNdqBzkmCwbqU8&bAH`>`H zVg(FB9)>L9^B&)Y>xhdj7Y|%5T4B!Cc<|($5OQ|ABxHGtUy62$VnI2)ytTi_cc?-7 zkQ_A`n636pmk{W|zfgOo(_B<|iScNpCR^FfV4SHGtk&Qds6^Dw|gVr^iNd;KbZzv6D~Qy|8)(4F-+(tNGlxJZeX&&-K8kQ66ouy9CFSl)T| z{0a?9UK=CSZqUZdR=jz3U}oaw8!o<%0iVwA_HG>*bB*YYYS^JI-WVRPL~x7rH2t<~ zfQ#m~Td{5kj-{8c-^y#~BTVE6-Yj6*?Vid)rYD=0^C9odY3E6|<(dia)UQQ=VfF{C zs5i$w7_uTl0oTpW2}IqKwk+Ve1ov99DeafHsChiDR3UyJX6s`6t{p9uJ2*n&f4-IU zWOjpgP~vR=xK(DmTFjTHU}=;0NdsVwJiviN%n7~rRZ`TeGO#CqR8VcExPy)o@z0Kr zCSGqa{kcuu#m<%qGg|M}ZLw$!Dqb}H1WKQu^*&8RAC1qHv5t=JB~}X@xTSRONZslc z7#yc4DxDNQaS^n&y-xj$SF|b`ZHP;gPZ~O2Fi6XH{uH_OH3oK1DJlzTr2@FA@oar>)!Nssf1R&@m zB3)d=6Bw-r6Q@=}!E+>wHiw1bbogSiJ}pRD$WLF+IxDBN-de=6!(cGva>7FDP&}Xm zUqlKyu%OmV#34$=tF42{*!wLF{tw0aJnmM1RwT=n5Bgvn!-Lk4SgrWNT|eKQf_}7~ zIgjwo(FDU`)R^$`yu`0uVM-ZFT0*iT<;feEQ>xx({hBrRF;Q*-X4R%)yBCZwdTvXz zp~CPzq8hub;=#3R!?w zO7-{CKMrp|WgRD9MXko8r=x}#=rLM!BI1(N_J>#7_0^nZ`&KM_#L3H9ODb8G z(oy`k!=)GUO>?<)>DXdZSh3!?e)sho^qvWtQ{uF*RHLG_iNi zLd-qHtd#$`jjNv0Wvk9&Xt2|-EkvA>)p*lP&bb7aPNy(=?yoSPl^=r>+7vd|ZLC_003!xidiv zFV?S#$OzLg9q~+m2xO+ua0&}?BcL^Fc+PNrB^@9+hxZ(_(rx*O z=L(!lQ+3@J9D;|7KR8%3C@yYa#<(=go#ESH_8(Q^It6yz#iPqvH(b$1{#ov-%`mgZ z6iYQ55`Di7d1qTSXk>O7&ASgP{oQE}%Fu;BKrXKC$GLs?oc2^%(B2< z;%=Qx2ThZ+;M27Gn(hH%;}q~He#+veyn7%74W5bCtEIfq9Qdb9#v{ddfJSCN znt)c2yG4MtpBscV3#a5~5X#RBE%caO*uro>({q--S{(1fbL;t94R1TWy{vQ^6H=WM zmZD$+QwN`*UWR+$KlzBvR%ZXmvS-8O{`(5k?$vP63Lf z@D(>kKP9W~sn2U#Nr7H2)-1=g^jyFwbN@+F^WSvyMldE;mqf>sYVZH=Z4g&IzBR zTE&Vk7G)#}9~Yik)%bX)GvVr(h|mPzF=#^ckp=1Bx$&1rf=2;+b3fM&Ax2pe@yOF)Y{a7jfSC-Y^RJNc;ZcR{5VqJ-rfD;i^dc91e$L ztpRhy8EA0z1E*JJ2IrBCIWlP5eo3I1f~1Of_m!S8C{nxJQ66 z2E&ebdI)jd0Cu?F(6lexKuG+2cEo?w*M_9KxF=&c`UND;o;iTF&a0sSwnR(G50H95 zMN*YnV5FtsQ9nO12CxowbtAp$@@GYIP5BHF6Z~Crb1HEW%k^?u-1>)3s8$2dBM=F=CscKS@C1v|O7p3zz3{PTq_{;u9d2dg)gw*G0`&hYk*!eq|tZt&^Y z$=4QbVAt>ux?Xf^HH`ZN#OY84w^?H-qMIt~Bs7XHEzp@OXQNgc)1=WpOAnlQ#I<@H z=45p^KwzB&C}nf(KqObils9&m!H+e%;3op6ym!jlH3Xc6Xx+v(KnqZheoRGI<{;dW zWflYTF{jltuEHCRbO$e8iYYgk%!8RvpQ~KEz3#nvfe(fQ?&0Gh$Rc|lX@O)Bh?w%B zr177<(uogM1!g2Xx^VzzaX!2IlZ04rvl${fS(!}y`W!p03bU24!+J!zm139Y?rNexjXxaOW;aL2C>Jgid$wYf5~yNO57q| zN(LeGdZ_1 zl9R@-7p{PoNS8SK>?e3xtdKwF$B!~fH018v?3St|@2qjkFQtmv#Lqh&Upj4j=IONY z+B1y(LfeDU?M=$|Ql5$3cTK}gD%48m&gjBqc67k0HeD3(ss_A958%iRHb0&2Uln0b) zNe&l_hRzqg1x6Pm21ENFtQaF7e}suPpsx80vZpqn2#-+T%IN0x5Q%An+(c;bV##Md zI0$$p!G)1koJl9oDtw<_%3agt^)ctvULXv@h-nY8-21@i*E&`W8`2^`g7_Q-(xDm= zHh<2vB$4=LHT)xut&(Cj%#k3BEQ(etUuhBLDN$2Wy6gapkozchu-`hd%VU%TDeSkc zAtXGt@=5uqZRAOw&5e#jLq^-VnszeVe41BJHPw2nIzhBiew`{twAd%k%RSZK0k=ef zfhFVd&sR%<1)?oBfbRz&499b2Dibl*W69B`5H)k;j7&a(k`Q3KkgDRojR;fUNvy9T z50{3;vEcV#_bBeIoCfL(mgx`o@THtDt$u$0(#YQqars;F65nVH%iN*abdXt8#mYT$ z9Np}8{3P~YKBQ~ij!U)Vd>QVO3e6FR{)K*Jx{SS+Ibq&jWk-UFQ+TLyvB?=4S=?*m?u7lV#Z)oc zQ)!rJRCC7X%<8}96g^#nG$6ex*4?mIqqBxPB^-1ht~&i9p6=aZ%i?WX+p6nBU9SKt z0{)Ds5{`_-c*!Q%uGpY>)H$AU{h+U|?Ud0-Q+d;d zHUFFySu$L+^fi)6k(s_bFEcn2>cq3-jMG`Eo~$*{4nzrG+aT9@ATiaI4GC@A#Neht z$IjnNRr@CAqJQemL38A-?lyikr>s;I7-=Kj5G|s&JSz_e4@zk|Sv8cFLH6MK3eSnt zE6*MJ5qo0hKaQ))bJ6h^Zca^uO}?Qz@2a9?GYA{h1>n2f38wB$ZuP-o?X0SYLF?Ho z?gK9^Mtn=0ALwI@_zmA}kqZ0#*$TP^S{#XGDXU$>VHLtSP|2XX&4_-&Bcx9W$k^gx zYa8{?SkT)CbtpelL7xb=>33Ybn{A%|CD?gs{oz_8#kNBj3Ev4T84itG(MmrNS2z;% z{=rVEDDne0?}*&puvEw}wMC&1rVmjhm=;DST^0N}wZYpUa&4K=MFlb$N5$OJ&RBqq z5yyA}nZlIaFQbqVJ* zM_}eV`()`CzY9U+D$2+Y3@ktJ`j0e!yG7DB_W}&NlAjao&sNg>Ha$}fA!=Xa?wavI zHp4rGXIN202~7DZ!#@{aTYM7AR1>gNbEE}ns2YJrm-gmUslmG{(iQAy3BIMS)jaPs z4=4=JgcSg%`p=Hfwg{wgcB1<@7G2DQY&DyIXUvp-cMrHc)|pkq6DTBC-KN^*#1DP- z&KQjg^blbH^qxIgVOyEsH7dO@5D~rkGmpm<5F5Iip)KkNS;A4`-yr-Yv52cO@3!3%|*Z(LujI z9OEJo(e5reyuwS=6i5cH>3x1Z^M@xH%3l&$^N2HkQ@I(=jhAYGi41z=M^9Y4VSf8G zOfh{a%p>!0FE!a7pRf!2HA)RBDl;gH7ArfVzgS9vSoSaz)rBPl?HsQNgO|ZesVF?P zmlwa;bGIiCvBh(so$3~xSY+}bO9$($opt~C@shDbje5(C*MT>dVot(mi$ANti`_SA ztq2F2{4aL?p|HJgst0Ul8$(4%f3f1Slef+gqgPs%xR^DEV=5lRJBR7S6^nVv0gv3k z8OHfw+>JSCo40$qlmp~9;LcaY_1vXB&doBpeHz?S-a3RX4z6@2-#busF5dRLAppKn zql}F6h z66gL!tG2%4xEWI`jnCq!F1OT)RbIHfH00!=J>~@GHg+6v;`!Z!I4cw+7V9U7ZZUBb z6KF;QxE$>sjKCcUfQ)^G=X=)iYMh_di7pPTAU&$b_7V7sPM_W-scN2G-hv{lLB~Uy z`l2@hPov?O94d4tGGP)uM;*q}cITlXP4E9~mTEUzrXgrEpIZjeK0hGS+Lp~vZ;N#w z5xpwKl^N_n9MuqAYiwoyFrgw`t*7NSmx-f@E9F@uZe?FAdd#x~&kd>|`%%_JgxtH4 z#Wn}8tco+{qj)tB1{ePFyO?nFFpvOUmt%{I=qmF zki6PW+hP^L;Q_UJ+m`Fk3NS)*lFSg}Fy>kTHNcirCx|ul{NM2)dkvB8xanzli3M!z zHN{5w*sxN<7#NxEE${T4rr4&wD3=6ysBtDxgV!5HHE46(JfmYlJk&k}2u~s1N;DIE zm;^1=w&7=T>&ypFbt1_Dut#HWY`)YzBvop@ZrZr1Zeh{$NIVpNXW-z>qSkP;>9h=X zJJ;z__Pj0PMWg?Qf_fnXi)PJ|Y1yAWHEmkv8g8^I7nUBKT51xKN3ZS^ZbU(b8|6l_ zIaY)Rea&C;9pz>AIX?gGAMP;F>?nkBz`7K)M5W^9=ll_S`#<4=9z-}#k@is})8X`m zvT9@TxX0G%3UO6qK_B7~To-jUsgSk{-|Y{z3-)eW!wwo(Hb#7NL_ppS^K1;hY2(ej z8qxNT=4POJ>h1<>;}7Bc)%!XU;TErp9VR}cnm5Rk3DqUuoSJ^H_n;>M2WRbc9kV_n zt6K>83mS5Bx0X^fA=0W|HZqly@dqf}?9r2ARQ71|+D_an;L3Hs(`O=C_8N47m zu_82Q<=8QNKdn=mx9E2hLjq1H)fNBHCu#Z2SVTNS4;sbA}?j#fxP;12cf+`4*0w)&EC9dhjj`^eLSar|AEkG@D1}2L`NkSWA}vXO}$x? zagTn%Iu|zR+J}x7sR1H2H7P7>P<9oYvQvZ88i_J=xT>t7_}kkQ2#`2!yD6U?oi87J zhJ7qYkqcdaR-*yWT-QLb=JHt%idv*t3I~;Q+U##Rwb66Z*JqlyJ)s5~@Or zRGOIoB8b-$$CbZ{u_a4hrjlcIvJYPBPl$)_z0s6=O_Z>dnT+PW)Y&19rJ2R2ze4UmdXpzZtX2E&iG8oS!Gmhx$6bgzQL+GL`DI!5s((qO)FBpcqy3?lwxM8Z>uNK z1H`CG;8R%>3In&X4A~T^o=iz*Kl)gxQv>HKAc?&95!}EUpr^yWxEw#w`%dTli0Whu zJX-#Io_)Vs=h_p+L{_D~)&Umb+Ye{o>Rckf1?M>!07HI_qceMhe~rY?ks3T*dVwWb zJlMLLU>Oy^v99n`Vl{`#NZGf9b}!t}Dlet;Wr6%22 z^W?V*35zU|f00|KQJ$D#&MWsH(e1say+=p?8zQ+OukuLzKUpIzdy9Pklj;S7Xm>zC z>&YT&VV~ng)#eYFg;^lie^(s%iMWuehL8j9Cd^z<=D%V(=YQd5|4UT#wGRAK(f^r~Z%>%``&)9aeddg$v0dKR=bATerS=7}AUDT-|7Fv;uJZdBggE}+ zI|2B=ZbkDS7rXU*{1BtFX!ERLVe`@};d$hE5!H8RV@K@&{TU{?=c?elt^PUlqPI4n z64nNadd2tqI-#Hb>$~jZRZqTg2_GS1pfS(M)43e7e8DV{3IO(Qte^XjE5O3ir#KSc zH+N9-;!CZcm%dicttUYnf0Y08m+d=6rUT6mI+dKKzb~sTUjV_)==c7si_k~AYfkLJ zS(yc;|0VXogMZu(PuC#aBrrB_-?x zDhrOK>@GX6)cfmnH;6W#Spl8BEna=8rx?g8nm?0k=)s{eL}eLHCoxUmVp#_)(QBDR zevooqFcf^As?UxG8X9@+wjL5~ejja&Y*Pd17$?PcUIH<(DIx~qNwZVsVO9YV(1}bj z9`xs^(e3bwwvqvHB~Pic6h*2o+>T$jh%KECQU4pVfs9A zM23`-hEQQSWD?Tpb1}X^dB>EgOGL!ly=>VTwRShV~i)v?}~BF=vbUQH3k7&~$pZx_6SrWudB7 zC2YvkzA^Y^mfs;z>XO{XbD}|r3#4&wJB~Ji)7)157AsggDoe2kKnzGyqw|93^t{M@ z5I!fRt|B zE`l~mhcaWR)-0Ni-FU~akchcJ+EgP_u3kE&Cu-jj)(Zd+V88xMpy4F1o-9esNCkLA zZi(>uZPU+(dSR*~f^xR!=o=N*Wi!=6BgJ8$HGAr0RdXZ6QFD8Os^Zyr-255oyAesY z8rO%KTgUd%GO*Br`~&qDdoU6sD{!Mx9c7Xi+0nnE>GBS`x;5Uv+B$V;|6*hBo(!0D ztLMW99{U$;zN6o>%*)9Dxh7%uC!dzvmp(AlvleGE7}e_?7Ff?6ZLUJ3c}dzdKGV&} z_67g>`LT8U5Ha{U>NDHo881#7Ojtdy3y*|I?bSHStE{tzpFpI;DvLKy1C{7^pHdlM z^c2ko$U6B6IqpQR%Kp+g&*HL?DuRCUJFwz650=9rv#wiYaY4@EA5}X*l0A(GAWC55 z@3N`WQL2fAd7JzC4LoaNj6-58z7Odr5St+HzA@?c4?PkVZ0!Vf&@2KH7-Jsq_($q4Ur|w0c~S#)UmR8`2n`mXU?2xPx$iYw~8#K0p#G}TsurweKo0W3iRB2lj{(1=ka(kd595z+Na@A)FzW%2SXv|sw@3xFU zRXO^{hSb8@BWP*}(y)A(OLW2o-vup8r|uwqrG*^wihCR>}=^vy}j5;ft4}Kan{HcpJ*?vBWAOGX6~$U3^TcuS6qz9E`6 zrqLnR8(B}ky%l6s%bXhBQi9n?ZtrjlRyP2#yV;k&U&EnI{Tl8C4j8JC$G)vJC% zwjGZTiZ{AGzu}<0#*<%Wg#zV3jYccNpqc10f7(Vz0m>|D2(Rc1B-S__{>d78PqeHUgPmpAB)8b>ogWl@Gx-^Ei=9;rJG-F`5#T{JrYNRpPNsm|EaY zoSm9=cN>EA^Y&m!^9F9F`B8Oz82@FKy9JMnA5|N#H)93V(SENDWZZAVX#!_2)8r-5i@{ULt+ zjgeno726_9oE-juQnlo$CTa+B*>IRK`wspsa@&tk+-Ea$s5kaOc&Z~XfyFv021iIEr{BDi2^lx&xZ?be^L+OZ9+efvaB$> zbSsDDR4%pmT)kj3&ka{_bErPqvK40&>d<{V`>5cF3yiEbua?y+yj87($Kh^_wAA>GbhH60!-OUtR3C4Fa=bL+3k z$+hvmE$MZb33)VBKpM5KBtC{uzR{)5pWG{5y4N#=Z*!l$J6)mfLEL+M@{_B~C@~eL z_Bps(R|1!GI_uPq7~-a$kub~Bn*{mC-(m&+Vp=67M2_RD7+1&R3lCnciw9bHtqJL% zGIB)kmG)Bz=r_OuAl@sxDVsUEQBYv{L08CNX)p@BxFy=32LiLmi9%i~J(VBek#gWc zaR7y#EmTi=kKdAgT%+s5v=q=5BpD=qBY8#89{n^+tjrG>cHqJ3x4p|)wF3VobkSa9 z52N#AXrgk(5q+HHbtht2AVL#Ls`JH;IUVQV+V-#RGCK>DK5ve}UZ|`t)~@ZARE&8s z5Z}pXuZ$;Fb{F9IMxD+nq`y#}wlJ^4}2i%iG9(y;7wSn@^&JoAf&>e9dy>fxM} z%#5+uT}du=ESj5fnKeSrFCf>lGfmDB-7H3qOt+Eh;1RuFrrm^GkPD%HxwI7a+RGah z_^U~5y!3yAH;$X<_v=*yWQx3)UN+UQ<+J!8!>Kgy77$>sJDU{3q2FvK~Wg0S4a+%Cu3S9~N(a|HE~> z`u^f&bfjxH8?XaN5e_VD(BHifr^M4>91A{GnNbLAH+;jx$FCY@JIjF8O0e4#c`QL+ zifJAHxV62&m|cY4D%{xgnS)%8amsVJrg_=t?~pPY+OM&K=6LVgT}fCe`}q{#5(Hb` z8b)T0<$A#nLmID{HS46;_$$PDdW|;4XT{NQW*|zrb;T*hM6gv1q$I ztzPmH3ssrad$-%M(o*(ld||1jp|c1ETj*;&=$m?DKHt>WsW3VYKT+PI@6~s$pG!Qq zU+d{ppai@ksZGQ{`=Jsrl-`(A=x!DjrAw#zYty9>tVP*5_j@x(|EkZ_&&&O7w1@Y& zyCHM{NH&peq1k_q(W*kUr6<|c#QnrR9hq zibd69wbR?ji>90o+oU)res>lm?3&W5?7f>N8OuP#qb>XW%CUbXm`|oFNDo=}no6&F z8Pc&VHAPQYOStCP5T_2*iaM=ZFeKuuOB=Oy0_ivX|E~lFrpoJ zd<#D@|2)7r=v{$_sWZDJ8NbfwkUst$Mwzx|jQ*}eKUw{;0NT*4p0(gq_IX{TcB}ZO z4dAOvo>_H}S*~UmDvCGmDzDDHGh=#&J$>s6&vYJXvr8+jFqDj zhInH#>K~^wNo&(%0CXjcxnaLt3=OeMc{>-{`3qo#)m7^m{pusvf3-Y3SH2qTj|C5X ze;ukk^;Xc}1TzbwUTuf#NYJu4S!3caB)4@wq_nQ+fgOsH;^3}6c8C(~8fozbYrX}U zg@%5j!?jPh4zUcG4}b}a#&J*Yok96Ly#zE9J7h%I!n(kiS6kc0={GgEr=!f|fX>Ag#z_^Cuqe^SyC7g*4Nes~Jkj>~Izt7MGOIXW-?~Bhzza zV$}Xh=FKFONyiZ=sr<>Ba*EL&00FDJrYN)v{lYc(kVA~;Y%a8O6QcD99$unw7dq-) zr=Jt5xQ!JZ#|G{TRyY>5xLN|-t$GV~yQ13x)^CU-roW4Kb0U6Jk(bBO280e1mQxRC zgyLS(p014;ay_nQy6k#E_n=kPdq1~jv$1B&YcBkoePpI*1~s(8q0E!84zV?rX!N83 z2osbsYFHx40uc-ZMXkPrtLGEWHofmr{?fg!Wb&jvt>DX1>oSg*gMLSucFOb z&9mnAp!J)q@L28Y)xNr$0C0qpv{w}!M90Rd^n#^EO6>;0kMFg~TEHfMxk5d&sXnpu zK7Mu8BLaJJTg~SHX7s_Fw`Eiill@0bm&fypNw&mlyCnLmi%!=OH z#ume2Kex{vTqyN@X?Nfyn^JLho|ppE9oTUS4cJk#93iTkhGHB7TyXlD%!t@YksF07 z1~kKq5u=BkeaLw%Rr9216Yces#ZY$-`lncCF>sLj1l|v2`!kOAkt2lCB>S>mx7Y^Kl*B(21g)l_! zD@Ha4&#i|o3=XH9$4=#JQUoY2vl|`aU%W~nt2u(iuPhfO!Nleinonz|Q#1EP_`i-P zH=zG=z39&7CS3h4U}=0Lp~-KxI-Qd|zeRb+e6l_{(`G5Z{5D(UWP3sF!+)?t%^}i-O5`4_gJGawbT7;nA9{m5oE(# zJ?y5K0#WmpAt4MrSpUUV{S;^WHzQ?3V6#12_1B7&`(%1&=q=>}3GIye$EyROVZwAf zBjsgFwawN?uSxtuI$I~3nL5f#s@~+;p3FCWd0wrxnAKPR4*8b;uy`Uiw9NI#1Ah5m z(1bqV9IJWpMg@SAgg{5L!(N-13Na?bzRcla+>N1gN5!z49(Mhdkt*R(aKTynWd06! z+8HhOE<($_9+V5P3Fvcm0ys;_=EE_w07HPOph@8$_P-6p<9dLZnmM!SP*sCl?NjL2 z>5kDtZCJSM^J1m;nO!`2c@D$b^vSc~aJgVb4Y52)T{ZR?D>o&ynV+fJa-3>xJqb`p zwu24E80Eu%0r$m(%xdV9qKASTt^oibXKuChp?9uS-PQhS5jA}tvD=i81aWFa`G`1OCNu zuQTsS`&F;i7R+#$Al?DUk3Eg|AO(aKejl1u5Mrf(adlvH(H|~Xtl)v%& zqWTj?ms+l$GNf)0!YFEAs>*D}F5S6i|61Wai`fNG=+~&$PUOyb`=T3w6-w-jI(>!=_wWsmj)9O= z{a0nI3g1H${C3nlLg26kF})nk?s|2?%A%bmFFN5T?{9AYH4zsO=8P-!pKFI!y;5VY z_S~REP~!#osxU^%RYgB1b`z{lmkIzCa)!k~<7jK|8Uw;H^13)$d?jB^mPt5Sp zBb$kToDZ~TYJ>I6tISL4c3fW81KA~3gpQa{;Cpr!hi&6ex0ZMpLB|$;Ewur&A^poH zVw=B2?sBjQ@sM{C)gFn4Tf-_f)K1;XIjMex0q|)x-tRl{X0tO^9)xT-P|2A3y7eUML z|HphKaqQHY&IBDEkNINgvdx3-6TovryfWkP z#GC!8l)?!2Uid|)i!pjU-Nr6(>0fRBcUIQLGGszOhn~%f^8R65a@9w$@5i%LnXE$| zq-?JjU(zhwHs3AZUxitB(wD=GZ4UN!!1WKEgNvm)62CO~p4M<1NxxoV&Ufg&w0E9` z$-y!cZq{I$mDiydt@-Euve$z=X0(wM+Wq^r==?1_yhULwLpG5IpOKZRwPCUK;9#=5cn)6KMAQljOJSc;ea77rzEm@V$01ciOv z>%O!TEZ%QL_YcBR+go8BMn8|F!H0Fq-1B{ekrCUG&%Xxw{Gn8#IzNMdq}0peqdh(E zlJ)&FWOyYB0t1>t953OHE47IQa`#SCMP$+K-TdyLYt^NVKlNpx3N%<`vt z36Nz4gh88nvvc4FpUR5dN#=Vo!W3YMu+qU6T@7BWQUsY~?8G2d{8~h|sUHir`rP1e zPt@~zN}7>#}>R`c|zJOD(A ziwgfSNP_y&pK84($&6yV`{s@q`x}~Ef8+kYlD@v03l;W;U-r8G^jAKw#l~%!dx!(E z9OC=y%${!bD$AX1wTzrG^vOHVe^)-B9yj1!V5b!`JzXe~ z?O%t!Sg2T&$mIa8wiENb)$AH1!&#_DL*^#Kq3Q=$=zVfe89v7 z_$eg@&pt``%flw`VR3V*YHQmF^e-6MIvs1!3&sl`mqO`%Wbtx^C$!5}q>zt1dNPqX zzc9~M5BUuQ1EPeyf2=J0eCwkUL9I&u<7nS9*e@j4fm;g8GPuHP!o^l;uerX*@%@#Q zh}UmfzdwWOfQ$!IL~WW6c}4sre!mVH)}MJy*wZZ{_p5Pl+GO>#pm$7`Q(Gg!}*u zTrE%KQ1E)6yA$ee{?LGODZ@A+dcwye$8yXU>OT}tmQj=u^Ts{$C*P&u`cG9HirnY8 zgPkDfjbFdcq(>W!3&^o^A9z`(Td(H^C1uRbhN9KY$>f8}3F{Kg6s{S(q82~tNc?(O zw{I{wn-wo@SaDr48c{2Y_gQoMJ}?KYU1FaYMnj${Ttn8|4D?ND<&km%TFz znv*OS_5fMN)zkio<&IY6UA`Yddj2wLam9BxVh-)?f;1Z_<$Kogb(ROz^~~nzR$V1J zSIjDiW-a-NA@ZEW(I6ioX6VIU34sXByp0&T(iUq1Kk5G*W#Q}x+CVia&(K4ZfpHDA(G{HW5FYR>Rd~8qerr}UpAbxTJ3`QhL_lu6iD>?%3~(_LoBYD|`&Sev=pP zhBxraOLMDsd4Mv2%UV>*O3+?Wsm6KW}e zN;`!lq|j^OXL~-i3IU1_Hu~<>loB>7H$6KwozslFVl|5f+yE*U!>e#YvYZY8hvUhCAovHigebLBla_M&8lU z(M%UGSOgrd(ysaTC+&S7J_Y~ve~)5KF1*72Psddf0&H`@?A#6sy8miq;!F3x4>aL^ z0sY_kVFz4af`C@+e-?+1`Z_FYw6q5fu>$$Sm@1 zTRevb>2V`$`;93hNuYDfmh&|3dFRgV?6oT$#u@ zXb}0bX-V&M8Xw{Tbb)=sNFN!4f^m$aW1p0+xd9+sAOCIYZ^k;5$wvU_2 zq^>4O(lLvl5mypP;&AOGM$>64Fik0gv<~Daqk2iAW1$rvwZ|UGg(}x?bn_b=lK`8; zqobnkepw%DBLrk_njw|6qGV_P^TdkZz=2wY9s7JmlU~VVwoUnCb)B+@qdvwQs|s6f zbIHML^pwX}r$G?B_tT5fwJAp&wG^W4CB@%T7x;hH%vM2lo<&|Vi$c~yUZ;jLs z7hj$A#V~vjC=3_z0HXi;Efy`4L;KQ)vngulERXec-|`98P1pSEc8Mcw8;3pplrYzc zZ^eunNM>S+@9b-AA64%F7FO4EAMc#wdqV58M}T>4@SlP)dHdXtuu#yC{_GK4H=B_{ zN`6Prr5%|X6Ua{@c)$%tT;Aw6hrWo~^aEwJc}fBHR+^AF^>We+h!O7o<@KE}GpZo} zLD+kU)Ki5c-iHs1IGjYR$qv+5yE;4{haBz4y}}ZWmQS9LaAyn!aP#+vR1(YPCLo^# zl0_FD#Gv5xzAulX|3DL8pZsEy!nIiyVW!sNTMq3$O2onkB~YgS_zK|QjK7;FiZBWI zY}R}vxJ9E@;`m&>kK~I5zZG1dYgm8#YO`vyD5lmMo?#XQMR*-9Ngc$ou~C`Nq2k@-0tY7~VsA`&a)eP1H*?iWy;?sQl#Bp?^jHjkeq)JdiPo7R z$eEW{lw1BDd)6gEs@m6wQ+};#DWshO*q_9I1HYj2Q$NC2Kh_XOjEF@b*!_>AAH}k~v;EF$#94Z;wQ1_39fc2Tf@G^n0k}35L!`mOZvJyT2GDPdsx^ zb%Uf1@Q3{mfjul0{l(ICY9WBX9*{1g-$yJ8AJdqbobj^K)&!O25@x%CG8T=rWh zFEw^03IaJ(ZD>x?%COb`J_W&DzjYn@iRicP9R4w**S*M@*iRRmI3bnKkmw&y_I0cX z$`D-;n2u43@tGXv%J&w(gOn^i_Nu5 z+K7}AD`p5+gGyaC$yq$=*f@?(6!yNOv zN7N61A|!Zbzvz~e8SJVEXqhgrXXhTxefX>{WE7}zBN%TllJtoVRCko)?DuOF?y{B|d4ey23^eg4h^ z1$MvwB+GA|61?LT4VE{WTU&vZjU{Sy_Qxw1Km`*4EBsKU20+F|Sa!c(! z{{~`mQ*=7>>3y%yvQC=x%qfnWXta<*l+uOeOV{xeCjMt2I0+CYWYvw_hh6pl#E}O~ z0+#omI?noKqNgCbR@dmoMLRq=6KM%7nwlVpHX~IJkhZ$PQq!L{fQl;S1)I;tl1uYd znKz0{@Y+2K1W>Bl*Q;4SZX*{GXk5!0t?w~am}CKpS-Cd=IOw}rAt~g@@>qUz=&;;e_E07 z@F+UK2Z)j|xY-1ifX^R$f;*O?;(YJU-cXQ)Rq!EHli+*JIAdW-?~Yz5(iFsJGd>in z-;wNSaizwk)7JX(%cc2Qp0-=-MI6dZYVt1<9rZrKSGRG9v~Yuc2_T=(sJI@aQdsC8 z%KpZ(SQj%oq`27C;SL7kWOMBam0$S0^M$jNiRe-VQtVvt-{C&>yg(cvBD=A({7DYu zSWG|tRg!8oMD})jtW>=!2lSKD%E4(&_SR&8O7e0ega#jcu#|AOfgShKy{aGqB7K}+ zUIDGFi!4>FbbYh0m5l!OD}-aSkFk>wYCxp~J%_JVA=>S8{BckEjih?n3@wfK!j{aR zV{X0M=Mns?aEwhLiec1*+|kMKwKN5zCO3bZ>=sQ;Oz&SG=;-!*&u#k?2A?P6XFuej5?Z}3j}_p0_k*om4x?UTd~B$BztkB|W&3&JkMB!ceg z3-mW*fjaG|ro$wMF-ZRDx%sDrVE6}@#S+Lh{o{<3j4LH$S%KnTa-Sy_T4|aU6(b#O zGk+e-fs&8{Y|?(()GtM8El!i7+vveG{0zA2qzXs&AkZ?3m^^}9IAJxht>8jw5D)(6 zMc&erBHRGZDMaJar^#2BQzzU*@i-pKO@j(WlX|}Z4^npVi}8J0SS)*tpL=#XTwOTb0x=dmD`{SV1Dq%I2ti-80M1=rD%c~Q~d-pcX*4rz`M>mC*A zXY-rAQMT}trdK&K*}TK0(;!Qt#Bg~1!J`<6?mgK`VP;Q) ztfoBYd+`1pYo@nUL^7}kV!)ZrsF;`pag%iShQEYG;eUi01atD{k~Uv;g)sz=WXFHo3>@|gd3L$%?9}V!_ zZy5bTlwzyMa~)oOKil)QiOzk^Hpz1O0K0iQE62J%05Nm{cF0U)HY3f~mRVn!IiLc~0EJ>N~jav@0` zOmr;vJMZpos>-Z*|KrE$WYYaS2A@-{i%zq1wxs2KOL)l+0D3?-cG*~<$$`I8!D5P) zf)^Th=pMS(cr%|+V4wHze0h{pkrG(LU!&SU$TaUKamR*9dn>i3=HuU?f(1lgi(Jm- zW-QshwQ_k8xM&lWmkzE+<>P?gzbkv&B}%t&K|y%GyO4`CEnl41kC^F|i&HNhNWbp| zd*4e9!fb`+vrC!a-d9|4<&UHPTCC6p;_(jRUTF8H430(_Df3W^mW5*rLl^mOL9XT2! z&doSazjK~9P7^pes-`LEh=aK2iwHP)^8yHwU@vRQz;ZX_ocETZ2(jcdweC!>HaM(h zLS%c|eg6zrBWVE$4ni;xipEH63;1E9@9+WFRDGHV|2(7pnJ17XUE#jV-b&aMp=spJM`efCroAj8xxeRYFOv}VAN?S5|h&Xdi)cSF0z|r4SJ)k?@C2P8DfNPJU82E50J8ImxkDU>9|pwQ2eRef-nWv}Gs- z#Ml92BFeu70<7^kk^oc1jT0a?Dx&=il)9ef!Q&9Se|$GXaP&7z-o04+SU}jDpY!+0 z4<;#4o9FE%;(Vx`sh+SE{A=&J5nV&K=l!mLaBOAlPngIpdlz5Mwm1mHc3fJ^3kHTN zTRrmhE^{g^X1I()r`v_Zi&lWRl!pGazH4o$M^|6$@TruVS(#=WS?LcUbg%`f-NDrK{)Aav^Rm@#&gRtR42d zOxLTf-JnI)j<)S>#Q0$gwG@jxj#L%d`5!&Eh39`OPKckQ2{EHQ)xyc&R3OPdK}0P+ znAjzkyh4PIcfKS2=T!Rn>CZYJbxQdRgx@gIUDga%2x@*m|wN(#S|xb2|$ z1A+5CVK&%Uff{OpgUn=8VY6s2vrFnDw+Kf=I>8Dm?^S}ZSGjsbnITr3zSlJMpv(^v zV2;(pvyw1QI@PXmAE@_E{&;nXd|t5pQzXWvAs%};SN2k5w&RNe_k)5@1SGWAu9(lb zJfK~&^A;ctfzz-}UK1(a|7a=FI6-~##AP8d&2vcg*t^4>BMi@C>bj1T{ov9wns5I@ zJi>QM-(#$pA3F8m| zAt+yt`891GucBrkSjXYDZbmBU%iq7Dz984NMvEZlWE)||4~h`KB*#Yu%A`Z|%SL3k z)OD(VDfer;E8#oXAUc>uE)KF`MrU=wMPO+22z%2U(#a#6M51 z!}*@UJN74q3gW~Krsf^c3o$UfnmOY?rMSbseAr&<#wy4!WxZ>04TPlkmN47xZvo~K zWQp*R6Yrofl}quVSRIqjh{+DVkfPb(|4hNJ`eydyuf~%h#lX>$vm&uuajrPc!9F0@ zd8yhuNe~VlqZX#v$Z9Qy)9bPX{bGD5BA{p^plB2(dJ+Y_>&)mFX-L1npMR0@7Uz9?$~a&gI{*6V2NZ1Sr22nmDIG!`lubseT~TSbDpwUJiN4;eKY;0Wm`xr|4;q z$rTpLI}hc80G9k#q6LhxLE9h%cKu!l7M#)Xcays|f~ruPNkB@CMg@1~4p7kU_xt3dXm$LVI(J$naFQA0I zwTxC{{oWU=hrNB*<<}yti&xb%kdNJLaQDO`+;Z;=uU&}WV4mNAH6?+n_CR;z9@A!u zZ;5pLuL3+CN_@kD(S<&jEr75)RqL#1SN$%Npsx!d1m%AHB0#%LMdbWVc4)gQy`tvnVw_;wdSJa1rgKmW>tnC=brcm4EQFQD5_SN-V?RC-=c z^<6cIS8l$#66xxu-zgwoMuS#YSK~;807ltl9gQV-eQXHBsg$A9$(RVLL!__d3!O7h z-x>RbDbTP6>!UsRKH&b@mplpNf43prp)l4m)JzL&WGq=Y5EAec$;L`2oRZ8I6r8GB z?UZW{*y7veP&|vIdOz9 z7q01|V7G~Hp(<{0y2~CjC*w|-_HT4a*T)k(*W?(xx^Dc&OTQTR`J-arM;~!E_3FjODY=cqM|GW`&YDR%$MN(+O4^6bz;I;fXU|jw?dO?-l zrzctb(w9njnf1c1+sxszHnxW$RGf{VeJ@?qVTQUn%HZY{p-!d?J?T5jX~yVScI!Y? zV%`nVuydPvvgb|Lma7&w1ML6A+*#-Rvf;ma!KD`*?BjLSMYifa(7?En?3r-2f@qGO zot^!$Fn4g>vsz|lTZwh@AOIZm`aU`1fo4si(s;2Br%6_pI$5D^rK}LtoP{^5#4h%w zUX>K|$rFWqg}%CvpTz?72~&6eol&RLR5KrAUzP0)hs)J&HP@m~lfwesn?0C)NeH2hz;xuJqJp*}j#{D~BORJoz;13cbW)+{?DIyO79Z`;uLUuR4o}zA5gN zBIaVzXt-X}1!i^J}Qca}{x6S)i+sg(822^$=hp zySXpg6k~dtZ%}>}mSehA`;*VlFeeK~5wPakg_mIs4Gjt-vX98fdTRI=!daARibwhr zt}EmDG^Z;$QnMByNI_Bb6#yaY4%v^oX25hIw20ABtesE*lJvxwCQz2dFjMTLtpF8Oh zmv3~tfX0hmZH}CZn)O~z#}IFsizymU-_P-~97jfSt*s0ocR2Oyl-9lLhF0)Y!Q>0y)dn~Ad&|>jEM~O2&dbl-TsW>{IV>%Dn<6r1*#-M6MZkDZ%F!;2I zVX#;y^97CVwT+%rq;OxIhnhaWjrGuS78Is@H3@e}dva$suu{?n6wciJha;AwDm z?}iRtFeRBhH%h<13aF!dJ4T-X&c^$%wRf<+Z<=e{Jsc5fa#ZVr!Tt%N^)AsEPxm(y z#mT!y6nOLK3H;UjXPDO-#kxjvKl@WeHB-FyOuG8Iq9wl)hb4JRCgC|ZqgSrgHME%# zjhJjgmLMfoQ5}7c3$Vpl*|)2W(wwywm7JcCz7?1lxxweMgtYhx%uiFCFIShY^x4R3a`8Sw?K+ z=gZ|Zx5mod+tA70U1v7btFijzobSZrO=%Oamfnv9{`KK51#biv{%Lv7JDgojeQ(9_ zVm(M~Urf;q)1xPXOEnMp?qRz0nxnsbk##sOX=U?Fxe>XHy1ItnM6+=;cKTt4ef!{ zO)ic;Jml&zm^dsSXntWeUd)ZWQLXQF))P5A4$4MaSM@-5PN}Q zGvZf$O)hFfG#8V8dq(=yoO5+fJk;!>|00iE=N8^Y_h|6{RUTJ4Hl>;=*cSJK09C#U6w*b@d6BMR(i7^-0HD@Qp5b&CtrGZ5)ZF#_$Ns{T`5OCjPwS5U z(X-8<52OF**Lq7lmNdQw;S&lG~8)LdZ%)w=|>itg}T&Y z4y)u#>qvBf_a$oKL+`>Y-x`OsVB zz`Vx&hM|>|xk>Xd&Z|G8mrM98-Ks@KMkZQ+V@VE9T)oXhcUA2zVm&_B|6?s}$89id zrIq>V{eRDLRlc2uNabe4Oh9H?`x5xVzkKm06jzaZYSs1gSpfA*mwEegz*>%q0gKL1 zyAzUVU5iu1hJ=osXudhKO-3%vR9i8;4iy;<`QEs1&G7M`u&ogv$cu#nFj-HiJoFH^mih&dWfC8h3y66XF34Fyxl|7=uT9xst2KKyz8JB5 zLvSWSjm-T`Ih5n#LP^E>@gvP6PQ51eal``P1R~kGRi!r@XrP^vWtL+UQ)MQJgzPtq-4zNww$i;A%VNTu#3}8G58^tGQw=5s)(cg72?-JgYwN4>03OX(%9&kq z<68IN9(Y-PdDM3WS<}%p&o@!H>w=7U%r+k9Je0X??;=sa#9JXPld|F;*=?nl>*eV_ z6LL34HkhK*_ZmIvz(~>X!T~*C(p#_EbEonf~-r+t8@hKe)_r%~H#3x@())%7#3WU8joi z_$sYQcR*9fkwL-6M7oOPl%OiaFI3JE!x?;Iv*4QHm7g1yJugAU<(K3L{GarT-ur!=t3CN zv^+f{;*DTPthQOuzwj*2CoY+|P;`P$SJ`TAaBRk`6024544 zc7}{5UoEjXY%WTsj9AY!y{3WflDp$HQx-S&#)u7umus&}Dk|5!9{W%*F==s~&7je^ z`F+7wuSe0{Jdl9BJT0w`3`|lv`z2)ltv^SG+d8b{=Tqj;n+>r63m(R?@H)v6lL97* zrnt+PjeXvar|x1ESKkux>fBJWdMUNATEfQuu~>tb;+I>9HP4ZG3NoIk${oJWf&Ch$ zv`FWN$p=1z^|OBtc!EM|Ikl?`X>LBq`k`*8!_Mpulrd)e^LHnJr4 zW-i1~fgG7|`gJ0VC>2kWB<1n+DrRVjHXSaWFz9+hBxKT$l{%VM&%*1hR_|6W$IV?ox)cN`}CO)*W zEm|(tOVp+5rB2iEIHyLVn^Uw#k#={ci&#lzT5`p1`>2XotiEWy;)thnL8Sd6mZx>{ zCw8rL$!gR<_n4KxYflG>b}klii{FFYW|CEO=H-O=F{79iiE-9LCSm#6mq?9o}^9*5;Wq?vsMVDNOdQh~+w|71B75WD;PolQPx~9k>(9_?F;tb~fZF14DwE^4h+CVmk3a_(v z^(%PU!=b~6(9yGnn~U#yvX^z2Q_bfNRn(FNp*i#{{BlQ*jy92a{0FRL9!Z<#|q zsgbHf;b-CfWR0-2ark&5i!v9Ac58JIdNNH3>0XgKUG9o3ab)wX zWA&`_nW)3~g{DHNtzK5Dy|49rgG>yE&SyF91($uui|u2}MR!bXPEV$bc**A+|Ndkp zx;nQLA<9e7n}l1}*39BX>D=YwFvKqr5f{ag36t)%lAahjNs{zhGYYFHe*W*WS7xl+jo-JD}k!GAnr5+iS8N4+#(Zsr18 z&Ldm3Dxa@++NJ|4ki`JlSPBok$+D3Ivuvx7qw)G)0a=j69G&5t%=)>knu*uS$WnRw zC7BAz0HNOFTJvMDL+5WCMow|fCvhivYsRzuA4j=ZSmL2aJva55{Q@_4$$^Ltwws3D zb!b{j=&|1D*(`vRg<6^U#5|10tSOTHgSO6}D!k@bmB z=jK#@vT&!fW@wDN*BSTLWYZBC#QR;y{E;)z$<+PH2dzy7TGsR4JL^TmS&nk#BCe@LoDCjrFLcV5zBsBx z>Uh}&DpUNT!Mo^v=4`<>0O6zeeg4F7`?B?r+=cuNPhdqpGRC%=#@aQsaOh0vdQ z`M(S|LZs09MsIVZ=bK2-D&E)CNzkLiqo8^(b2+M8fHYlg#a2CQ7k#yO$yN}B9z1%g zjeyP7oeURhy(70D4Uf(qsyh5F2cNE+n=lZb9)BMqXC)06*?wBz9~-Y6K4vvBwdQuZ z#nNSfIcGzi?OW>a98p?+*)JRB62?Y@ND0oihx+_`Swe+0#uGNS&F$GY99j-r*VcCs zT)v(mgk|?jlJAC_c$|O6PjnvD0;+)73gd)`Z4>A$Xf2#!kE|z5J{V3^npt2CCZb4G zjtyGV6mJ&YcKa9nTdK1b@?u$Hfm0RVy5^+W(pUOb{`sv>dTasKZMM2!@SIkqoQcEh z0!2Fo(%OIkgd?SKJLOgZ(?bOX1*FFX%u(RF*Zp+2(%19)^2FxT*2GS}bZmw)0*)vw z9G$qZvm7smU!7O&tZj%lRxUfTl?0vDKX^JKZ!z`RCz9WeJZq@f$$Q(I z)3|t(%iw_|%-I*~1ufQ`6py4#`gqvE-EWb4rlr%` zUL?W54XfKhAW=k^iq&jU8zg>pVQ_RFIiM(+;eQk)3@OTe4%BzQ9dxdh*|>5xYIu}_oub~`7$UIxKj1+ zpL8Tz|LQ780`%Wl;Qx>A%Lsi1GC05qvj6;s_*7Z!O;PvL?tETKseH@-V4rPPq`FoR7{~(^_$_eKQC$Z z_}$N*Xo>)}TAxhS*#u-N8q+xG-AS{Xu+_4PF{`K|itL}7OLtz+1AsymWo zXGVaMN5(7JMNN=*lKETCA7*U0(1XE=)e3s0)inZxHqCYG>>ppimEjDz$q(lSwlK!y znnbIS7Ug$t7nI~D1!1aYp+3ufQ6X8(^}?&8MWZ$Ez3Yxhhk=EZu>09w&zP8)qO;+D zS>!i}!V-38Yjv(FtR`q++ushktop0f6N~iA)iCJMkEBgDQU2iVHyZN8hBH;kfXRkO z0x(rmgs_^jNn0$91#g6!!Kv>X*|2CmBYvk+~wvkK56$_ z@QlKbF*!%=I`2G)ni|bX#N7L(4i)ovEM3&XJp|pG9wDa~oTqkxk{0$5PsVuj-z{s| zMm9!S9pjM6hnrOf)D%COQA<29%vxa8>&J&%d~yB#^U`OIZEZ|YxS;LuBf=I;+0Cs^ z_PDO)3aXVw6xLvhe^98YVCwyJj!{8zXxVU!=k0Nc5&Xe5gfsV zN|FuU4uU(qAEiMxxu1^jfj*zqfy?HSY8E^@c!z6J(=tc;TlCbopW4^CpV2tB=)c^` zM3Ick4B7e{hTGlUE&3M`|q-w_5U2ny<_cY?qzwnZG z*0Y&z(4*m|7HF>B5z32&b2>+dWDkrEEg3CbNz^%S(QPE#Telh2c@sO#AVPpNgy2q; zk&^o?)5Qhs%efQf)$hs;#pW-z5gdWL8%IY+tFzo81;dBP*lUxUzs*59oPpDT;6 zuo_9HFBu=Q(5XgNWPEe3TVtD;UU1%<9QV6ZOV|gGk(sP8NvyCO8f}2~{OBMe3NoJ9 zn;RY$*-N6OmZ@~!AqMb>TJPB)OsC1RahJ!p%nS3RFH!!bc7pLpQ_nW<$I-AnSb6(n z_=g3}*x%zw;Y^*4Q}w}I-;JHkPHsA1+fd{nOFz_LjJ(h9mY$~SKP;iWfq z*5sH{0emJ1$_xN_t-DHg^QC%L04Gw+6^u8{rUCgYnZ!LyZ$@J{)BY+LZE^-8%q<}sRVBYb>`CpB(J*%9BNU%ghsZ~Q_mbt{~*z$`*>C-0l}#}*}o)hkxp zWKowkI=qNs<|vLFBy8d^x_s`aq*L^%u!PRpCIqASk9dX{!mV6@XphS z#GO!VNjnUml-sX7A*G0&EF-VYZWNq|<{-0~xUH6kTAlTZd|YsC%?;O?P%9;j<%_!* zavo2I8Bx;JMMr-_ifkQ01{doGY+ieo&(5I`S>_tWTC|Rs>bSMk5p%Rlwdh>G6Xvc` zM?%#Dr1|z(W02PR+Rpo#)Q~XFSv_NTqQXXG6`7t{U&6N6^MxijU%?kyaOAvKG75n% z1yfdQG}vAknVh0b6Kxu_M!x*8s2oY{^msA{shx3Jb#_Wf7ACUM85-Eq#VEuM+#T`S znLt1`Cakn}tk^$Rw9x1P)lc7<%uJfk%e5}+j(CxA>R7}|vXpcFoGh^j^7KYHugT14 ziH3SMR&m=*^d&rc?{@vsNe}TC+RP>=S*RjL7Ti1&x&zIbiQM~oT+Xi7)GjtZw!2R% znqomY?isenP#}Fx#j4rGw^EWr`QB+cQSn~uGfl>cSaVb zGi4a-S#EkKWI)3j;XgP~Wk14KFUrT;lkKrkGt!_rW|YnG8f-;$mqNZ_EgQWxo1_Z} z3deR+Wd+Ymph#>PYNGbFj&SpXX~x8Oo5_OFAU#|ACh^UU$y}QbYZdmy`X? z?X3;Y?Xi66a~cu-I3n#eUUvoOM)&ITkt~&ge!db{=PUemY1`OYyD=EFj+a?!R2|37 za5CTIo%?bD%cZ8*{yj<$^TngZ49+e|9CT+A(=0RNIU}H>6)=_69qH6%stS(e_!=Zb=ibAXgSBvq4 z8mz%0EO(T=8dddOP0}0VQ=4MOvv-FYBXym-w)m({j*b-}-9Mt&d|Sn7yypFp6S~kC zFzb51f#HtSj)>)_@~NcN`+}<=!Tp~rFRNyfom{z+K8homOFFh%be#SEECrR>?0&peTK30JU}{Q`?>pry>yjk=GRnE&eLeuh!zHn?6LCQ?4tm8&CW zX+j5jh}cwJ++&dsGHn#yus@38d@FpZ?N1}tsf>{H_cxlWtBCF46zaoe3>Jmw#40w6 zEis@j%dO?p_p4|8T+LEMTB;HW*oh8)85tRuUrhb+5CeaAOBis*#CIf;REYQt4iv(X zJzA(t=bd#Z1-PimW&X`@f!v0|=UFpT{mMS8&GcvH?xdL^O`DHMy{fC4C+t=o%k>%# zwr3tM&GskPuf}EEj~}ltsFW>#5f(X}EV9D+#loaOj(S8PapuRSR$>i;_*%e&Y)0{<*<9uDk99>V9qk#s?tDzjfTdK zs0dAqW$)*pX~D`pJ8ZF`zi6FjRR!1l(jE`YRe9!I4ZK7!WxvkfYC0{#Ix-OS)6_(zaREHSdD8mxC#*TCE$I(Efo+|o%^ z&*AJYy5{%!F*?&5b9TpKrtX`l{$>>{Zfd}Z%f`0;qHy3ROmW?_zSqBf+CL#-rBh}j z$y^9mNJg)TbRIKF^>w_Hnm?4oz;wL^1+=N2Sy4xszO|{z@7asl;mCi)Dr`|BGT(cK zrd6(;u5*caF~?$?0INQ(?Wx8LDt?deg5ym# zv3bRCK2!Hbw_`0+YMyGu%~f3B>D_c$=3Y1?2JVlUhT>6AD#{wz{m?r#7|>xf()XTF zMxgJ2&pAbJjAvk3=)qQeS~?c$8@-tk=d(m{QF^iz$1hZ#tG`p=K+*1bw+$oM*;fl_ zb9TpB#PGv%PAU$D0C2HL(M591^zf%fuSOAfYoSgjyPdM2UB$|%A5Hs6e!cCF&F@Tx z(eO8|p2>Fgy`{geuO(+9_K4Q|b#%Qvco%qi8k+a=9g(GO`4+MJp2xMxeDj#UPdIFs zX+M^bqnfNv6tqvQgskdIMlV>=Rg5J`&)fHy3;(dWZhw2Us|e|uV74BQ-2M)vnbehe zm!{|(%kq8)q^zoVoV}wwa6;-j`_1g7Hy#aja9b1D*9u-tM2_%U@lBJs9?2PWlIPs3 z&Pa7KKEZY@qb5w{1;vY+`5yD78Ah@)5c2-Iu-hi%^AOz_HDX*yBCra>Aa0tBak`g^ zBiFyP^?4|9OHKqKlp};8^(|uA8R{n|DIQ))_e4@-lU#crK#k%4NJM<9-296bCq)dk z*_RTOviNvNXCj|baf5~OxHDreUOI(?mw>ZBxXQK>LvJzEkf$d*kWeDEfS&FdsQNry z2TnA((s|cwwrL^$)t^e+f35N`(nj8;WJ|(sSTS>f8+Glgg`g0l9YoasNk<^~Ay-qO z#Ze-pH5RHjkn)BT$1SFb@K4h1o6nh-V! z+NZ;;44CzhaW{wea0q?4Jl?kaU*w(VS5sTp=v6o%da$8#C;^eG2q;xT6_n6H5Rk6Y zO9E1Ylu!gg0YSQe^s1Cd3pJpkQbKQmgbmhPySSDy3X-pa zDRWT#h6?dkTe_pQ>x(Nc^{iZD^_bz*i8~~X_UzPR1}!A_iz%NTMf#>dBMF6J6L-l) z-g!E7S$;f-I-|i2!~dT2*O^UuzNX!#OmL^mQ@%ePs`q23;TigIo@V%GwSC$5m#XPM z8TG+OoIgnc2*;jGIKufv1!=y(z_DAdIDFA{*nGs7Xot+4EA!0&>U>v(rMHJv=@2=a zXS~Dxm6*l4=Sg~jB)c8krivhW@9ZGhSQKmx{7EHyR46ET?-h$sAyjbT{VyIb8_A! zE&FMGjm%!7P0(;phkbL_N5H4($`p!K{N~Qyk?}>^9&C2?)??SPuKRd-ulGyNF^^Ht z-jahzFzPEDTqYKq`*7ia*(}EmtZk9v$DMvqu^I)teeYTA`Z!r>IIJ)$S_Mrxga7FR zTHM^j)uy!TmAqaEuxP$loY_~xrg1KTUvHsIyuf_^aXu)9nDM370J#RX-*#*%&=Zcb zS*pgA7eKOuM&TBqCn$BKsPu?p%~2rjt>4`D1W4z_s3pY+U8im=%1)#Gg>}@$8a=1J zy0k24_z1G6YIYP$tSNd}+5DTEtyHcGzeMB>&}fw$uH*23@nfr1hAvKSxw}xCfXZ5e zBlDV8<)T1$I(b3@Gp-%Q*-m-vI5iOm?cOsj?wPmBf=mi@OVkU!e*;zqG-^6DSgAnF z70*{FClt3*;@d_A&L3zq*?G+00MhaG`mjbkI4F02B*?Z?3XffpC*pkRjpnQT+*#53 zxW=++>V%^LhmWd9vj^>062~TWw*MwzsKWR9qH-qAwc}w8k8$szkb1TQ@qGGFOuv#= z97k}e&+5n+_TW#sj(t97Bg<1o&YNystYW^?4wzIZHSsxXw9M(ji&-iS)KdyxV;^mE zRwY-~!&gq2wD09fZ84oE zFRy~oMFl1E8KL}MTQ^t}&C1O^AiNN+tkMGJHowCzYCO}8JsjuDMZsRq(+{k#&L7kY zgbpQ`>E&jrF|&n5t(!0>&pk1{=G;X)-Nbh)aR1vi92D_5zfVI7zlW9Impm?YEWugwMIxRfCL1Nh*6*8tMIa z2g>Q4d*F%MS5QFzCgfk_Cfb>CS<%YGk~Es9@)mt~zZdr!TJw2vQ3 z_#}ZojAPj+O&q)pR2W=$@BGDZb6!W`?W01pi^wOERr{|_YFW;PRgK38*I(imMy+j} z1IRS!g2hkuUdx6ao58#S0=t;`Q{LfqbA?O%1+9c?YTbFLa1(K$tyv*bUm527176HO zE8{sz8*i>}aaq0=d`2uRN8N%M|;f8DYBJKwI`U!M% z&pdEv#TAc^TzC4QIJsJ8`rcFFA?JYWLa2>(9@!Rhf%t;rUmRX&FtV`td_J433r7k?XR z8_Yd|c+JD?Q(Kb+Q-EhmlLFtl)PuiS>DarJL@O5y`Zs0RRip-a4W0Xxr+)6!cogZ5 z=FW_9NiPa?fpbcuyJOL7u+6O`x{`j6Ik`SBg-)#iKcnjme=X=J`}t7&&eEZw!h-aN z_~T=zm@Y2XFX`XSPJMB4u+zN&!VUhyn7dwws7waoW^l8tOR zMNAHgbAP{$M! zwkGUZM5}##B}kEIt4^DbyL5GLq6zNeBta1mfpr4s)gh+{?Dom<$QbbTM+}kG2)T%% zU+63rwGR{RoXGvY}kmHM()_!fGk$ihzL`xi^y4;R@PJ+;SCC;MV8I|YMqzLsCW z=&NAN+2BlYVpXpj2}^=My6^f9;;i-N5lP1FHF4bMw(oQ6u-veQNZYe|4f1z2v`z{` zRdCtL=>U_u!`EjKToV*iHxjXHfPZIWfh>9f3|%+DhK-TmCf}QA^sXoPIe(s?TCKIA z;3&kuUNo(8jUa=(O<3as-y?A2EWEf&vP~hwzv>>;?52_3JP&5ivf0N>%zH>@c_pl4 zKAI=}OyR*o_0_97dk=l=8&kyw9?t4#^`J%uBHS&S)R7hgP#XqWF?3$hqf`l7JDrHd zQoIMdgd9jh$=&=c=wxL9(Rl70!FLMNt*!Usv2t4gMYSN3m2ASU&l&8BpL#k5DV#^f zHNatKn-GiCB7Bp#^%B*_JvD5#{*ug>h>!6qN@J-X2j5vKT&eXI97E+}40ejjOg%o! zH1a%x^n5bV5DSxCQFn95j5q^Ax1_3+;f1Th8n;4p(tP8<$dK z0`^DZxE7j5>>lG~E8I(>D%(1%+N_&XQ>deRO}LMWu-_1P+fwU7=#<;jnu!G$&%;BA z?V~+wbC>bdw+}72tj{}SS^Kv7+UABF2cu39Kc<}AR`WjfG3>#;dwj9RLJ5)h57@nza+rgAOqIxb%&+&pAi%CQ*zov1K*W~EFl#nt+t_yQO3$y z4%nEuk>R8ezygu3h)az9{L~%&y<5y#=_zQV(zljUy>uVe>Bw-|Or9A;DNS2+yRi76 z{T7;K-exNhR5dvg;Y-%TXUzQb;L}&VaHc8-8CDyg38YQ))KqN0mfHgb5603h4maHo zl^(3=XB3sa1;%3{qEhC+_LM01qirZ#ZsXi6xxSnS&2hTe{IQ z!s<2DDlIwBD+R`|g@{SDf!9|3O*wD7WS;x>a?iF((9C)v=E@7U!xQygN<385eK|#bJFF-0fF3 zA?N(&q}X&qxzd9<`WZiSX4a2eR6?@;61*a$)w*RU@;k0_<+KG`Z0p7tgc|9gqx-(J z;7fQRWv`|hZsx*F3t)Iy!y7O2>k%G};$s~p@c*Dwm#Q`2$;D)oZfuf3PAea204&-e66moWyU*qXdR31 z7e80)6BYL=#+*km5hUymPg|)l0&KAyy_N-oI4{3BEHHSR@|>;Y(a2vW0jD?`<;`dP zfr6g;f)8kCf*sl?Wcx2+yiOMXNoowT)mRzl!pnN<9OpnsWIl7o7cIyI66?sbbdQ&2 zVg>8`Y*sFs1;XFKwmPZERQn}wnL-irxT%J%&nI-=qV1u^3@28TQD4DtoU!17bYix1y zlZ*-zvbT2K_popu`}>%yy(_QVE-6@$o3TSQLsk%f0TP5r6~k`KZq1PO7Pgt5{`FkV znf04*vcETE9LNB-zY+Rts;P6qD}RQns_{qy;KeP`_>P$xk*h{A6&FQ8zf z-y-$R;+1QL9LOkWl-iA6ztp8Oo@r7Ob!A>Rt`Xv$7b2zv^zfmPQ8<^4Nlemgy-M5H zsYPA&$6{q(Pma3H4&Dz|0BQsIqXhO0ZA8m7q{3X$v>2k z>mcdV#y;g&^p?kWA5qAX{&TSxneK#!O0qHE_t7`>9=zG7&x zcc(nqddC4=4K{N9Q`~OYE|aShtwZk0I2_a|q8P!@w503?*Io^Y0Jd5zaj!GGG($?? zGTaoRLUOi2pG-}fdgKBOv81jAcr^w6urRNKXDL-}=NFh#l1&)icb1APby=hGUAy9r zvxT{;9{ME(x%dYh)218dJFhG_Kj3wydbKL1X5DDfb&0o>p0DDYGtnpC+rY~C?J1Pn z+0e1d51U&4Z{0u-N(#!`GMc|IG8SF=x_!>uYkzO|y!)5J03SCG24{5RqeA#R(5C^P zElPW(V>+&?<1(X`?7*%z47u?tN1vWe zl+}^s@Lb9oIEU-ozCPOxmAp>!e^!-M{BCZ)%h6nEz$1K#TK#04OXdO zu(EXd627d)yaeMgx6FznkoH|a?~OI*bhFPZ8Ra1h3a-d}d0Wm<;a?d-ci;OEJ=oV2 zEAwO&x7wGP|3hjZqFE=k5@<6Td(=}?IRms()sSv&W+z;DxKL1AeruVur0D~iX!RV_ z=DN0Ajcf4_Ou21{Y11Rnt9WDiNso6ri2;a$BZNVp(^5`NJ z4ho2QIh3`i^;Ib+iOt@p{!>-Pj_Eb<#uyRML;?O~{egWX>oOHXvLs0oyKq~db zif;uwJg;|?L;L@JHhj+XecumFg#pBG%eA0qRK!_3WwUrL3(lppbaPC-G2-nH9n-D` zIhE=;dEkms8%f1D^1~b?S#3vZ4-&64sQoZG60;Jlv6Ipi3>98lrf8)czShur%(_U_ z0V2Zg9?2XoQB5jCeK?O^>MFCC?In4hMPBGaj&6>1@D;TwzdWQkJF8=zm^`*B?wp4Q z?!#0rJZkBSLT<=P;v=w;wa)G$IA-NMc>^&AZl2mkWbtR4y+3zX$?*YoG+=U+>xd`U zH)HElDs2exA1~Inq)b8hswZn}`|fTL_%{)`-X(BU1*w-W%PdJZd#|WPaupqYNjL$~ z7I;)(rs*t6xL8U7%P0o;uLOF1 zf69zwQx`*4K|9W|-8DV;UgpW*z^}}|bXN2>mLZKCmJyLsdlNh%^S&I;FR|9m)b|6> zR{4|q&?}3b+De1L@E%JllQ;O3=NpznnHLJAk&8gSOIlwhj9g$4pAwbxVnVT`gq4wk z!028Jo_)8O;K&K%@twV<;A+%v&zdveV{L!x8#;Rps5zaw4fwNRk=(X@ADqN-xxGqw-1f+A)piHg(SC)k@tXzb zDLG(C#K?0=@*0{V!rX{;wC{266 zQ1ZDiUJ?V5Cgd*FtDo-6k?TJ{rl*Di8gc86H<6Za(q+Zq=sThZ#) zzh{MhKK?gbp`v5)DA$cKxqHP-X2hW8k+^96S4@FmFZy7KZM}nHtxwz(BRL{L-F_vL zcl@&!{`1(!gAt#<7g^h+_jO0UhVPA2=zy;8p@P3e23rKub=Y*RpLZ=?8D1*2VpX$! zL4huf7Q}q8$HilvA60Nv;#0;>O&J^A((7#rc1!gqA^4~Gqjhxb6Itf#fsvOl7feyC zL3=cJ`Tchc7~7J2O7g?*;X5kZFIj-Po+9oM;o-K#cPyp)|M=hU=`W&-u@+0`a!NL| zv8yOngYoe6W)<3w-)m;2PBRx^n?n~fE3 zLRMb4U&>%6s5nRU;*(VBFxtqM0~Q;@t-H8Y56%ZSgh%V0*zr$yfwa!VTnWZqw!)XE^Z!u0fr@`Bu~8l0u=Y{z3F3F-b0EuZM`i`r z%@}%Ud<4ZbdB7{Z(L-uGOE{rz`nOwbw@6i_Vz<7XASi*?wRyA;a~y5vX4@MlYcY7R z;+e?`^Na9&vbsWEow1pMozH;_3({L(rTDi(Se!fdAe(UHvvy0EJFo#-z@{7ZsZTmHsSoKwlt~VAeTGQ?nqt}Ap)ZdZl!aN>w*^epSx4)P0|UG2nY;pw z+iq=v3v_Si%SjA}TByrc^nMaFrLjr$PtFBSuBJf5seMb z(6^VLF))Ix%Vko1eX^#u4JAa^ri#>mys5CUC@UzCk#3vaPg?P|8)P$7>KYk@>gbg= zI`#9&|77&Ch%z>?r)by>I%}O^ZLeE_+)qVMHphVGntW(C%^mb(DPB%u)?SNW4@9*U z7v0><8PI%LksmGVVfAuEg`HSC^4s?7IS_ScR=e%_z$RVFJfb7+pJyK5i}I{yiyb)g zdB%}Z-0rC{apEKI%B}HNy{I2M#ut*Yo4r;1ozm~jpH6ubihEHSD5hAdB!wr7ETU%} zx#tJE)EqR&X834O+aTdkbe#4W3EQ@0Hi1oWlD!iwcBeyU*$ zl>P+!a6eel}99T?u-S+v;nfudp0X|w#c4!(NUs{c-ofd`{g{a-b( zos}C2Cz-cPA4S^x4caur`1xP@(nznBKne9;qnrwoW()Up5^8;ts|ONBD>CHDMCf^8 zn3EPljszjDM3N@@VFwQ%w6|pmKG4;ZBW|4K#7e9sIOA;{#>%E{t&gxpPP|jOr((3JowafFx{J&&(|=}~~X0U?s|Gb&(92BZWA3V^+O*43dU_oP>Si}?BY z1r<`oB-&gGncPd>a*8wPI_cPFQ)-spp2B*J-)xSCXVMlI&8HyPvP#~AESNAj8ooR5 z74_DIg99Ofs5l3;#6uwpLfcY{Da??}U&i%lP0JDee^?1}8I)QpEH)K7H0(a(^!|y3 zI(~C-`iGH`scZX~MjY3dCCQ;39Bix(mH9RkHBP>_W8Jip|JNsr>*`p)!sH01Cph`) zDMed+JiN)7KG?L9b(3&c%sy2ofxx^(EkPm+jPU6@Lx`}rYoiEMWzI#R0iQ~K!dRVj zoU(z(IZoO>IMK=$qQE5G84rPIkroGix#T9`AECNCXPbKOqYh4seas~tg$5JI;IX+P zkn!GlzM!akqd->tR^Qz|`2PLWG@CoQAiD&vZVl(C%wV{6UsFr{d%GX^92Jx&Y7aWA zzQv3sU>zpQAT&K?%5EXPJhGYEV9%p4#hA{yuR*#tlxu+*x+O#B0)2%Bh}iEYgcp7E zCssO!xGHq3&E=Ty1oj!74_FyWyb#dd?cBj@4P)M3f8J4WbJO zQy8S;#M2#)D@fi;f!w3;fvblF%a z(H&JGE@TfwtrgdU--z>)zYObty8rDl!oYepK+(dLY6djs)#CB;^LIy_Z6PtOH9X^9cNv_f_Z`^=U(rgE!u-=(44_b6(Wlng}eJ1o(Bc|2@#?&J0f7JauddLExR z%yXK!eefgL(f&%azq!4)^JFi_y9?v4`eu%BbuAxCRkzkUHm$b%aCP-oq}0zGJN+k! z5#PFO)~s|Etw^OMMr^+p7X_R|^23PX@vZi!^7yE;`X$5X&HHB@wQQu<2@c=HL4-2? zyXfqKuytbz{m;I|A=}|=TKUrM!`RB4oHc)%M|F2vI}exrvKF*9SG^ssL>ryEOqP;Q zb7{XTH(@*n)GN z)sIlHsr6W=6P7ySY5V#yAkGxuNxm5Pb?4XY9@)R&)B>}`!M`PO;4!FaiJrj9phGT_ ztxQY<_qvkqyoJO(RCq4!P?q+6&xkXWgsPxdKE@loyN;0=gqDD}w_F1|W2!^6BbX}o zzyV2(_B;G@^f#CA>9egT?Idfho!@^nyC~4q6WtRq*2hQQ@9d(6$fvEzQO6Cf(%#zo z5_p4rV#%QmtI^&oo5TGV+;}TV8awH$2fu11+E8Y{CV?D=3HbCgt=WdF7blPt>)1P4 z;+Y|tYiFB68pwMwqDsQmDkHS9zR1$7i}biVO}qmK>Ffk%(jD0$q3yNl&uuc);{x4W zRQLE(xd5Khv`-y5l`T9@lH2yC5RZUCBOdT(z;t3twarn_tRYNx9E^4N?H601#KQ8d6;eEB8;NNU2bTwPx@HWE=I-(#-DmWO+9}r zRdXRU6SZ_dJFS~~$)GmwDy!RO&_6VG7nKd1q2x)|>*PCmJJJ{>0JIR6&#E?KWqwiG z+Ar8ASx`;I!*_>a)TOy=RXAU((7M5;<4uj#D`NK!*H={0{nVUFJEy>*Oq1o)GxfqD zj>s?0pdx9bZ7fFnMTj#thIEHDt?pK$O_x-z?P#F7K$D8@Y)!MeztU8sT15Y`a8u9w zZZ;Vx-5Avw3_mSHi7+upt%ph^Uxcut94;EtXEU!^OL#D!U{qIdt?@QK|By0YkfWO^ z2EY=M0Y`wNUaH^2!pOecNvhBTS?Sfy(*7qDa3MBU?CZt&F<4JsTKiszTA8n4-M7Li z)!T9<`i{FC1`=TsH*ums*Tb0;UqS*th@DL<3VIclIx}D~4DN0aTE0fQqBl2(@^XK3 zJP6=~>g{Fs|KV7bnqR*5pJw_KjQ<}IYJg&KU?M|zHu?wE02qlD@!#1LC)UkPO*N}) zss&Y4AOJH%OXPB*&*@j~OYsN_$d8?zfc_ykAMT`uZsDdIv;Vhs;ESz;P_me;|H>3v z(8%H{P{B&lg6YRGW~pN}PoQf)Yews67v4Jv>caG&LG3ZirLW?d?Ue6Is0LpJ9Kl32d)Bg|wjcrpw*; zm!~1{2WvOPQzs`s)DoTo4EaB=Ut$WPc*nYcw$|LjdPay=I?d1pq4S?#hB8~y<$(%? zzjX|UGMMo3Uw=9M=QpK-YM0Jo6aHty$>*d0M~xi+#aI2Woxjp~Q9#W7i2dq+HiBOE zE<)|)-P5^Axe4BYaMRdiX;S~~y7{bvk!0~Pg{K~{cqISQR2z@z2Y7k^BRqvYvk^dt z%j~N=7gU8cGYvli?Lhy2>@~F-Cs6Gf55|EvXQFP<0h;jfD>qv5WqaxAT(?LWOyhEcBs-A~QGE8ExTWEz~8FrP3o zHC4V2*1d4d9NdlL901-*Yov|i%6$Hvu>sfy?CUNe zFaI@Iu&y9i?{rqym5`NJKl}KktUGl%Zw_yQ98mX<939-_*y_G}Lxz~QM-QJg zhbp0Nv^nc~%sW2jOo+U%U^@7$ws%_b+sC1J$n4feK|ZZtMF{w`ULeF+~*nA$t| z+*5)a;*+x7%Zc2L{d^2s)ny!*I(|ftwfY4@MjdG`c1uGie2;Z@spAOhA^s0$mGHoe z`pOI!N_(4@Q~qM*FhuD(0E2mH|EhX+b8rDuq0(TwjNRFY@zfNk&nU>{U+HDldtyZx z956RG2dMaUYcdoCr}V-N(PN1VQaeEwJFNHu?0M)v+dp3dYqpRd?iaEZlk=T5Cnd6* zKk9r6hg54K6z}&)5xxMD!zi%X0CJ|R&vUpo>^0jt4CDrg?|%P&w(+XVR|moQD3=3{ zVu`0l61 z{*-#ACcZexVrfGkq|k{B-ms%}Alj062+f@yhn_%7X5UegMC%8!V3D&iNd8zE>9LDF zdmT|>qp7W?DA32_Pgd374+YjywfoFjzpggk0JVUf6}~hZuS$Cd!R+_&rJ=5=@^wtQ ztqIK<=$7=t-4O1aIifYk$|C7MceT7|b@iQF60Jgkh<{kEE#{B(7@;@be&FuXzAh7Y zB^j(ZQ|tsUkYfRz3Pnv_*@vo&Y=Yl zVo`a*{ILj@xNl6OtQ}s*q$1yaSV71nCG|K1*!XDHIC7AQ%3V|*%D-a8y|oE=UaoDe ziyiBu8?omP@JC{1k{#r%o1q)#$@lc4YR_@3#Q-c1!B?9)_|A2HAc2d=i2e9z zOOO0>!fD~r&6=x63n4`S-$K%T@q(5~S|6yW)H(i^IqLfKf)5F29_+mX+9V$Bn*gkp zR4$K3V_4$>Y@*7pgf+VcDmL%l)eDape8?z&2CU{Lzu>sAYoyWMYN~%uP#(C>yF34G zQLRBSf-ffZRtgug*$O!1bUp=87hxflR*gdGC0a08WvpUAY0K_*$SfV`A_w?eNqHR~ z`1;$VQNM*=@j3ld!C%lzBs5k`#oq3GIB;>V6?{H8dDajm?sJvzxI5NW|e`nYvHG8Dp;0+OCk8QPCrFVoBdSWZP*Mt+e7#&lv zv9f%yhFc%TF5u$2`?}-IIR!pq^Tq$%$(?`i#9>Gw2}+*b>Q^G9C0^3YluaN!cwl4= z0OLC6h|Q|mLEE-o<9WbIu18R~-% zF45X^j&5+t7MjlUi{v4`J{Kw5v+d$XI_P)-pLwEAGw%3}#iGgmmG05A;>lns4>vzpX7yZ$AA)haI{7?-JU3Jg;imT8$bi(h=skn;TL@RN5FhySZ65V^2bn zQOZ6uFExe$)|1ObexuLgfc~+{2I1;bV1y>k1$~f!+)gtx4`=~4l2EaIIrRA+FotV{ zZSFN+_?*X4(Bs2{9N}5Qj!I$<(Z7saZqxaAI$o0o>0XqYypho-KIt2OwiB2@3*6nM z>Yxd2^Cq9hSTO8E|Y3hwf8NCi6iDZ-bgW-`p~9Qd9mQsi&>{{${2u6hM7xB%U)D zN&)$A8vSk1y^F+IuH765EYi0R!0J)i6>xT)kvXnHH@ zGwU*h@)gx8IY-8KNvyV*=qu44H;RLE>O@CD3yYogmUE_p zlN9&A*cOElZM+V8RZ=WHj*4h4m?CkO^vhu37~~P~y)`AYJ&(VBrAM3f^;gYst(+;P zn@W}ZZa~SP#482AZtJ#2ok*VNr2=*vi4Lek?`F6RyK33wq!ow!zUIHTx+*aT^~DrW8)0$-i18kzyf zJjrXeN*0@&TeB(HpBM}>E)B3gHLuq?Znx0R7TM9^L-`N9Ke9@nZkzjAHup8;P%A^u z?PmRCaQ!5J?F9HmnT3^|j+c)ggQ3?RIl$ZN8vtdt+CjAFVL>DcR$~m5qV8{Z$aT3% zDDnOE7wcSH&Or{h{BIxs=^s^qEK=Vio9*cOG_RlTOT#54wOU(xr)M~PziIj}r9)=T z+IFj2sC$`S`#0FTrTW{h3lUkfHhD(x__|(cu@4rEV$lI1O~1HUNSORelfp zr2{(FC1G3uq=Bjqcyyb9}JmnNfk?<9z*H5$sfKiD00KwXwJ({ z)n%Ut;$UN7%<6zK#DsW+JnBvD_!VA!183~sR^|rdV*HOC z9eOaDtrX}0kYoiEgdu(48T*g6$m|6lO3w_#xkX{&w_sC%Bf?JoI$ds4R59abf&xdGVx%qWT;Tf?&Dja=e-EBQz^M$$}fOn>_f&P03@u!#FTVZ zCJVmi6pvOpQN@ouB}N*9z5`e*$9PaG5jX>7PxMP}rD)>_jRGj zj9{;Z9os~<0cD|>`_5vE98wFN0Pt#vDc7QPrjSjedvPsG7(j!h4w_8~xaoZcQx33# zY{@ApU9sl2T?VUrS;yqw%BKD6jT=p(g@6velsxJ-)&)|bSLg-=Rv(Ce3VTszD&|gD z5zkW4F3~3!86bJ625qfMP~p(Dwu7yUG=fq{nRKpN3FvNa&foIePvo5kPD(m|IXTp5 zd<+gzb$xlpGaTg`mdsUD*$pTA<&NQ5 zGe4qudmQ&Oh$bD18LQZ&ZKr#EIfDKwS->A zWlgMjR$&Nn3gx5OziLg^yCQQ)!Ro)Q4KIzz_874kU8 zcdyH9eo5G2rKkwFg?o04|KorH56-dQ_Wt2Q=crkb!Rqcb>+h(VzBZ#Xert&vNJXdz zHSNu|+xGIP+gx>-N2FKb-D-J z-u_$Uow+Ju+jo`L;O<48zM2pVX%C@~%TH~N!stgLfak6iOpl_^_V4U#FOOn&KA2+c zok30qQh-U(Xe3@8j|529^SyM_)(i!MV%-DX;^0mHp|IMxro#i?BXNLBown7dtOu-J z=zY(F<7oD?p%2v~9im^SK5SQ3$OX+#M`>E$rk6DW06M3}UoBFz{UHsOHi*MJv>28* zGCqeGB2QwCM2m$DkgQ9+rj;@!vc8OwNM-Rr3rnCA_w~3GGIIBKXCg6BIcw4L2lRd_ zQ}kQoMZ6}-80dVeu2%EvHA(C4yr@1GA99#>>v6+l zqr9#0PY=9ly#&9`_VfD>j;UO;LgxB*lnmeF0GvSdADiTkgOh_+I1`2ZcIOkR4oghz z%|vzkV&hUjeCRDJ8{u3m*Rt%88xr$-q zwdSAfw&p7~*X<0n+FH?bs_|cBhkX2EP~x z+steZxpfTjMaF0TR z3^U*xoOtuEKcnm4*f>;$P%v+Up;soF&5S5hvp1@L;U9Qyy*1NmXJQo?zH;SC*S3UX zSLh+4$S#Wduw*zlfEGP^toAqBIZCocfQ?i;=9&vVu_4L7jq5(_j2P%w+^H7$WQpzD zEK!*ho3ZgXI`)b!r7S!g-)9{VZiG)Y7^>93h5me%f9)q-%JOIuk5W_T(443P9z{-! zz9MScB_+{v9UVw{#}>!S=lj)bEB*LTJICwwS{gcZci9IhZUsm+vYlTT=x=yyeY)z* zY;KmBAybZ&4iZ^k5w@A)0m7^Ek_$(TT6B9%`n}! zA(GM;Y!f=NgZj1*z(aci7>on_`@K*mikW-B0Dx@syBW2dB#7DxcgCjMcAfWV)jy8a zS+7qq8v~x5xV*zi)twT{+81w*+46B5^1Az8LoEDrrFrVJKLC8X1skl{#pSIfti_`8 zA4DEH?CH(T-hhnVK6bbZvh?K}MY^c5ftvUyM@o&r^X zcbeJuZ+&na_`)#T$4j(tcP?^}cSKO?j;)ZE?M*Jp`O)XqF5cTsQ}`aIpyxfLZ2l~4 zCGi@v^|085?GNnfdm^o#2Z&ax{yMipG|P~IULSVqN%ihm7Mos3NlxwLT}9h=e{=96 zov*CA=Wc!b2>(DbgurJrTb;%-m1+Lg3`;V-$Ryh?qR2lV#~<)TJ1|N6=Kt6YvX zcD%+3xlj7qF<0Ya`~Eig7Jzz7LRDB|9=1omQ1%;JK{{Y73E6GKhI=~0SI_ue9ZUBG z6maO1KQZ%bmB(`lfCt85zFZz|@1De{1_9kU06e@|vY$%wF>F)v*Ox;hGu;;y*!F+NjJ*Kw-Fj~K`{zti_2^SwYg({@TU zbxw{LQ&Lg__!GHSJJ?jt^OJ$ilP?GgcEFzh zy8mz3THG37pF{ZEVe`c zd&&O({`cPA-pYDpeEf^R!05KNHZ(cvVOv*dFhV!fvY^LzY~hf|Yzsh)Sqtr&O^p&- z52+9UixAhcyV53jQ?kV>evmwj;=Urt$M>+h=1FABynuk9&Ppr8e7^vf zh;XK-yrBGOM3y{i!P5p-Ih%pxK9CZw&%N@>yg0M@aOoL?o!=HZs*x~ScWt|`udh0Z zLfZ?_31vwDd3kRM2n(02uW|Yazo)EkZ(rc`kl3oRdj5QnK8MelxImc9C4C~P!1gbH zv~DiGA7PgIOZ(pMWv_DHpP#2yx~k{O<__wQ`c2=NCD+#SZ_=>*?i8<_DeE&H*x&)3 ztH^f%1bcNLukO*?=vpzbej3V3J|Q<(RqAI+$iw5)BZT!o>%hditldGafKt{FJCoP% zm=x%siIvv$*)fHqr=qdM7i9B5JkaxCzcmJ}hG)^dw`ApCi1eX0HT86odSd@(yS0GV z+LYd{%8M=C_WehvG*u;zphVPs}{gAC@qe67{S=C|w1>4t`O zAY8~a(Q22*5|sosX*MwWj$J z#OX+A4*z5o0CJgA*$L?`SdadxgX-XRNAu>VNjjybck z6`7bYhUY?|M~|D}Fkv%Rj%!y0hZ%Qx5wf}{cLHBd>rn=XtH_Qv&L+{B>>>qSoN6&w zr!9scwI4mYB5(bmhIB$|%mM%v{p3^PAC3cPlYz6uBY!P%@-V^b-Qu$jU^P#Oy!oS} z=kmq4E1UPuq)R(Q{>^n*qqs31-cdLDxCR!!Ka)`6urq})s@K=^Uu&1J#{;8BIwRUG z?yXEu^T~Yb&_p-Y0obe5OCXTgbc#Au2AbQ}#+d%jTr^qc1>8^6))xwgqk=YRw`tok z9#Dts%96;@n|yp-%E+PUX_z%Qnd1Wq;nZ(^ZS-0G+$T{cTq>7ve#%cEW|ImOU3E_S z$Jl?(caVHK#QVx_C^y)eM&vrG8y&ym@FTizbM!N>ZmE)Cz~zr>NAO((IDwbGKrGU) z;Pk>%1CW zhX>5=r-4WAndm!aYTF|Vl)Dh?^5`8tN3zuNU)Dx2SX|4_*M-eKdQP{DIx|L0&RP&4 zgI#9d+RqkR8T&LR<0jYXTR$n+CJXfgz zyIfxYh16c!*LD6C)KP)O%*0RGj>qwX!PVo4L%Mr$kL~CC*#XlsjT=+=>^3ku9{=mQA31e`R#+@06F}MFG08e}g1d_b5wG+q-kW zsBWxpds&#QbdQqUbuO@m+9H-*Ha54D{Zw|xsZ_2x05$JCp? z@;K%_3=*O_*Ujg(#cI~I^vOxh^1v(dflex3o0M6}b#w4x$ID;D4n5hK9Kju;U-OI1 zgBlfTE?Vi@ubyvf0lscs01L=PT0J;AX_DAkZ?yE1F*#=txW#iY}u+U^xHlIkyBiXNRdX_Sz_nwB9 zw$2_41)$p>o*nG~-z?v?{l7y*n~Wh&4z(g{e8-UX5q%ok_?vP@~@u9&i^ zebG1xC;49DG}7vWw7pHY|2bv`Yub3MS~#jlg2>D2KD6!f40Q9Sd4>-b;Yes+gtXV zQ%ZIMOqj5>vm@G40jbxgijq4orYrgu2W?NtC1z(o96#G6t#Tk~nrJ+1-=B@R6moaE zb5;b9tteSY+DEIn=|raYc*a@OeR$ zj+a;TcOFFnEv+uNk#^Ax7gu0sY@pNenH>GEz5AmZ8~j6GKRf=@Rb!Lt>Y6$19k#-! z;Ze~Cx`6`cTUIVT_w!C`K0GXK+1v{R2(!?Qb^pvo=KHo=F7-XBe6wELKGc65wKYZ{;)+6w*ZpQ#LM+q2@rPchVXS{Cc)2(k$u z@p-gSUlLk}i$?p_LN-&}W$nDRa+F?=hu7FCAJtj;-SdXJicmw zJba?g2}w>1`W}I*gu#Gw38bZ~TdfkZQ^D>)>y{BJ4YmbLV}JkY^p3&}|J!*sM%vN) zvhaK#^3XjCl(W%_6E4J(VVWSscsRSYHajfQngnnXF(zi`-bq!t|8S-44nIZV{3i>S zEA`%*b@4`1msLoCTSnV_24Z? z<;Nk%6_W>tl-U?BjGh@LJfyANRHfgt;n5U*U1w>k2tDbI6}xotp?M3s1)3S%u=~Qi z>RCn50pWbLH4;%z+P3`7YD^m+t&7}4aT)^%QmhKuaiE-PbZ zT@j}5bl^gRaoZEJlV*8*d_yQbZ~xV$j>14}oPMVJab%fYJZ*o!X6GuOGT)CDj&;eS z^_}FidNww#v$ONZ;Uev{v`pbfr#nGo*BU#D)C&#z#W#O@AEg4c_XipWV4D_2r9#Kv z^Yw3B+H}!L*9FaHPwB6gV<1R6;xDIno^Y#6r?v5l@8KE2kE^-kZwT` z={3?pL4?ptLIqu;smcFy-OvweEZ|lD~M9xe!C6(leYL!^C*i~<2Kjr%kQySXT zY}%3g2*^(F1A{Y~K5H(;e@kGYTd|!T3m=`lqDqYAj|VL@92DIZLrh2AY-w)~Z~nzL zIW@(}b+Rk&cvK=`Je%!SXw#&iT~=Y(r-d!|l8il5O!{kg#3Noc?>Zwf{qX3!+6men z2cxyC-Yhs2unf}i=u2_B@j@|c5(u*zL$rdFk;MsWFAoV?@8C>h|NQ8DaM z*S---SdHlHoMJWZT?c48N$aOmsc806{0%(bHKxam@!`Wal_FKfb0H%U@MPA}Q9TeR zxJ*c=+{F)-Naj}T>$wp|6y@*G0&l&9o%bco$t4=}?ZR=XZ&qyp$xoeEr3@;TKe9Vs zHCh-<4ek~CBz>gdk1X4B+jqP~kj2B-cH|U}Kk=Ni89>(@@4K$Atr11^xLhgm z0o#*qbUfe7_Vn^hbDX&r3+m-_XcbouVunXX(x5qu8!Z>}aF!$Sc0SLJkH;zbbU1@a zF(GT%=d2?h#|url=xy+uXfHH?%8#AqDYf58

;!5PmFY+n-4SuTT#jr+xc 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 DHv|pC literal 0 HcmV?d00001 diff --git a/public/assets/home-flows.png b/public/assets/home-flows.png new file mode 100644 index 0000000000000000000000000000000000000000..17126b704c535430c5c76c3345d2a03e23f7fe8e GIT binary patch literal 224113 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 literal 0 HcmV?d00001 diff --git a/public/assets/home-hero.png b/public/assets/home-hero.png new file mode 100644 index 0000000000000000000000000000000000000000..a0f6bead6cc4cbeaf859a47232fe3d0ab007fe1c GIT binary patch literal 509137 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%0D`>vYe1`>2drsLh}I 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

1@<9R?v>Zd@9w@lXdDhJf>2KX6rSaUx~YNR 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%0D)**@o0 zVDqDf0^xhkVG8H!(4-c}Uy6AhQ$UUMYH$_@J`M7NJeIQIdRE z0<(X{gkwTbSUiX+iZ9}s5m?lf;Hp35T|vf;@b^QQEn_nGZ%ZhcdnGLv0h!*d`G zZ53{h4%udX$O|gg{MzfI$u<4b=WKk-tq<$_v=nr;-rwFX+z{(S8AbddB^xm3;mSy2 z{&Gq>Jarw%6}RD7Qt-zhY45)%G2L z4BScyT9IYAUsN}0RLAk>o(qAh!*p20&A5pe4q9;M-b+!AX$Yofr;q5AJm&(@)6C)i2)f8Ipt<#oJu(|fbpB|gL%201IWiI&;t_j|dclvRh5UG*;x_nG`+e-@ zd-TuGR97r~m*K0vnAFYD2*T{x#+87QOzN12X_gE%+mO zc6l$Z32G_wj0^tft8IR;EZ16q%H^+9_;(^~J(6p%AC{3d-RFwkWv}|eoQCVMMYw3w z$*9>z8E$9ms>$0^T#FbanRgLw&P}a8y`EkUPPGz7sG@^$R})`QyfTijXG}Bgg~M{D z4B$8|^w$O~+a@V<*1TJktEG6VuyWBUz%Bk;4R!ld>cQt0Q{E=#Rh5x^1D}M;l=UoJ zU%Xg*^wEezF7@QgKXMI?=fd{l`Xg#bp!fOnH!PqlcbT=K_hfId*3`1XIsvgD3+r)T z4ZRT+hUp19y}yH&>SjWZR=bHJQiCV_^xj9?oY}k81t~0S${R}%k$wzFBWu)TnS2g0G%ncSJENZuIV%TDNIcjL+Go&ju5@A;i-=#_`NR7yk!!0w zx&jCAd1Ra-YDWst1Bx4%h8&Z;3f4YxwA!87!msZ88Q∨M>4jx%aG3ae0J?|L-cn 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

OZL6*lE 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 H5&r)Gx)Wn8 literal 0 HcmV?d00001 diff --git a/public/assets/illustration-not-found.svg b/public/assets/illustration-not-found.svg new file mode 100644 index 000000000000..147944880e94 --- /dev/null +++ b/public/assets/illustration-not-found.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/illustration-reports.png b/public/assets/illustration-reports.png new file mode 100644 index 0000000000000000000000000000000000000000..b54c92e1f4fc5cb0503b2e728878d4fa379d209b GIT binary patch literal 61091 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 \ No newline at end of file diff --git a/public/assets/illustrations/undraw_apps_re_ienc.svg b/public/assets/illustrations/undraw_apps_re_ienc.svg new file mode 100644 index 000000000000..ffb8135ed6e8 --- /dev/null +++ b/public/assets/illustrations/undraw_apps_re_ienc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_articles_wbpb.svg b/public/assets/illustrations/undraw_articles_wbpb.svg new file mode 100644 index 000000000000..9199f58c645c --- /dev/null +++ b/public/assets/illustrations/undraw_articles_wbpb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_audio_conversation_re_3t38.svg b/public/assets/illustrations/undraw_audio_conversation_re_3t38.svg new file mode 100644 index 000000000000..848571b94a0c --- /dev/null +++ b/public/assets/illustrations/undraw_audio_conversation_re_3t38.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_bug_fixing_oc-7-a.svg b/public/assets/illustrations/undraw_bug_fixing_oc-7-a.svg new file mode 100644 index 000000000000..540feb57a01a --- /dev/null +++ b/public/assets/illustrations/undraw_bug_fixing_oc-7-a.svg @@ -0,0 +1 @@ +bug fixing \ No newline at end of file diff --git a/public/assets/illustrations/undraw_business_chat_re_gg4h.svg b/public/assets/illustrations/undraw_business_chat_re_gg4h.svg new file mode 100644 index 000000000000..8f7e0d60af5c --- /dev/null +++ b/public/assets/illustrations/undraw_business_chat_re_gg4h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_button_style_re_uctt.svg b/public/assets/illustrations/undraw_button_style_re_uctt.svg new file mode 100644 index 000000000000..de17287e0f37 --- /dev/null +++ b/public/assets/illustrations/undraw_button_style_re_uctt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_cloud_hosting_7xb1.svg b/public/assets/illustrations/undraw_cloud_hosting_7xb1.svg new file mode 100644 index 000000000000..b7f44f846383 --- /dev/null +++ b/public/assets/illustrations/undraw_cloud_hosting_7xb1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_engineering_team_a7n2.svg b/public/assets/illustrations/undraw_engineering_team_a7n2.svg new file mode 100644 index 000000000000..855f2096bac6 --- /dev/null +++ b/public/assets/illustrations/undraw_engineering_team_a7n2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_experience_design_re_dmqq.svg b/public/assets/illustrations/undraw_experience_design_re_dmqq.svg new file mode 100644 index 000000000000..6f45d18fa4e9 --- /dev/null +++ b/public/assets/illustrations/undraw_experience_design_re_dmqq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_innovative_re_rr5i.svg b/public/assets/illustrations/undraw_innovative_re_rr5i.svg new file mode 100644 index 000000000000..cf874d6d1120 --- /dev/null +++ b/public/assets/illustrations/undraw_innovative_re_rr5i.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_lost_re_xqjt.svg b/public/assets/illustrations/undraw_lost_re_xqjt.svg new file mode 100644 index 000000000000..1db6ea192810 --- /dev/null +++ b/public/assets/illustrations/undraw_lost_re_xqjt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_mindfulness_8gqa.svg b/public/assets/illustrations/undraw_mindfulness_8gqa.svg new file mode 100644 index 000000000000..a3038a9feb6c --- /dev/null +++ b/public/assets/illustrations/undraw_mindfulness_8gqa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_multitasking_re_ffpb.svg b/public/assets/illustrations/undraw_multitasking_re_ffpb.svg new file mode 100644 index 000000000000..c2fc2d09db89 --- /dev/null +++ b/public/assets/illustrations/undraw_multitasking_re_ffpb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_not_found_re_bh2e.svg b/public/assets/illustrations/undraw_not_found_re_bh2e.svg new file mode 100644 index 000000000000..8ba6f36ddab1 --- /dev/null +++ b/public/assets/illustrations/undraw_not_found_re_bh2e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_online_test_re_kyfx.svg b/public/assets/illustrations/undraw_online_test_re_kyfx.svg new file mode 100644 index 000000000000..e6345e9590b1 --- /dev/null +++ b/public/assets/illustrations/undraw_online_test_re_kyfx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_open_note_6nva.svg b/public/assets/illustrations/undraw_open_note_6nva.svg new file mode 100644 index 000000000000..31677b3f6c49 --- /dev/null +++ b/public/assets/illustrations/undraw_open_note_6nva.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_server_status_re_n8ln.svg b/public/assets/illustrations/undraw_server_status_re_n8ln.svg new file mode 100644 index 000000000000..edbc9c1f7f09 --- /dev/null +++ b/public/assets/illustrations/undraw_server_status_re_n8ln.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_solution_mindset_re_57bf.svg b/public/assets/illustrations/undraw_solution_mindset_re_57bf.svg new file mode 100644 index 000000000000..7bb3cd635f2b --- /dev/null +++ b/public/assets/illustrations/undraw_solution_mindset_re_57bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_speed_test_re_pe1f.svg b/public/assets/illustrations/undraw_speed_test_re_pe1f.svg new file mode 100644 index 000000000000..e1e3e3c80006 --- /dev/null +++ b/public/assets/illustrations/undraw_speed_test_re_pe1f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_undraw_undraw_undraw_sign_up_ln1s_-1-_s4bc_-1-_ee41_-1-_kf4d.svg b/public/assets/illustrations/undraw_undraw_undraw_undraw_sign_up_ln1s_-1-_s4bc_-1-_ee41_-1-_kf4d.svg new file mode 100644 index 000000000000..d1294e322ef0 --- /dev/null +++ b/public/assets/illustrations/undraw_undraw_undraw_undraw_sign_up_ln1s_-1-_s4bc_-1-_ee41_-1-_kf4d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_website_ij0l.svg b/public/assets/illustrations/undraw_website_ij0l.svg new file mode 100644 index 000000000000..4a35bd0177a0 --- /dev/null +++ b/public/assets/illustrations/undraw_website_ij0l.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/illustrations/undraw_writer_q06d.svg b/public/assets/illustrations/undraw_writer_q06d.svg new file mode 100644 index 000000000000..3f9f5facd4cd --- /dev/null +++ b/public/assets/illustrations/undraw_writer_q06d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/integrations/cipp-api.png b/public/assets/integrations/cipp-api.png new file mode 100644 index 0000000000000000000000000000000000000000..48b3e4f2f20c1f967e4f5421ee888fb4acd90b3a GIT binary patch literal 21961 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 RT$T(n$kWx&Wt~$(696RO-je_T literal 0 HcmV?d00001 diff --git a/public/assets/integrations/gradient.png b/public/assets/integrations/gradient.png new file mode 100644 index 0000000000000000000000000000000000000000..82b54a3b1626e572808b52ba7cfe67bdd9ab303f GIT binary patch literal 19120 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 PMv$@sz|56>{r>*}RyM}g literal 0 HcmV?d00001 diff --git a/public/assets/integrations/gradient_dark.png b/public/assets/integrations/gradient_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..d5bf84946a1f0ecbc6f1f4687885f8c31b264195 GIT binary patch literal 11059 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 NqiLW~sb>57e*mO+-RJ-S literal 0 HcmV?d00001 diff --git a/public/assets/integrations/halo.svg b/public/assets/integrations/halo.svg new file mode 100644 index 000000000000..9d45a2b5d619 --- /dev/null +++ b/public/assets/integrations/halo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/integrations/hibp.png b/public/assets/integrations/hibp.png new file mode 100644 index 0000000000000000000000000000000000000000..552e40755708860bb74bda7fe3bf14d6a431703a GIT binary patch literal 51465 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 literal 0 HcmV?d00001 diff --git a/public/assets/integrations/hudu.png b/public/assets/integrations/hudu.png new file mode 100644 index 0000000000000000000000000000000000000000..6427d9eea88e10afafc65151b0ef5b36f056ac15 GIT binary patch literal 8238 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 literal 0 HcmV?d00001 diff --git a/public/assets/integrations/hudu_dark.png b/public/assets/integrations/hudu_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..bae61ee3ea2f52f170f450c464873702aa86d229 GIT binary patch literal 6675 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 WGxmU)dhl;fAS6X)MJhk(fBj$Lu2|v# literal 0 HcmV?d00001 diff --git a/public/assets/integrations/ninjaone_dark.png b/public/assets/integrations/ninjaone_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..faac382ea49170041fdd5a890ce0c06a0549ae97 GIT binary patch literal 20555 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 YANP`ke3MmxCju~dy85}Sb4q9e0He@!sQ>@~ literal 0 HcmV?d00001 diff --git a/public/assets/integrations/pwpush_dark.png b/public/assets/integrations/pwpush_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..f416a470edc9dbfc726851a031d395eec7d1d7e1 GIT binary patch literal 48155 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 L%@7r*FJAdSVAYxx literal 0 HcmV?d00001 diff --git a/public/assets/integrations/sherweb.png b/public/assets/integrations/sherweb.png new file mode 100644 index 0000000000000000000000000000000000000000..60752341912cc16f1ac07b638939a753ec99361e GIT binary patch literal 51355 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μ4GJ-eW8Ed>e)OB#^BV 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 ZhG!Imt5GTYzY_$YuBNS8scaqb{{Vs};EDhM literal 0 HcmV?d00001 diff --git a/public/assets/logo.svg b/public/assets/logo.svg new file mode 100644 index 000000000000..2de656560472 --- /dev/null +++ b/public/assets/logo.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/logos/logo-amplify.svg b/public/assets/logos/logo-amplify.svg new file mode 100644 index 000000000000..11f72ee4bc97 --- /dev/null +++ b/public/assets/logos/logo-amplify.svg @@ -0,0 +1,15 @@ + + + + Fill-1 + Created with Sketch. + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/logos/logo-auth0.svg b/public/assets/logos/logo-auth0.svg new file mode 100644 index 000000000000..9bf44793fbf1 --- /dev/null +++ b/public/assets/logos/logo-auth0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/logos/logo-figma.svg b/public/assets/logos/logo-figma.svg new file mode 100644 index 000000000000..d8fac143157b --- /dev/null +++ b/public/assets/logos/logo-figma.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/logos/logo-firebase.svg b/public/assets/logos/logo-firebase.svg new file mode 100644 index 000000000000..bd2ee11b4e5b --- /dev/null +++ b/public/assets/logos/logo-firebase.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/logos/logo-jwt.svg b/public/assets/logos/logo-jwt.svg new file mode 100644 index 000000000000..4afa1fb51be1 --- /dev/null +++ b/public/assets/logos/logo-jwt.svg @@ -0,0 +1,27 @@ + + + + Group + Created with Sketch. + + + + + \ No newline at end of file diff --git a/public/assets/logos/logo-react.svg b/public/assets/logos/logo-react.svg new file mode 100644 index 000000000000..102ece55ec9a --- /dev/null +++ b/public/assets/logos/logo-react.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/logos/logo-typescript.svg b/public/assets/logos/logo-typescript.svg new file mode 100644 index 000000000000..341117d0f9fe --- /dev/null +++ b/public/assets/logos/logo-typescript.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/pages-dropdown.png b/public/assets/pages-dropdown.png new file mode 100644 index 0000000000000000000000000000000000000000..935cb9f64290188d2c668b22b52d0bd47cc7f78d GIT binary patch literal 90220 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

2vnS$f8IJ!a_p>Z$H48II$d&z(?;D67 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 z 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 literal 0 HcmV?d00001 diff --git a/public/assets/products/product-1.png b/public/assets/products/product-1.png new file mode 100644 index 0000000000000000000000000000000000000000..9fd7f5c224ebf4b729584e5e050a765f2a96de28 GIT binary patch literal 32797 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 literal 0 HcmV?d00001 diff --git a/public/assets/products/product-4.png b/public/assets/products/product-4.png new file mode 100644 index 0000000000000000000000000000000000000000..badf6ea82b67aa9ad7285af5a6200f6b79910e90 GIT binary patch literal 31555 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 Hu0mjfp2jcU literal 0 HcmV?d00001 diff --git a/public/assets/products/product-6.png b/public/assets/products/product-6.png new file mode 100644 index 0000000000000000000000000000000000000000..f29d24e53012023d385a68ad159eaed262d9b2e8 GIT binary patch literal 37519 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≈Vbpz={5#Sa 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 JPDHLkV1f}H?ot2% literal 0 HcmV?d00001 diff --git a/public/assets/products/product-9.png b/public/assets/products/product-9.png new file mode 100644 index 0000000000000000000000000000000000000000..7c8f645cb260ceff20d7ed31dc8087acaceb423a GIT binary patch literal 39272 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 literal 0 HcmV?d00001 diff --git a/public/assets/support-adrian.png b/public/assets/support-adrian.png new file mode 100644 index 0000000000000000000000000000000000000000..b724710b75e906035770c73b3e835002b39d111a GIT binary patch literal 204254 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%0DFzrQjUL3K}-Os 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 literal 0 HcmV?d00001 diff --git a/public/assets/support-alexandru.png b/public/assets/support-alexandru.png new file mode 100644 index 0000000000000000000000000000000000000000..5f3d5a40f1a7cb5821e7968fa31d091e92c8e20d GIT binary patch literal 206854 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%0Dx@5 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 z zRxhj>b#GAZ6_t}i%E~}Y3!<%j*Njan%Yxag?VM3xiv-k?;8PN0a$csWv`~OLk4d@? zyM8CigK2pht)MzUES1wbGFHp3V!8M-A;+pk~#TnD>U}|^U0BfDV+I0f!O^1eWt(|eq znm{Tn3s`S!u1q-9lyX*5R2u}=*5_Yg`?FtSacc=9yu$aE+(ZlQO;v;kD)~iMg@1_3 z2#!=c4Kb9@sV873nYD6!lK&B@szHLPS2KHQr>z;lbbqr4TQ7gSeW_=txO}O&d`+c# zFYQ`a(g}1>F?DNs46Rv5v=_PvD-~-hWCJy7eOIr5l^_eKk_9O%UAe3)l4fM4bJWd| zFj2?Hlw&4QuB8;?f}2#8q`uaHr5(kzYN}H7*kMBH5W1uHn@abN$O9$;KcJpRgw?S6 z9T8Yls=vyTJ@BDTAP5tc-*U$g)!9I_Mk%plW|>b7m1lj_G1|iu=%(^)OgxXG=pdwq zok#rLGf22|1{qXY`A;vQEdDyGl5V0d?JkDOqv2>y!#ct9yx$2d+QOH^w1EQFa0Nra zD#MF@C$M^{ZZx~tqe4=rsxm6es?*x+$S`XO6-Gg|E0@Kfz1wNavqtB-L!-b1oHnN# zbH2vdNZCr+&TeZqaz}R0*hEXgt@C)j)ml!p(3osGPK*{tpgr{lN+ZrA{iZiTbr^}4 z_92;(BxQB!LnK`yur9qvSpCdWOH^1Hj5NY4o%S!)Si+yt0)9vfC`(9dNVw%(v&t0; z?(Rduz5OT(Ib@i$iGQg^Tupf;N_oIy$LKTSi#d@Jnb$Ch2QEE+~ zkF#{;IAP_38J#+vVrS)zF04y$|9&%3Vf-YblYVM z395YEch<6k1zLV1SgDZotbx{Q@p-H;7V^|`#urNj$_mxlVtxRhd)|~ns3b!7>ps~; zRnlu2&ob}Vf@lG4Ml*|it`yaxmg*=$FK8-F!spEt3RaB5^O!dET0w9KN(9wPMG)1M z>bk6|c>}outDbA2EC@5DL9iDoE@7(h66T67Vy5^SrW)fg)K!DF9s;YYp6ZIxQBPpe zGB(%963$^{V-+)dTUh?&Ba?LB)+Q9rIw=>hbX)aPn&Feu`u+@{D~IJ8H$Ug`$DhEl zFpBQBSTxYi)kk`wnpdLg@B?UgbO3b``)C1afv8%BDJxYus|wm_{zqi>`qR#s9#hI2 zX+iN2V?didIAg$+F{lsKX<8;Ks>BoMB&<4Br5qo}T;rI?OTop~B1rT0|9pgv=oC#-;F6c&Ls%;)L30++FuNykw`o1y;T zO;Ja!4LAAkRzGZ{FKmo&)C20V5+KXKcnLM zF*1XGOk4Oq3U2O4$-RS&eYAleqKtqti=3&hs>2wxg4G07Rp=oDt-AZPfcGt6b*dnk z=htxDQGRDfO^J(^TS-}&Wj2JBgWtD97sO0K%Nt8MnicdhppwE`qy=0dVAcpD11zbk ze8Q{H59>u|sjz$vsMZK93ucxTd=sXaG{7u^UMdbSu~6Xm23WF_?^;G<8wIj_-A{no zlphoD1Tun3Amd|;1knORz*;QUF+o^#&UA#Ba)GK$3#MJr3B)X8u_Ta+D$qP%xh`2q zV}kLW`VU`N&EaDvq{EOjxX&cL0I(|b}Ig%foimO)S$IpQI7@#tmQc>tQE|@ z*v87IADbN3*5?+m6yNECWy%q({_U!%a+NTcq`FgCnV<#Sc<~%_zVvw=s9CG3r{wokIw1NvY%Rqshvm!{b|)x|iI;JhMg zwfuyjL^zG7X;T0ddwMZEskXd$)uiN4RcA;~j1pSIjQ%7-F;1)T51PW!z8Km--WGrc z6D)N#YT)LLIi9>rT8YoA>tu$vftj9bI#6nimm;%@Rt2gG%|>b3Jko==kD#4awlk4` z*JxklKJ-Hx!Ig3U95Si8Y)^t|q`6Piyt!UQNAh08qBBq^90h?3rp#14Yjim9+lLqD)Kk|3Ze39ZV|{X9NMSRF7?6Doyu5KX-B zYNpvLThJ0KUW8Jqn5ni^Tc>h`Szh$!On75~7s90+Yc|m2tMboaRdC{uU-7KipW|5q zNsv}j{2UXls*+nc zwkVZXWWh=^ky2|)*2_)`Vl(R6n@hmaNlkN{p-54`F7@r2uegbY?s(XH3NX@BgU+rx z)HYV(2Yt&90&CR(Yl#X=z>>n!+CPEn-LTdJzU}31I*e-ePq{0TSpVGQtJYs_Vs@ku zeFaz0N*hx{xm^B;D&dhksvo;kX&pgZqBmi6)-=hRDz-`wMzqa#<{1p9)8^6c4X2zo zGkn_JR)86$l^RbKM7&K8sR3HE9+d;c(=HK4Dhp8lK;;QNF`8{tI}aXHm00Bm$4nx7 zh}LdcB@5}NFqVE26I54InSQ1@n(3KMSV=97CVQ9|OVyRr(}cEK(!XIc&FWh;mZ}m2 zJy(j&9UU>UgNHB@tHx~Z7)$W9c0WlVeAK9q?=?Xnx`3rCtCXBzC}8!+9K?WtCD0LA z%9&|1&GIl$!rlWlj}IG_S{LDFHnnJv)mG=;sEri3{E>eDEYcsGLt0n>avlevGWiaA zinPWs6>I8u)n9-elW;FKg`?ZNlI`>tV}}ZBn~yywte$rgZnAy^)H5m}^~YLmN@Jv( zaZP|BoK^^=CBkR9A>E8i8tc;u9*t?{c%d#Gi;Vf&6gbq;R8f_H`Kmm56uZdD0<|FglldD)BA|^|0$x*{shtfe{FyjbK$2{SU;h{qOxM71pUY) z(FG`3Kqb(1oazKt%4J!?_e?p1Hjc=-y$`nAR`*bKWGK0Nkf5>}^p%Dj;KgCTY0f8L zRfSrhs&*#aYr+nrIb7Ws4x&4f-&La3&rFjw_KcIp@;P_`GN8($vdZ?cEFeL(qH+bJ ztWFy1XX>qNvUda(0kT108E8pS6%l5I7SxthzTjF<=mL~;HqZsD!shHMGFBL`bbtU9FT-X_ZKA z(Q)l6B*XB4D~vi&rvn= zDcG}4P)Qv#74m)2`w6W>Cf_xvd7kDy~pps;;xhei(?Vq+94Ih%}`Ri)~q0@6E>sW0O~}=M34!jUL^XhxIP2 z9nC6j*(&Xsx{xkW38`hWHnC8fWQUFks5wG#h9H{d{c5i~Ta|?A%0#nKg|$(TNd~8Df;7g)0S`>}p{77_XJm9%<6}3;!(vEr1uF>kz)BvC1)nIceu=_jUC!OB_5>RB~c0+j()kY@hgH){uTRM{?A-8pEY z`0im;XxE#NLnf;3^TJAXC19!Veg!RJ&Ha657O>G&uxpXCa-zDpxLJx>ikzU*cRNW? zIWh&TW3+q6u_7hKShWdQvVP7|g**#b>Swh`#k86))#PhnwO)MIQdor6it4abM5^{O zrp3%zlV=s^EYP?T?owA)?sbl;%>^unY@wjXQ2uL;@L4ZCk2OWfc>}w7)p=<~QMS_9 zMdh-j#{Pe<-t)Jrbj$XxFK>6Bb95+CDnu2c5C#MYFmjTk8~}?{AgDkF0S04iY=Uzn zRu!QFMFs;VXOlyPbG!TW?Y`ajO80+y-tilAZBu<*rv8?W;+n z0w)+2;Pp^I1YkWKs1=CS7`PlVx)zaEHGr2Gl^%Cj;UywJKy+1rd%YcR7cFlDU;?Qd zbno3;kwyS6T=Q;kQx`35dH}@wG&8jF*p*IwzFINR7*90m66(Qj;ObNhhK#vNrIxTjEhY8c>+^AE9LnVc~3nqJV36fY&w3CYnRDx-Q0awQ-tQRi4AZ=(`R`%?(dY z3&pGS+>W%h85Y`=z~=y~MPO@y471~~)o%TKojR#$cXf|%kN z>KZpkIC)Xb>~a%H0Wn5>hMxttht|(X9V_VzFP8Pyv~=(*F;<1xN7u%{&SM+$)1i&| zX=u~@)Vr=AwSQHd+Ex{&R)5BA2Thl|` zc2A+(-EW!=M7ITUw+=SBH@t^Y48@GYk;9GYn!qWh?(9rg`y0~L-UfrvmF~@HxO+>w zs>^JzbZ<%*J2s?q?Q1=-;`=?T(($HcX>hZc)Y|gYv3hPguxv`&BbL-y{tszeiB@@l z6kyd*`BByutND%z0~P*#iLYu>IkNmO=OoHqffXTO2n^gc zh07f?=)L`{QkUBRSlkBSz?`0R>v9+SEDpv6OG2kI1Ji!QvRI>lVLwbu&+A3RFB{7= zdSAN!#30CJfU`=EuT7)Rhg~f*%JZQ8w1wM zfB$y_5rZbiz-o+PQU53462r3fAqQIj>p#=;U*4t%!~N-US6%v{377gzF{-@u9bwCs z*`C3MFX~F0LciAHbiM`a!90uQ7XS==NV{l^7o9yhfMHPXf{ST>W9bi$ z;4biE6gh7AA2&_5NN>Q}#dz|l@&}lIXqcONS2F-%avE4QCH1eO>*b_0n3ahzVyf@U z8EN3_nW_J)Sz=_fQvaISsr%~!F|Tp~#Detgu9fMhy=&5?-i_(9La^cf%^tLRZ9w4C zw?(&Qt9Ns{(6uR@>)5QNZTtFkwtY=H*SR*G>0qr-XF4~gpW8R2(+4&Ph}Nbb+P+Lb zwysJ)wya2}1W3nsEJ??K_eOJ1YKB>o2LHV!RmDxU{2Mp`TdQuDS^d`#u#2u_oA4g&8y!mjzY|`&za3!mgOi$md$DlXHJN1C6|bR5=yS!qz&kLi0{~dQGk;G7 zGU!pyx-+mspF*=zCZ8W zzyu4@AFGAXZ>~pvU)hD2F2;nNLW>Rxl-KawVX>oO*cB~|Ew&55^c+CykBdJl+8Tm7 z89wX_7ZfUBZMe`7Bb)%OD*``S;ojp6ybnQkp54u6SS<|HgrQ+L3=NF#4_BJ_>}q`f6$#_#!X$E2QdOo#$~={W{Qu{Ak?>^D)p|fOkHbBQ^%L{Q|A}+Ql}VG=ju7BedSyM!(4&WjMP*=)qbg+ zwVx@ho0J;Rro@~G^BM$DjRLKm09Vb2VpAUq#KvXo!_-(qmhTgVcb_;5h;uzxYSUtU z3Q_$dX8>uq*C*E0D{$&qGRdVj9b#{+&SikTKxy@4uijORmS=dxXJ%NiD!^(0hPC?B zFo>?5oK9|-l76C(+19K*41-QBtk3odhm+6ky>k@0%}tL4ST3*8!nIDB4J9}u`0n#t5P1Xj-m7Mf+brA-D}k9FVZ zV66e`>A^(`-xj8a0-O7Ea_FajR*3Gm#IWdWLJOLEtd1JDuenKQR535~D;)C=utoIL zr3XU*)zb9j@RIcG$g=eG&{FMtu?2nC5?+1wSPbixi=P3kH~*EhHT(gv{%;0YTCl3u z|E2AJ{_phaU;fp@Mu&%%r!#wsJdXVojqkRitISQOcg#;`Jst~2MaRw%%h_HOSg_EP z3|KVB+r{YaXhD35%$yzM)b^3~2e4+@v`L{cx1HDJbGnT#pJxROEL`iC8*!b(QUEO2 zl)^lL(hV`Y5ghGJJSN(_FcXk)5P=)uA***)&%H+bVhie_T{#@gft3eZGI2@Z@x-`RpRgkW>5)#5fXSyRLEp!=L0E48$|B?<6 zLR$Bd*Y|T$-)ld!?>P8Y!nCGFO5OspF0ahffhf=ti1mM|tr(bnMLIyc#T&F_(|WcYL0w5Nm2`T{<=GSu!=X zEdDGtFPh};sJj=%Y7s~^FA7tqtq9eV1X7=*trZi}7Q(%X57RaQ*0##Oq-|AyP1~yh ztMS&UcGeIE#@4Hj) zv+HxdBPKM{bZ@f7b=WB^wO`kVR@0|Frg9(r@)KJbj&C43fW1?;HQO>oPM)AMDBTtA z!>abq7L%Hjo+En=RMVP-h)=K zD}zyHSHPVEUeD#iZv=`_2TH~>Df_%*1>u^sSFR-lu+XHU zUsX)X$pIEZ{5zNymInG%{p-J_$4^Jn@V5#V+Dg*TyYiiGCu4V7;mesF`8vR8M8}%v z8GYvkK6sVPddwi^nEk*gF6`vKXp~2Y1lXVr!EUYqSOzUh9-`0~H}O@w&vB~*UNZ!C z6r0Y}KB9)pV5NOy<{Jj65Z3jY02V+9Q-fu(r54b_Iw4_W46?k|lnt{)*P_G%umZT8 zO$>oP$G}1;CuATyI8}g`=XG^gur!C1Z8|Hr(Wzms3tp)uyScB>h1O?bj9bx2Xivj_ zFsI_6pX=>eeLr-YpnWs7mc0U`{VOJ=POa|GKQ-Ix(Sh2lFbFZZ7vtkGMOc1b4^cDlBZ!@rbns#ZyrnXgml(tlSoVJvGoHmt>PaDg|>AC=`a$IEosuTiN zi**UCb_j?JO0}{7T?-}}teWs%@fhwCvuayRaq?%WL!T88Wxy#KRmU5WC6R(YxwCj&V$zw0c1s0!%Vy1zWEXsA)FR$@Cx=DRPpg-u z>ogS5KHSB0NMRpkJ7Q>0#OPiCR)_1;eX@_RHa-4kdqu9j3=AuZpL1D4_jLaQ!vd%x zL-=3mSDfs>zf1QYUP)I^ZcZ0;<~Sn;^^*?zpD2S7Se@MgQ(_F(JU6&QOef^K3=?4q zh!8CSE0_d;1F&$J&IN$Vb!P)JrUVc*T=gq8U8pvXQm_GCL z8q=&AJ;ZymXTDkGj}6n(kFYEO)^G!Yz1A+o zds^#Gk3L=)UmK`1%uhXEO-_53eJu7fK?mvt4@`hzz@mCRLr*}Z+q#zP{v{u!j-`5R z{l}?Y3}~N1tbJlA`xZ}dW^O<2RTNeosGn$%vT&_Xt5qPfM{H-0fTUHx)mk^s0(le0 zO|hazg>5@33Ey;Gk3k%7638?PymnN7-uK zD2BFc0naA{{M76!bS_>?;h#XZP0VSpfEnSuT_8->4|YX&1&Wqw5!0^AUCWtxGtJ@P zelmmt6`Uo(*0=%;l5b;p6CioSB;x! zkgPq-4GeJ|6DZ*y-4z~mW=ofE3$#Y)XXVf=x`U!WA(lU(xVa-=U{#Qwi%~rnXg#;1 zod$ha5zwT9CEe}B&VUb#-d1Q?bS5n}D25jH9;kvLQMOZ*fmNx6c62PZW>{iVTz=ex z@D4BrIC7hT&BA^F@{p2Bi5vKgKc-U zr|~@LtrzevO!v^J$O1B{hcFUmCZKwvuy6FxGF@Jx@DI>ZcsaxXjOe>{gINq6RiR-4 zSj_P=VExSwCECW`6R@etdn0&h{1n^5c3DdAB#5nI9Xc6{Z zHo#?|hp;a81wh5VW*DH@KLWO0$UGjPbNDyQfE56y1>3T9BAD2<-RN8N-R5@e3^T_7 zi`&es@MZ1Jil4C{P+nvG3$Rich_l_`tj{L^y`r%2Mymj8KLV}72CWAeR(1A1BSv*{ z+q86IYhL<(i@uv}dOdxX+<;9!`_B!O7g276RRgVWUOKpbnhxR#ZtvT!gRgt}Bs;ge zbh%4l#zD#gu=Xz=Z)f)bfJ%V1Uklc>uby@*u&9p>Vy$%)2!E)s>q7z4hiO;!UsF@H zK&nQ!)%+#3Xzj*jj>c3OmV@mTe-S{97szCQC7?ktZ>SFTw4)}%!mZVxrY&Mi+X176 z0aUR*(*nHoJU}YT47TVodlm_p^_YE2r+Bgr!uei-?>>FL{rarzKq@QM=_wAK$(JLP8w(8qBFv=#kHf$S4Pja^x5upRaKV!~ zBrLVYl|9axL_)&8N?pgwAdu}2qv9(q(~IBf@zt`V$#G44xmR1~IRl?xZj|ZC@}cZPVq31qv4hMmsW% z3qS*~n%uJr@R=fjBGj9b+Uh?uaJAOcF*G`W?h`<>+I1PN%@b~DwkP0fUkXSGxB+ji z-eoYUj|5g9rJ>J1GFTm6Js}B)z-bRJ+MYt2blJw>z?{kDZqMgJ6(D9$PN4+|3840 z8-Ds5eX#!i&*|R1v+2eUJJXHB%hSj}eY)C76TR|uPVDN8Sc<34&|7Lp6cy8B3U3sB zp3V`b>3};YrocKs#;!0&vIVR{ml`oxiP6BetTWL=im^z9T)4jhhZ)|-xgG2a`vSr` z_6N#b5arR704=tJYgi$|zvZ=y#}U#+wh$2W5DCDKjG{A#nO@~JdknC~7#1O6CddPz z4iR@pHZiBYA;ueQwG3E3+WqT0M$OD@6M&1u(8}=wtdG+-YbK>{75;s@ZkoVqZaUpipc8ApexrPyh$6WHtHQ!UJ8O@Qr{e;J z%3@Gh2E5!kq0Ai>C{li*ga0)Efo5a?!V?wOUurokm=o49hl=4m7I=-?EK2x>uj+kv z55_bKAi;2KJ&14*0Lo?gaJk>_=Jf!QGKYD&5YI-`EHr#-=2YhAJ|8Gculuns#N!AN zAK{o6Sl!WkzAbRO+Y@ei%6^{c_7?-y>D6GB_EDwxP~{L6!z!;!!F7ODxZ?p`7#X04 zNDpAWJhDj4YVjDW!me;f;C2TVH$a_Xbdb2Iu=kqS)m4D%00{?yS8JI<#b!{`d6s@#S>=EU>6*;Fe`;c=NrQ#<#HE?d;vrj(|1IJyIgN6G%6ShSvzY&P1N$u z@Rog8pE6Se#3CE$5RmNJ7+^()ao8{BKUtr$Rwlq8OcW!!Oh{;BXlPmy5{B?@ zhkM4byq`>C%K=sntoTf}I%J>oLL>dHLbJOr@FUdxBN&c>7T?b{hHuVFX9@eZQe&9s z+Cl&eAm)T{ZacOPh2Gm|rysXWcVohzw53ev#P))8c;no(f90gqykuP3vv{0X)Oc%G zgnT%}DGuJvTKKVzmawZ<+~S0Rc%L#h#o8{AYQT0-9YDr?gowMU0W`Mb3|u?7zZORI zSBH_XwLJ?ybUT+_^r#ZpAeJ{GpbMN@mP{2m<)vmajEg6y=6b?I0h0i<1!uapdl%EA zO8cmzaCu^cei%OiD>20bivXWMV85f|0+%}l$h`t*R@btR6dHe&`UP48x<0g0p`So% zXq7-~^~ZLvA77uBPHv*!G*2P6exDurV(j$j=l8_|L&t?ovviULuho1pjY0txt&1^l zMpHccr{jr&?Y!!t%tinp=5kLUg4-M*pzP+gKmpB)Y#?D9z++QqPcR^~BUlXL_*gbC z3-cUWc2me4;N!3jor}I$6i1Ws!_bMw)C1sU-mJb7gOWqR-e6Y%)JuWY8-dp=`?9o8 zhm2xNfK*>ax}*Ky?SXM+p(gK-{rNpbxR_&JPkOi>AoZA)0hZaK!0oAk>6rlP#UTOK zLAsXG0V0Z_Z)zX+^w)+G6 z|N39)xBvRj^!A_smPQ|(Nq0}IcL+Gr9n)X09jMe!O4G2L}x>b8rTDh3PZ8cw*wjDSo{PYXCKTfDF3S%Hin2!{U71vjPO=b-v?-+Up0kxWhTX+wK)e^nQ;`r$})wN@$ei2 zD$aPyGzbr~&&YQWp9O$Mbf05ae2%H{SXkAF!0L|9+7v-wZw9n=@NAoFz;d&}t+?l> z2*~NTCEygpy4*0=4dPfo>tLfJ#rGShxPjca8>lXrmyT}EPlM}crfvpmz~8cr&BMY8ca>)3!?1pA-)MDOgvHK&pn?J-Q!!r0qvzfCZp6>UO|s zw?e`u0T%{NS`oJq!mSWv`aIeW?_0*?8UfbgDGKqXiam*4*&Iq+nDKV5yYD(|%Kg^` zPD{iTNg4=z32!?VeV7jDeeYisV7y<~4OCjapNnaI9st(&`6mJ@GJ^syg@6aY`Xn7$ z`>9wJgH2hHmA%p!%!>blf1fe1!oi+zu%g@NgU-yQ-X8UREQ*KSk1ET|!B!rKG2It? zBFw_v$-y2Bt0*+6j0F*jQKbA-VD)^E3>*tPLD&s!F@QY@n5<>dWmJsD8dEOR6kxs3 zZ7&5P&w5}s09=&%Ja^a!D8k?XAH5IV_HLjez0v+(nPCNRj%xc%x4#;w)Dk%M!K{Lz zy~x;EXk~g0y*}f{+$F-ATa^1e5!gM}daBRikP;@=OL6?x7(vdZ@)8N;0?EY>Q05sRrHh{3nNiJFEZ6fYn(2r|6UbfC;d6y9k*AW3iwmh~Sgl2(O)S zS%Bqo20471I<#o*5^Z0?Tg7S;n{r1QLdh`|r$p-)tF$s(13afemDTR3!#?hbv9GD4A1fiQSPz=qC z2e4v=u+2V3tzWSKim)4uW`H$H*^Rwi6=4j`%6VXQuk@T3eP~SO5&HE8tAky=&}%#w zAiWaX0-)XqjNSlP1}Bz)v0slHict|VYWo;ab5AVFbjs8HUVK-yrlH80LTKs@74mg3^rAFfLk}0pIJ|yR z>RLTDwXewYWbJQs5*}_T&4q*ltT(UH!@vEOp8Z`6>p%WIJ=f(sw@#*!6JMp<1Ee9T z?Wr@v8tJG`SKCTmnCw9ejCar2(G`Ap!l9fvP62VIWIO#? z8bdG-78bzf_pm!0(*U3khBkn5b~-P>`e}P!`hjfW#;FnRZ4*X#^#)*XyDpIICQ7mer$HC(h>$28{S4^uu5(u<`Aq3?4=y2@5_T3T#ywOQ^k!}u^>GpwQ;YqRmnuop?`(83mC)Ek*+l_eO zXxYr;0QB=n-LkUj8(xj93qk7B134f;&Rv+&Y|sC1EM!N^?Sj@(3q?% zIkgO6Q9L};f;>h~gOLCRuwt8IR0b#mSu9-10M;d%>xuoaU`yym02bvHw^|r#8fR6& zY7DUUM3~4vup?a3incWK^#u#41lUZs8OHr=9gHS^p|8Q@H~9v%G!UwgWz5T&!-b9sv;`LngCx`9}h$5A}Lv zG66FNMc@q+KrQAzg@a2K{w*N{44}eS)@jX3pr^|{+V-u$96DJ{bB4YH!ecV8R9}#> zp6Jaw5|2nG5|mS>-}Mz-liOW(w1NcRvW7$i1b|hq}?M74GQjS7gKiY+}Ausjz-dd(Vwb(IRx0;t~VzF&r_1V|NTQV8fTh61o)TinlcUTgaj zz!E^c8>~!kd93#La;RFX#taK~^$ZiKS(QFJU^a-juGUu}i0*wf?Mmnq06-H|{7pC)A87LQN2=_TQ0sx1mb{HnFV4gI?3Qts6 z7+_X8lPLZyx@rbM!Jg2W96stYE^|+!A)MlRCVbOv;er6-f&k$XfaPuv^USW^Gpn#D z09tO{qW5%8@9Cmj#!zJ+A~);`u)qiyg{%Qq*IE$X0V}2L;Egsh0Q1}s1q$2`scnnRQiEf4*SVrpI+uTS*Yx&~nBJ~}j<)ro+X&WP!; zbii$m9`!EvruUav*m=4;Z22sm+spt9g*zLjx|S2bI=XJU)-*8;x@RgpT1mYf$1?Xje42TZqT%&uO!G*Ripi;e1#D6w@tP?%fu7tnQ{X)({YYt3BlVcG+#ikdFS>MG zZRO;n6O}{qU{s8{ilL;;1}us$2t9xmnK(ke0Fx-83HI}(E9?WV#}m_{>%jv`bm+uj z(3)@S!XvRK+OxQOsI{O!^uY2y@kcRFfbI*y#9Vi1u{#9xXT9iEgm`FICH8WSb`^+~ z0fvNTVoF2h0-1{RPT+)I^;%%^7T^&u{W8S1atxGS9IQ%jwSGAWkm>Qd|M?)`Q)&Gx zC(1tu`~Wzu=hP7jfY`poWUBo?>JL2*(LD!PgoSi-Flc2OmqBh|fxC=;FQ(h8lj#vL z;OotdJ1eqD7Go@+&Avu?Ey7H_*AFf}zL&0MfOY5Xn{?;VgLLcX1L@k}s&u2b-T*by zQQ=OYjLjOsceSV3MayIc-)mQh=F{A$4!}ZhVqJ3+JQ!6j48)6+X--YFdxH5QHh0J`g~_@)YUy-?xp+(esYe+GkU02ZIa?P|;t5%6Jk z7*AndfHI$r1OWGuKF8}5Z0pi)tPA>{&{sU%6?;hZrvJ&Up2=#(AXsJ|Uf9Mo>6oi{ zN}zRg-6Z`1qCLt%g@uREZgicgE{DIG5{>D;gn3bxLMaP^HXf~UY41YX2LB};s0%@R zPaWC8Kc($8|CAcEXqMNawP(R!{J2(aTg0CBE){#yJ~|e&9dG8-u@vL#XJKN6K?!I= zgPLHisZ-1ez~VZf7QU)rSo?K2pof=bUC% z_3cJ6tBoXqqM)7=4M~q-PBvP@jB%sHMht31z+{kOW}iR?;r9*)ja$DIDMTv@U8t84 z@q~j>oQ#*s&GFErGVsEZ0K=kY5C#T|deM_miWP!z5AmfjsK_tv4I!0D~P=$Av4 z>DNPS1yWkC0Vn~L!@)rqTDe);D}m69enQ3!um(!a;GXNg7enY*=v4I8;_(rJJ{_dX zDCIwdqX9B7B=^)3VC8^^-dZ<0s?(u$Gu$qnh~=TezGq^mFimGdDc%;N4Dr6o`q*>r z-wf+IPWR`}(yb@=(zSDgY2?sKfz^_j@7Ipo6fXqZsx+LnFaB8v>1i^6jAln%$M-}C z*cg4zLm&^4oa|W?A&0dg2UyXGAy^bv2EwRdRayNYA)>|XSq7Nl7W`2$ifaVXTZ>6I z43N0Ghjt&7QUFvio+zfKs2YZJgETd4jL>lxOlg+=R)mu|>w-f<010NL%U7@(FrLYl zgAm-YAKXyLa6=*CwU(kp%Vuk5fNZ9Z5yIk-&J|UMg(04QhtSWN#PEM1>I2jOmcvqO zbF-Ww#e;=rMGM|DSVrjgC6Hn zmkzET=W$fWzMQJ9nAcad|DBWu+@S#An&421%o@z6M_|#p7>x?O>947&etc>Xu;A@# zs~@K@jZz-8qX-Y%#f&=EV1!j64AcbeDYYAr7@dB}6Qk2dd zPB~jwrohTG{ulwD4Ia7EUg+t`){;7DYFB7r@PP`GFtCJ}9RQPK zTCgEBDr^JMP>*^&!Z+4Stv86;dL9-B*jR2~4*eYd;W#g{rbQDz7#+;!WiJ|4nKO*^ z$$HXVASNTQ)MFp=_#S{SKoJJ@Ziuk2+&UGE>yZxjhg`;YHB=_RsxV;va;PS~JzSk$ zABHsvDEb99fNFm(dl=xyK3`|g$Gb(b^mCW)1Xw-B5@F4(B5ubh3t$aI*hs;2_^=iT zz?fNBq2Fn4>i=SzySLnCWLZb(asgVE-ahVT-@Gq0GuU0mutuIeNjDxnOxG_TOCv`& zrmMY+JvsT>{_=Dk!xn(0knpN5U)jqjt@-J+4mJap4wef$2>n8@vN*2LYm8x0M@LU7 z>sMhV2yq;+%GK(T#pB=&fXdbHg^eKdJZa&NA_TlT)*TexfsP3QTJOWZS?R3y#TL+_ zKzal%3=y4>5`jJgGXO9w26J43ahFkF{JFW!WJEC*6AA`E{jAWB zep!)<&of}1*{a*zI8c|jplRuGVi-RuH2iVHXX(2&9}B3)r=wqdl8&tWBpv*GVj2`M z^?i;=EdUV+buZIEEuP7aa?L<*=nE=aFyHZP9fVUz@MkzAC^4J2^Uy%fEC5&B|1nLWd%?v z4C!RX9~}_lz@Z5q)&ciW&%9C`q-5Y;=pZIUv-sTyP{6JzdZuj*MbCvHly_lUC^i5+ z6A-)>LwSqPjfEf!1#^HkcDa}Ek5G{|G=&!5bNZ9PgRCDKSTFn4{`(X*={=103#JUJ*3L7Nhgy*mhCRi@t#*Q8&M)TUpL)ulIw0<@kZtOL%7 z?7Uy?YlQ6x06~)T=oG<*d@Z2QQ>SU@5ObES=RG|OJZ0fqmR<{kqc?~+lF+dXKA|9 zz9?N4n?m@yCXk}v`gJj^YXYk)3WdXu>9JyB=eA51>zbTSuK!ekH6a~dl>yeW4^!W=zX~`6 zRss!HPqqzRX`F!TuVzO3myF8?&&+Bjz;*QUanEJ!I-aFTyWn zpO%;u;6*rzGak)~Ew78&(;(&$tt>Kp0F?j>=44BPSk%ibbVCS#du(BPbEM8;Ao|t2 zA%%vA1y%wrfa~p{YK4!8?g;2Gn-ViF7#^?ldJv%EGJ2TaGhyS9o&!J$w4M!RVO!RE z8K8Q?WnA%k53lsNTkWOkn+=f+8WFBg#^VHr1^W>0U-5nkHG6ek3yqDF1$B^k);_rO z;7%I8JCa7ucBN~BE7IltHR*C&WxCv2nugnowMxvguI(#z{O`V1c!0Fr4u)c5z=+hn zjg5a`R=a3`M~mU9cBzM#>b+meAz#L@Y@qak4S2z}0JAVx29RMfK;sfnv=r;W4zK{Q ztVLwZ2xBOr*+rO?fiZ-4GC+)n4{##$I5+%Ly8|R#k?&019Q$rOh6^7K;L}DckytjF zngsi2<4b82~iW3S-27rSGR%VKct2EJJyl1b{(} zeZ#cSyQp8BZf8H=fy;&{?ACYA_IyL02ez^CWZkL|JF~NBYSv;={?)0D4d)k z(3+f%DGWUJ#bmQBJHJ%7uM^6>LiE$=)b#AMg8IXl+o-Y8nyF1zLNx4};aRXkXm9dTQ#{>RC0#!%K&B z20plk`IT%LypflVtecjOZJ3e1-#p97haVO8QKEE4|HE_EsmKOL);Ri=p-0Y%p6kA@ z|Bn9ClzH6kBpuJ0y*QRNsqi{QRt}AcqGSLIy@QhLp9IynGXp(VZP!|++2-u8#p z0Jej8{u&#Cfa({8cfTL4NxvMe7DxbC0GF;Gt55F$ErHV;XZ>`$9{=uei0y9$aBs!D zFq0zC1JEp(&6@#yS>;(6S!rDijf)z|mjKd1MD=QcPs}lnaR>{4!u=Y$~T)MMyZ;VVT*CUC3xxMG4a;tO+gY#=au|A>9JR`wD#w!QGmd zLoxvG%Eh!t%&)Yop~R0mjuw}8u;!oA%#L%nzw1) zXVJ%-j-sBHlJ5q6fFLH<04Oqr)DenNp^3H3FzdPvNV0F+8|KD1b6%4XW7s6T0>Jr9 zXkYH6N_BwPE!o#$F|eylq{f@Y09k?6Pn)I~w9LMkBD5(_papPEODEP%O~)Cn{?){E zj3xHQpx-B-A@BHg(A6*Qs8| z*5jj^YSZVb&6s3o3xqjw<{P9qF~x8YPENVS?;hne=#KOqyS-oG;C`kWmpT-D)K%yL z=EpD}vmX3Xgk>7XvL zaQ(cO=NE-em1#~6?FbLa0@}kAJ}8HVfTKdaH~6Bc;nR94@PM&dSO=&qj>CK~d%}1G zI*955A=aBCfL3*SeW+GIRcD6vTDRHmkom624%%}iK=MMbA`Bcru*X;`FcYZ!cDUO6 z1hCMw-dN`na}pRnJ&2&bFwsJX_RJJUKV`gEXNA6FfmKJHLiYlld}tgnKhvY=Sc+Rd zGq3jZ`2gk8^hDqJLp$lSkPzV=fY)O_xHxh(UHW+_UF=_#E_T+Wi_``x9J<_EBuZVB zuEDSvztxPR9l9OGw=~Jaj*zS6yUa+doOb0-otQ>-o7lwlJ+OsfN`zv;d?F;H3R86CW3WEh!?(@A^}#hzy$yc=462$&;tCj45I(IzMl~EJz$|5 zMFBfqL()e3-GzKH+)q97A%VI0T(>b1C}2gRZU6Xt(m0tiPpsQ?biY;o&An~{aN}};TH|;j;@{R>>^XT zhcKb80YIj?9dnNWr&EB|!FJ_jF)!LRNB^z9mCW~}so=!asnxymv()=hqYUc~PSmOy@O1d2cW% zvT%ssuL#R{PM26gceNeml;a?jn>it()3L$&RdFU%W4hFH2TH690f6Df0=P=;wQ~1R zz$o)Xg;rD~aKM#L-5*&zx+K7U2-Wod2LHPWG#47egnn}t5bu-#Nul3sF{_tiUaybV zT4;YO@L~BmfRlY&=yW6qA`Apb-Vyc*Tz&_z^cdD#z3$t7jHO{Uc*2&R?|dJW4B0>{ zz`_c3pgNu0UYHKALlZ8yT_IN=$>*lr=T{h?nJCPa@1i8?8M|Yy;^WM!0eF3I>C!jp zlGxSRj@op-y*!;4ySkuo3xNYy+98$Lc7RKwP8Q7sa(sK8`>8k7@E@U41i*P^ysDqE`NH3eEVV~muvmnV1U|> zz&ijd#yK(833f$D20eAs_{i1&~I$ zP=v&M7wBGd!VUtnWhxLw=w+W5i0&H!1_T4{K*ZU zrIYKXq!a7eP8QpWbzC6!?FMQQr)y0UqhbExq|7FvFmgSk#lkkg&&Ee}_hD^_g=-x^5?~7C-s-*B(0PzHEoBDBCt_@{E5bsU z76&_w3IEg^g?7IIE-)wjRyn{DK)p7QRi}4HYRt4?e*oSad$GcwWzCA)@M&ouVTq{l z{(iByOW>GU79RD{2MdE|wX=bg77@z9u!8S73kW=8E$h?^1O#{ene7-#Y&pa`Su$V>bXiiH0o?ytZR8A)RHZ;{^o?n;{5yPq9 zivbUrFiv}71a87XJWo9UO`#5A4h}MNA*{dZD^9-%7=F>g{D!a$(cEAcLNEow02ZDs z7aXHY^-y9Hz%>dRLaZK$EewW!?uhDypRf&p1CVg|NSKF@>JTpTQopuKW6Vr4`v5?d z3GV=afhGeivVAzy---Rah6yQbLm&sBLigf1(XT52q{M&~0(`ACEk5hp3~ZlenZ;iZ z1z@3pJrnDC*iRi{l-poGz)xm@T<`I22fBBanEE{ZXYr1abqu5GbJ%2WESN5#G?onX zK7W3{KRjTBiADbY0cW27!R5mn(&et&bV*F=qJRk(H%6}a`c-MVv^(GI3b3NDl|w^% zT)7S~^I$RfA?wl*eVejQoGd~#g!BxU0Fo$yfVIGsLL<5^rg2Gsx{HL4IY5G8<-i0V zl=cOX{I`$|X0?aVG7BZGWkiKNk0XqWkT6%016YZ@Q0ha7=uiT2J=4Jqi1@GGgGw~q z%R);S8KAb8P>u}WZ0l0t)tY67mAgDlF*Bg0HEfYxk2iw~P_omWaM^W|u&=0b^kvu} z-xom5_h&0eFsxWJY!ku$;NOE}$gcc!p^+BV{6^?m%x#?M>z5Tm#dtK>GQVlQGrkDc z=k?t4yA<~CDoAG=DY;_JbDikv9W)747^Z!}e16zA*TY+nZ&aAJ5jVL&O<;F&W1c6> z92avtA&~k3y-DHc$@SS~G&HfdQyT@0dhV%BlpoDVKfwxVM!0#p!q{o9g#@fH%u;$p zCY1S%);_cBF8;NU45CWmrcWd!Knh*o_W-*BofX<)Jh|FFtOi9sYZF$%hF%EBUg|#9 zbBo-OnTtWD;h}=z`~q|F!Cq+(R*c_@L8my`al=QuVKlB_4*(ZKB6!a0ehx}RdqT=! zYwnBXqG+;y@j7qJ#;^Z}mqUPFbqMW)H3G*vZJA5R{vteO z9{>#*!4sS3rc;}XJWJ6Qg}!K+gE5pg%kHsdtuG5h0di|qC9b7}^^#45d{JP3S_m!h1xhLeES_(M6ll)bo%CBWNBi)+}8*cx^U z{l;hYdvnlAB$ zFIGoe96GC>7n3`;C46MxZ=%~O8EB?;lUSgmN1Pa=Gc1MbWMgOBZo>HYM}&V2_1IS^ zW>usWq5R$b(cRP8zRvsrEHj(TCSb5C3J~FPSM*nRHV+0f5P*Sh1F$@z`zIk^M+};H z+6kkg(`dNe2?srih7b>p#()so&}&3=0gU}r*0>ac682c+)@$$>v@JqDJ$6)#>^ZM( zHkE};W+7!3pz(y^4Z})cZJCO4v%K4b$i^FgKWvStO!)mGvtY&n4Ug zG!2~A(#Ql>=rVq)%%U(z6Tce0W}Ti>ZIA)v*)Lu**wN*dqI7g!o{kp`xByjT`T!`p zQc(DO*XB?{>Eh7N_-;sYcpp56WCfK11#uGTqk&(?f^=q2S-PM%80EmqnKftXf(ebZWq{=SILJeI zHh}3iXXtVuV|xK3m9)^79707_&t9!es1L0t%%|v77+EjVgA3o6#cEhhgjfc(Z2x9l zS>_MG@)R5jl?_+`3XE>90qeTfHQp!J+psRoQphO4+M7*rMnfSH03drZ4xj}9XCTj?$*KgJsfQ%{NF_knNBB*HMMwA#TSL2~9Sfqq0ZokS zEOQ|Nt}T=dg~`>dh!9kdV?5cpZL@VBO$MjAo9ZbssUHMpbfh@FZK}O|G(4mQHhLSa za%cnX@DEu5W|ejDV7d_n@cfo^x45P6{nlRCuKpkHwO-)1(+v2ye;}q3Vdi|+LH~R) z;(Y=;ZRx=dyLznyi1n7R%s>|4W`@OqXy(8HMQ4Qa#FS;)5u2SL*5l3=XodA4N@yrd zrlf|h4R_k-yRSR!3s!@G4`>p4KGb9H>mYwfh(}1+8zMiz$$@H@dmkA|jGKgnSwAh9 z96~f9*Z`iZ>hv21P)cn8*z(Tfxv$JX zIjZM8L2rUl4Kag|8HLqiT6K2G|9ZIEY|P9GEz0|>(Dz%Mj;xvG(mm<|DYLN{PlpFI zzup*OPfewh94u@fgu(`4EDWVt*9%IHV85{9()7XEebwn~OG!G%8CQSiVFAQdX5|U6 zXi<8hnF-8Uk1Eb|bidRei#9M(Ml&Zn<5P|!hG5{r^&NG0FeE}L7>vCzUJp^W;oKHD+%vnvCJ@=hU{%55oK3Sn#lpNw_&_Pp%$RSOWe0Ok@?c@H z@9;?x8b*c@76`D~Vt_b~%>exhwuBdp(6JT3nr&OdU8eim!jNxf=l4Y@DS*2LV6_3% zQHuy8^y@i1o#k)_(B^x9EdX)=+;x~7mkC43T2hoN_HYyMA<6JZCfbV86~MyGN&*5W zzE~;Rn+{_1H`vB446pwFwC~*+@DoxSK((*TD#HB?;;?()J;~-Ky1C|bvtZM+-N_Xo zqnMaN>~q@yw3!)D#rDFE7))YTMlB>6KJK^X89JyX1@}P%m;fqt4^D<*aq-EpDP!=o z(1tamLvq5?fAt1Q5e7i)FN|q4?fL2P0kJ7vM(8yIqKB2h>b8EbJD$EgKY6?sj4Bh= zY5PKG=Wv7r6;ME+04uyv?<`n{6C5%Ao({OX+9!2^qrI^n zcNZAY+z(5SduZ^97BMhAGG%6bfR%v^5DI3-eSjGqO5O7cuuus3+mUL64IVKp0(i3s z?*ODxffj&;1p@}evPf^X6b#Gy7K_Xyx|JRS`+F*&dUlWykQzW3S#5eJzKDH`3;4rpulj0`_D@;TTD65Dkx&#rfWtnHc6=Ks}fhJ~rD!tS^>0 zyhbzp;B0GE`nkCzoo_D6083|JA*2Coe@VKq8_&-S8Gzf!Dv|!1Fk~q90>o~*vLv!MB*DT~CxQ6+Z z#h==lLu>?D=I?pGr*Pn-qj_aQvzrR)H@qb##eh~=-#vT6NE|Re9flfyFMMEO zs|b;wtS9dN8+)=U0tD?Q!e;$G3O8?3RnQzdAs~N~-y8jGS4aeBw@3EaY>Zx0xkU>c z#Ph8=P$SHn9qok3_GN9Xoh)gj*H`wNWxuO+N$$&J2LFz*N=(1@;qe{M^-1HQzN5zi zqNglfe%8*szhZ}NPjnkoY97&xUEpQyiCKVM1=g}SIGo*c!E-D+D`0}8u8>y1m?GV8 zo$$tCUb!_Wn?wbAV;YV_ni$pf2%rL7%p}mo;<3(B5+e15@5sX-oB$~DtU@lMTM;4x zWCk%9AIysbxHqf}IMxZ{Vuh!PK2|Q#5txt_q}>b|wqF4)K#_0|_6F;sTqgr8G%i4o z=b@v$7@{o<9Yg~hZ3NAEqZCTgBRT_)GzNpBnFJrd%K1H2BSuw+Z~C3i)L3@2@zc;Y_&iOn!k8fLq*?3EpKte9nO3g*O# zE>^|>eL~?kq8ehlPiD^c+GAB1+N2XJ!5r^pBjVAsM)f^D)8`%40>B<>JwCu?rZML` zM0^S`7-(>?!&(ra%bc}yE8-ponBv^7aD5@QhBT{t*vZfZ>JAI+=b||JUPpeqD^~Xi z0L+;}`*6oovQrdc9ie3gI$Sn$>%(UhWjt=O*BjYGcX!Y}tepu|eg${{E0`eq74Oqd z^YZljAohg_<19>fqXnV6Wq>tAcLn-d;hicq10);wb|AWp+P_6Ifya_vJVb^uYt}cw zh%dey#C^a7&i$*HZNaUA0UOSYnFa%cacdY>c7Lu*0S85Hu3rFF zbOCh>jUYqYbW6oY<7F)Wqg4umPRv9U;Q@j6#fjFEF*=x5yKGcb5VSh)r-O^)k?xV;y zfXm=TXb7v);q{A6+`vi<_Z)SEBFal0yO8c05r`rH4fHVs=@f$tVekcQi zC9%bK@&;T+i0_Qef=y+k;uZcGuowfMg&43akH;cQ2sj{M_cQ6G z*rVm6CwrNIsZ76TnL}|HFVkT{SK&Y^Fj(>U`vNM2cx)2^R$&!@NdZ8B4UTyhz+~fS zKg=q;TF#QedI%@`qClF?4!;UGeih^S9l+sneR#wGt1??DU~#_>az8#PECmtPx`&mG zr+RHPsY7U40g_|R_za{F+6f(hQRw*YP<52(3;}d{j{Q`K`~aqak4ztc1>-`C>Z!6H z>vx5tgli|(O|T4ukd8$J(821!_fDc)Z)n@aKn_H zdt!gddiOhVV{I%FA$ZRKD43huROfy(|CTW&$)L)6)ye11{t|ZsV-T;=iF&Xe5W2;LoBMPH?ZLnwJQ`UkoL&8j8JdF1$Hs}B}7Me5AatDOL@E^URjHefnqfHEE z(X#Z*5LSl(E5b|n-|B(Ag!oQo@tpyPL;&vr(MjeJKh4G6 z*>`2Yf~8_<(ETtiK#SRi^a!Je7zqsn7jAxl&Q=J4q3-t}S2QdpHeX}`Sj|NSEwrpl zbY<9$pNBsfzyRRzhvg4C!^~=UXPjAKV6+F0_P=rFh28^1F#Lxc;h$+BgcI0F=+1EItp zgnrltofi(!U6O;JK1d}3oRSQXD%?l9_eKKc7POyxO?s8e%xKLE5HtY3*e*g z_r3jSQlT}WBL#pIj4`0wgkx-F(L3Jt6oLe&5w&U{rU|tup%rr9o!Q)&w&H?H+0_1NaH;t_n<;35gf% z=B~VSgKX>0m}2A-A+*cJtkreqjk>gpA-XY0mqDaw8emrFRbpK>78Bm*B^>{`0l3!$ zST_w+ur@k<#H8%#+aJsi-ID%cx6wOoZ6VtyHoF%v$H`t4T|pTYZ+$A?zy(Obu*`%! z7CwLmG2J8DDL95*!33DT?93jZ5Y73x|AGDk4;l7AF|RXK;ni{mk!&A&5`fnm^@4<7 zuo(`1SPFoH4i#Zuxa=)JqaXESQQ)9{pP3wWBfdhLC}~IYYJgfoJV>yz$QnAM<`6c* zOBmC0obh@c`nfx^i1tN08$b!bGB5&Gdaa={0}de{K=sS9y7W%#jZPNChHXrr2d@1DkoFjR+jedtyd z;fe?FU{SdmM2Cfhq}BS&)dn!Pjn2aK56%myh6Pk~&%Cmy#0=}ADEGzI0=Ma)qbO&? z5LBZ}KxB5}&&s01s2lYW7VhRxrZY66Xm-ZFMu9UKA1(u488|V65YY07crruuDyMxd z9S7*DiAQJil=Sl!IucCtS=#Mv2r+nlG%h>qqeF!KOAh$}DYB0lqd}Ntb-!5HEgdj)s-ywjEm)8a5Ok&}>{DcqmF#9hX)7=0W2K$gt62k63T`C6zTeyIL!O!^ElMC zfR0WV+7e+m234vG?8w*c4+WeLVPTXUwa_?`tZ5`R3_jNK$XbSWM2Kf54a?mXW>!uH zeBWgD=$TIv1Ea8+68*aLd;HWeC;cd(`mr%z+x+zXc6$8-ScGx;5l-fk9f!Oe9HDP@KdaezRTkq)dJu^vt7Ja{uXrs&bY9>l{FsuuNfiNt4qyQkggBrYw z%!FKqgHYasR#l#!=)O?_90E5C=tVDCLoqQ6@;caLOR$7$-+f}GWUnElZ;zr)qW*IC#C{m(v)wsw?H69$xX2UhsARQJPr|Y z+LsDQ!uk+lW;6waUEu-`aU8(neMMMF@imOfW>UgHG%VfsD_KSQU>&Ybujqw!kSw6y z`yf`1$VA5Hj&dQgj&JxpL-CoYLwt3l#-rs=Y#|#zH{BOtJvso`GYpn3OfW9fV~l9z zeg{nv2?0Yyf6)trivCx@s04<({2U*d!LK~ib?Gx!nm#z!Jl_a;1*4%t!Ak z;^^#%U`j_(01ID^TOntERA1hibr)^QX8ggf(4{z2XWA3qnJYUZ0~8Cun&U8!u9}Fo z7q`y}L6#J`0PEzYsdh%&&y%|!24>9)pbVF{wKM;*DQnUDpsWS3f=vM?Xihc~M!0s@ z?QhG(tjaz9`ffWwr0`En>w-T2iS4DSb7Mi;yJ22xT{|o7TQ@fy+)|j%G!>`o`fhGI z+{34)+jc9QZWegycG#2w3-*&c`|l-{F0dj5bb^5-M3_ryKf`kz<~b~kMVRNVrUqK9 z6WA*LV0p+a60~e~k#rW`h4_t57#=bJiO>&`{a!PjP6KG@V@@3&u6euXv+y}L+?51~ z$ErCrk1Q>0iW3**Kj%rZWMLnI`8iMb(eK6NX#v#t3IV@YDEI>{owtPpKg_McqN5`# z+89DU{}mWG?_ZxEfcIzTv6;cP1$Kq4MW59G9s>G9F;rL;TMO+p+oOS=fGX!gcMD^; zG%oPiEx;x8w6p4t{qFDp-5SCpimcZSt~k{-M4ZQURfir=X~Oj0L>-Qg-{mf@Agc@CF` z8!7dPu#xv^qbaF+1ZBXF@U<1zh=xNsQVhr-`${Rw9o=To;&sW$n!)fr@mr8+;P)Uz z=lervnrE%aj2BQcD+aW3y3zaFFt8G`6DCqz&3^!p@}OL9CsQlH!mjY6)=B-Ir?mZH zJ5ztq9H(U`B}}AK?BTO!xr?wb^va6@*vn*V`2igo;^jp2`j6ekT|w> zvf2D20Y3u0hsnaQ7@|RoX{JIuNkL{6t+2w(3cz~dtYc-Oj}{Jik3P$W#pY^2G5)fp zw?6y);H(a&vn|ExOmk^EFQ!0i8CoEpX`GvW-a!iwKq_Vk5(Zp!xddS$;YF4mY6?%5 z$6O(#a+XG@wFsZpyfx;Gr_-!aU1UNuVcs_SkxzFRc%HHB+kl z8Wsr)*-?*ptBtcTCeFD=_6IO2gjpL^3)6So3(~gF=cJm-yi`=2ml{^jP3Ly!r;7rM zmahs^b!};yS6P-ys>;&B1;uH>;<8k>uqqWUs!a11RiyPR%LF)x=k(tyPQBZzQr*(} zRJwR!`g~P&`e|p_HNuM)*{qn%qt|FDOM5m|r5zg=rjD(3>9|-N=16p(v)gEq!le-GML;aB3V9sQ^BxdS9Cm`8bbQcJP&(4O+!IWOz2fRBf%2C zJDn;*xAFw;EK7{$#xRg;f2e|>1d3r0{Em6j)R@j4^BA#R49j9U zqB&t{FZP58319R2=wRL#;TvJ6o`0y^wTQ4b4@w=%0aQg+#v>r2Wz5k!16I@@Muswg zuR;v1D*b+l_Ae#QSmL*G0r(K!tSVPb{IqeBSt{WEw7b%wo%>y35QRC}V^toLfI6^* zpa;@jRgdjsVsx3l|LnK%$pxky0B3EI!Li)mMK-=jA)%PnxjiLzyPs_VtYBRE=`<|Y_z7LGtz)(!4Wch}jMa=WU0zn&P7}sStn#;n$?W~z* zSu7gR@u$uiM=6~lJVHb!l=8@M4(wKnl_Ly8K#%FX0+TjMQOeV?ZTYEv&8&2ILqXap zpjuozE0tB1q}jzKY1Oi_^ixZ@YwY%~FHaQr&~$+O+k{igW>=653r$6i2&bDP2&- zT8}kUr}~wPQ}xQ_Y2k`x3ODOqyZ6J+{Iq3NaazBsB&}Onm^ObgKQ(_{oI2O$r@>A6 z>8GYLm(bwuCj^X9V=)DW0_Ll3D;-;U+~cs%g;02`IDxpN3JtO`Y#|8XfYvoLtT6a` zR%B)|AVcfv*l1XdfK@!ly|(zxc0{L$VBJhiragB2?#}A%%8hx;i>agy=GA;M3C z6(Tx%9NA60YvJ6Fk?Xtams#KH%K&o>dqWuIzii4KgwlRx>GhSpB5$FjWqZGxNxlGV@CXOuM zKrkWqen-!8I2kp6Q6EPtUk9oV+=mK}09-PI;juzw4>!8Aj01SXGBE57+k~esqlcko z@qTFx*dIWJYyI8fn)J7$QKmy*EId+J7hDr4paBR87abBB#7Gd(g@K+_6j0OS3sF5v zb$%bh>s4w`7|;DpVeQ`z*6Oz@_OKJAg!@z#aDu>=;7lK%JA`x+7LR)}z-s3tL2G1% zhWc&p=sEW}dGMQ3VbC3w2K>$>JzQsq<-x{LN}ibf+*<4&Sm*YzElg*Hnx_@2&>x%P zR~Qw5g*ntAVHTdb#j#!F`3^H+TAWdb0jF(K1wsk|eD)hy&GRBl6!nB;$t*qtRyJprr<0A9sb^zp+VOdQT2L`Ltyxx_ z)-9<>_0@CJ*UQUNWnE<|s;o%u8!Fs|;#6ZvTDeM~Q(u#+mR6^pZIuE*=xAjATDMlE zlBEk%(bC#fzpN@9*(3(4Q29_pSz5ZJI+fJcq{6E5)VZ#}HGOVjKCR3%NC`sEtT$)Ik>erRcqg63u_E~r3Zfpse!4zFeTbE|- z!-9~jbO=8eiJALoeYyTsPF7GwfJTUk7vRdb`SpG~nb`_wXz$`iNAQOAwCAU%oZYoX zJLlVS;4qFqJ@;qJa|6j%@m%y2GqvbnMGIjj#V}LvNk5r304|u7i;(*m_7I_741oyY z9zorv%zkVN0z7~VaT

078goAPGU75HX5|tDMaPbUo$^&CH@YEBas2*&*ulavczI zuM>Kji-mK51uM(k>bbsFbO*)i!2WDF?S+})ovQTbwS%73pA~n*rT{Gf?_j+?Kc>#m zxoB?_3@e6Q0D^?ImlaW5QWOSreIU?v|9gEVGKDeAu{4+xR*YUU>P#i#cPzD65x}~y z=g{@_t}fqm7ID7!1!%#hydP(HqXJ>H9nsxDRpM}vbw&r|j}0N3q9H|nSX9j8gE|Kr za!VN<47(}D&9|1pAK2iuom#^wp5nryxm?trk=7=hpa~$RPplAez+fU}8wJ!M(1tiY z*JoM=2oNf`uR3R8w2s|$EuG;>I+q1LT^owhnnihO>#Cx(w5~Ljl+RBKYD-d0)%>(w z3~1Ar0)<7jY4Nh^^yBU_>sk9ZR;Joz3sZ$y)K_}Uu$b9ngv0i5tGDR>qWZd2P+yhm z1$@Ug6$ohN32>?fDs`!>PW!AbNryL*dXLsLyf-pn7O>IUcF#{uUsa`|x~f!ATa^|q zuS?%Flsc^2zo9r)E)ifZs!3(+Pw%g6(E1wgt6_R2A%P+Gk=RCr0rXs_1Zr-&i|G@ulS7HhbX$Me+x}x?RhZ`t z-wUxMG#!L#m%I4D35!CEd5;4rR)mdCx8pX4@vr~`gB1*j`w2s%hdTl^V8ua7Xa!qx zL9lhFoI{)p8tjFIWdNWeGxxp=C=7^!5FXyZ^9*Vs)H^K9zzXlwyP*tB`T|febs~&E z>5b2XaTI`J*u=|$V0E4d-5d3XSSsv%$7K(=5t0%n_e68Ai=N z?qbj@;c3`1Sd{Gi;*4T-x})FY?Dn~d`c%Fr3Y2LxZ4)(~HS15DAkY(wJvIzK;vIVF z@5h%F!#hZD@VuOt@wR@?yZh%^n`8(G>v4P3hdv@w~kw5e6dYkG1m2KD(cj_20j{FLUh^CKJk2N7_bLg+f~r zFvyZk^0ePh!h+~u^|BWce7-$6=pVM8FgFk@hyV+L93R!o%y!_=4JL&Sl8uEoqe7f# zp8y(Ui_Z7zTmvqv!6P+Y5!tSuQ*$XVQ%gx~;h#E2~ z0)kfrMT116rjj&9G0MdxL!(hNf|tb6Bx>8##!lL?I&s>J?eyYIJNY-Bp3nKdHb1-r z>>b#B-se2$InM#G!tcs;0M2DB4nmz=>{d{QKkMxC{-jB>oJzVb_IE54#~{w39Af39ryMU{$`I=a>V z@l!pz`^khJ-2O;U{`9%NzPX^T&Q`5kU(`2WPU}}^CX}p8DP@3C?kwus^?5BV%_?uD zU#_LBLzBC8?ZN@gPi<4z+9qQ!1tp6a^{q+kZTrx_XH<7?u*$$Yt~M*j5(Z{*yS}S6 zVISz2G0IA9>CQP|0WS6RNdrGba4ZGEPT;G_?1iM|WEFD~rms8UtI|sKUx79-;R-^y zcle^&KtRqxCmn=x&hBMaB!QL8$~bK z^(;uZMu6UdT+o4B4+^GBPYR{na+VdeCATIZxV!L910i%7Dc3>E6JQKL2LlX- zQKFK+GKO>K4a&f32i0qUnw4i?9wci$Ymb$5ua*x#^BDW8{PAFAl(shjSip_L!76|j z(K)bF_nFyk!@Oe%%nR|$(fE!pv&dOVp76M8_6hpt9~u$f;E1`6$cMy70?05J4q#m+ z$9*@q!{>%Bh$aQNaU$U)6-vn~?tL@HW|uo??V;&{-;UIipj|&Vy{$&m=vc-Ori@`t zZRTuifJNeCG{}0gH*9!z*E`G#PnClXr37Jb%=QIiA%SbYX5RG^#9S;8d>_uvloVk_ z`!aWZGr;SKp|1Tb*YK(p%BEwgNmnbCsd1K6Q%ERZ&T4F1Sx3e@HFu&{fBpT8{{7$+ zy)(I0nYtQHofy!+9-hPf9_O}gF`%V*V4 zpVHfmpY&VVY#>gQ^z=Xw#&Lch-VjrBIql_R(r(|=QsoTRug8-{Nj3DM-ZJ)DLXvbxg$FVkC+nl+$4Z6G>lKseH!u-9d*uddF3t5yfC)H?%USy{Nx0ItE9RN8UI_Ey1d=LzcXjg z$8)aGsUdqkJ#}htFKcys(MsHeYnu*K_`G(694eTS=TYq<<7&q)WN@?ZP*VjPlXIjr(zb zH)P^+55vQ-8<>l)(b^we>{GX49jX*vW4OsEK z5nCf;o#(*_yRFkCR79Bv? zH20-UG{$S7g@whFezylBHADMMf6ygI<9u#zd&1XxoicWD62aX83$R+|!$8nI+_w{ToP6eN02V^T38jIR9-hfgL~n&U z$_b^?ajjcb(CGS{R<)#+EhSZGN~_c!Q?ca*ojbEhKRi08dp9T5*qKqT*=ql*uj{{$ z7j)!kpW;>y7TdGBba_%wpWM;R%o|o>CDgXQUcb9LtEZ0^>^P^7&Ky#zkT&*{RGYDj z#l;Ww_`xlGbMG_lnHX_Uiq~e;WI%V}>lTjWE72!Zg0NMp=8l8h|aE zG^S+boiVhT&7_D{+24zFhJ-V&gq4Vu`Ml~3NZ;8Qb0PioK$UtrOUgGl+TWu==|(I6 z))w_{zm=c^3GME+^02K*wQbF+>sYA~``cn%1#G4ausYTlnAzop_GZ6Ldt1raCPVOX z9UIE3ZIuCF8(>z_kg+`kezsV%*382dy`x8I2WVCKo9%*+AK@G~>Tj1X*&7nT;*5I1 z-pC8aY!(mY-Da?e=0RDAXU@S2BVvUEmTzRC^qJ zio(tiZC-&v5o8yE6l>3&X^ltGCX{*h0d)YQ#Dc{<)1WvU6asjmLAgBvPZisa5v0+8 z?C>QGUKU0s%<-t>NXZ4`bMS@H1#t3?Bw)s9j*I<)@q|$yx_CivLKMG+^WDo$G%;Q; zY!tyi0=j6+w67zx`@5m^*)bNDumY$suxAX*#eTl>njO#rP*eU9&_@T6@IJ!!=69v_ zPS5l9{|ya{i+dQgL0HGZP9jOQ&*S2y^70Z>E-V<)x5c{^*cM(y zbTPmRjg!bEymF*)ED)2l9l+XJV`YJTi0lJ#!p`7c65_!!z#>x{qo}i^&0zs*7|D4d znh8W}TIOJN${5%C_VX!wBhL=Pz!%Y)Hzn#+$k1y!kyT>#$J*wH+o%+lDllsqh zi#mRCL=Ejt8X9faqx4{lOLW`)-D*Xz%A+0#d#=;_0c^v7S%s(15hXJqO6 zvYK>5YaUx4OlrjoL5J8s|u~nRvI^H+uB;OSoDIuNsjiX)NI$~4A2UIT5FS?7#ehV zQ$`<;CN$AkXJFT$oRyd5wxTBcW1cj@I1=MAIP`;G3?ZEe9ug<)VB~1{WnID8X~!Zu zM#Q4%4lN!i>)PZh*Muksh#daEGu^vIRnAN<+1K-kvy_Hok-I!%JU%9aj|xVDKJ+?( z0uUv9W6dS|@DY%A$+x@Mq!~zBo*vT{h@h0Ghu(O1v<9?ByPy0nj4Yy8zDX2Yk_s0`m&m8|kC~Phe7{ zEx?FiLZOQojGaF+z`z2%e00#Fg9z{tFlf)W8*?do5J8324os}oa^c;6R}v)Hu!C*E z|E7Q+AZFzz8CPE%snzuZ1v|N9HPu^TpW6yA@fckqq2wIqPRzXg&zwO4xFHJ1M~El^ zM+0Cj8CWeM$d8~`kthZ5G{ O0000ocD*)|hL*F=O2dEC}+$ny7GW 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 literal 0 HcmV?d00001 diff --git a/public/browserconfig.xml b/public/browserconfig.xml deleted file mode 100644 index 1bc305525d1f..000000000000 --- a/public/browserconfig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - #da532c - - - diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png index 28a3adf917beb3e282c2482ee82e93244a7f31fb..248f0b10110b8d01a23630a0acab9c5ca5d6ba4a 100644 GIT binary patch literal 991 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1qucL5ULAh?3y^w370~qEv=}#LT=BJwMkF1yemk zJ;S7}K|DY;+fpMu(>y)37&w3&Rt70XRt82O%L|C5p=^+AG#Ht|;!HrcAtMvmbx}Ze zW;+X5JPXJMfdn81>4(v1mNGCiFic=)U;(NyFfuk^TmUf@q=R(<#H1-eHV7~Q&0zwo z46?KUvY@&Q4GciC(j}LtT;XWr2CD1xba4!^@V`3gws$ZiLwkMtyjUA=r;WkO_?!SmhTVYT7V8Pv6#sH8n)Y!)xyrJ^rs3oI^a;t&ZJ#bk6NtY3C|$ zp1XDQ<++4uu4=rY%2kgr#NY)w*EMO8)dqp&L8} zH>T}W{{H8l_3LN03=EFa1&cB~@9t}Q-FkS-0y7n{G0#ip-Lq&()OCXt0_m zWSL?__u@yV+V(b0dYNkS$NKR7`uh@Zls%p2%OsvFY@6dXL1pE0PhVBf=ASa$^7AJ> zT*&@oDy#6x)|rz|Rn1RxRWeo05aTQgwGGOW3$*N;_)+3e5fej8idp-MIj$d0Uba4_ zmdww1g(LZ~aJg0f-J7?+KGFSVy2k1Ax!j5?pM_q(3VYynJ$8zRS@rR1PA6VN0 zE!Q(0HPb#c(X*m$&y>lTH{J%VTe0`=q%f_UQq^$G@)L*id%Xb%KlIb?K)Se|*eVztI!mdK II;Vst091u{LI3~& literal 1236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstU$g(vPY0F z14ES>14Ba#1H&(%P{RubhEf9thF1v;3|2E37{m+a>q-gN zy>j-uKNs%96(Y=9zZV8RiA1Zfv);c%hVa8Aa3pqk}~l8-@;H5s;+Kp3v?U1p$CJm zHv^Dls0UdGRseKA(1o=TDnMuaZeRc!4pjfXhS}B4bYZg8nsl-M|Nq~saCQL3>x7aZ zKTsM$0z9Gf);4N0N-Vg!V#c8>VeE5`8#D2h-?cY9V!<+DA`??UbzF2zbatf!Bm1%& zXU{y}$ikYpW81nlt5)9F%-(tC=-xe#HgV0*P}iTywr$nEY%r{7g2sdu#vhNw8y>-)&wW_O0e7(9^0Vt`Q|Ei6yC4$wjF^iowXh z$WYhN2#7)qEv$@;tc)zQ4GgRd3?A4WjzH0no1c=IR*74~#N_HHKn>wlArU1(iRB6f zMfqu&IjIUIl?AB^nFS@u3=9=>9)IHDC=AokIOTu(jOWuJ24-b$y<~1-Wnu5hBFw@H zE)6D!Q<#-EhbWxBaplC3Ge=~Ou%B-5Sm33{@Jd{;RG<|Mp00i_>zopr0Bstx A#sB~S diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png index bd596be609922ad0f3597d59eed1274ba5625e16..374d45216fdf6dde1129b9159485b66369e6dfe7 100644 GIT binary patch delta 1847 zcmZ9Nc{tnY7RP^yL@kPFGD+P1C2I zh~&;R__-3u1j0Fhk6XZj6A(B6;gStkGJi9X%gPX*?|mqjH6c(yn43vl1t!Ce`ydd+ zEsn#Bt7C)z<^Q`1@Blyt0)TNRG_Gy9eYXO#xqKW@t`GG4B+<}-OMh=^ zYG@q4%7nABU-2dV006u&f(2;i>}s`on?iHBES*#sH`HfnD8Gogk8#S&FvW{1e0EH^ z-i7aIaFTxDnhhn)VJ*nP0sG?O>-o_`62;=6S%N|fqDYCWNB3* zhLP6Aht`V~b40ZWxaBr4|E7WT4O%uw83QZy$i{b;Y6WtWmk^y0; zMi{g=3w6%t=l*);g?}Y~&RcrsQ-JbZF?H&xyav9mlovcSnP9JX=9sK^xT;?Cd681G zS&JJByHarP!_Do;04U43e3O}24`xYkv`VFqK8SPATF6XEEIYRtt>`p*q{7&y4dAjI z+(osDt@nNBdMR7CO^mRY>#A+fI22_P#m`3tGa|JQ5gr-shi3_oE*Wg&cyjoq$l`Ow z4U0PYQDAlK@F_1$bImZwU^Y=|9uD3ud5i2B8}_O1f{1(5W0Ac#$9*Y9=6%|+uyR53$k_r&ns6`1;0bXgQUJ6S(y>q^(Y3I~q$sfK%H!&FufH}#c z4=*VhzPT~HaKE)O?^X7-tXoLnpJU*TMTak1fw8 zTA1B0h&z(nifLsy+YKm9cpMC8RR~cJ<6zUG07WD zb)ib4sGeQ20-qMs+!w29PMb?C`^vz)NA1GR8SN9W%<7f~orHV2`{KOGbjZ8ff|1cQ@k zv*yjyqgcXu)`&7$f-c=3Uh%{|7WCM=U1WN-aXn{PKPJpWHP+p+e3%+<7Y~|>DG3W& zk;8Y800h_8d#lr1$>bl3^tDi5G%v&Ol4`A+|1a|=$$n%YLth^e<#EF86K8Y32F**m zePa!uKQ!vWDe&aW4HrU+2qb$=U+?s8XIxMcqY-~8PdYk+9I>YHU!L25EgrK6`@710 zEzutpmek!a;(}oxx33K8M|Q4=Gu#Ol7sYxxj)R1lgZ<5zIA?Yn+_i7eT4_dvYG1;r z+qE+V62_z&yP@hNt7X=S^zvZIr2W!md}VW#EKxy)L8Vf?a8@%kcV z$sxWfKp^?U#4BK{R+dl8CpyFF|{EBIBWZUYdPti^HC{;7aAN()}B@QDj-Qe zi{a;u%Z`tgSbNjx=5%Njm}H(!4R0$ z^q-1&v@j;goLg-zLyp_-^5ZR4vZ*=L1 z)k~c}(xbx3pub;;H0y-PX{v({r|y>4MK3f)R5ahE$?zFys8<%h!kagFyg!c`V$`lG05zWxKXbP7EsL z?%!$dn>dBMp~Klson0prHZ_~&D`u8Wn`$U16Wa6cE=e{ryS|~m!O@>s!Fzgb Q0>>W(!P4HM3h$Np7nY0Dy!50Qvv`0D$NK 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 literal 15086 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 TAaOzbpM1I04j&+Wl9lg&7(0?> diff --git "a/public/img/NinjaOne\342\224\254\302\253 Logo white@4x.png" "b/public/img/NinjaOne\342\224\254\302\253 Logo white@4x.png" deleted file mode 100644 index 8654c2d794841866d183ddf18ebba5eab4cdb845..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 72799 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%0DPY5sz2&C4!#?9@Ks+s$D zG`#8GobaZeng_Wn%xTAe#(IjEF3+B4&?BR+iS2xBvUz&~H0q0BE5U)`$idCzao=pn zwMd@B$gnKD}zYLBEEXmWkDWQ)h@mUyVdW z=h4i|)fg}DXg!BNa<>U=LOj1HITKwX3WXh5$V_q*5@U3I-xJ5sSrE%)YHp5WKWa%{ zJYvLywYGQ3m2jcfmYilAiE!vx`eaJ7)FNl}YEM<9t}Z59j^ERB_+sfhyZGWa1fgaa zAy>R2=}hdyux&>BN#1d2Xj-*}j+d9k3R}J{Im}rTE+uxV*_ofoH~wQC4I`mrDwq2l zVhOPH_8)cT`*<$YapWQ~vU*fD-$!y6Yfb)bE5`b&rM^=vhki!rJmFEPQyIffCgr_G zgt6iO?mAi4na4e?Q_qIX)eQ{H8__f9sx*V{=eQTsK4?yy=o~d)WyoC^W@|TF+SH8Dx<*tp zA-R?7Na{N&L>iY+O9;6{i12&PnR8~&>G%1*e;70Gd!F}spZj~xd!FZ}Bd3*RrVt;i ziQ3koSDuez)Qc38VnlW^4HE~hUObjtR`L_COI~~Gx0+KnbyTKm(yyh#I+nY$q?2eJ zkNwhlG%@oWkGA*B?S`HzWyhnf@1Ng;@as&$+wvB9g$r#eT?rrQOk^uU@#WOH=jHn} z_seDH{Z#%Vq%rsXovxrz5?XzwB}mm|x-*#Vohor2$V44nOSei^qMj;mX{oPl zA&_(Qzr4RrEmpD+w1LpLajNI_=61DbPL4+e4fy+;N<_d}q^kU|`bTa0{MnkcW$Wy~<| zf-jqeX138Oxi3d`2JUJ8H(3%1up4ibPWKrqvwXwNbj$)*KUAeR--LN3L;r&Iu~|bE zotw%xD_fxslU1GeHYoawe0a${6aMJorB&dYMVnJ2a;oo{Jf{p5t9H%M59RKyN`2%# zKHjGFss6Q*pD%NdWGSyTiepsbGA44g)yt<+Du3bEJgKNs?ufRx-NJWX?A@!yJXgcJ z{M-=^a{*^!EiXPDoV$G)>v)&nwcVn7mu{apT1Uxk)e(MlU*^Di=@so_Fm|jj{WfIed3t$#@bZ^gq#WSL|{&4UU0* z?4Let_U8PCr*{>div#nvn~iCf$Mj4S381dGl|u%9M|F#TLojD&<$P;|p@Kk<##meT zrXO>K{xkAg3#Kyi+URi^QGw$kPG-7#;s?=i8DC-2Imx8G#&tlHzNFeUAZSI))hUH- z{lAEA*}AT9*mgzJsdu%j_Q*qi1+V(v+^MrB{aE)8sq!`<)J1f7i?9f4-ml&M#C|J7 z*VxRW)KK{p)G8`+TVz>$a3lb6+LQoc%ddRVMAP$wA-k-MlqlVy>IH3z>b*t1CTZ`_ ztH+M&V$^4^T(WDUY#zAj+Uq5m!;e}bTlJ^=(DzpsUKw6WVW%!_fA989*?REL)V{AX z5y&8DS21N`?0#ytx71}_@>G=-+v~$Dy+oGv(?8WvKcQhu_6e_UeY>VYb<=4LZrorc zi;TyrVgLebT#7H)FE6#|2D8R!UcP3D!?rqBSnC}%nb5Zmwgz5E!lZ{!>2j7Up7rZC zx<>^oYZ!JgAP3>6eX!{gUKbyBhfA_vo&B9cB9Sx%{Oeq2fbs_`k*Jsong%1ht10icYs8l1&F`-X|gFF=goW;QHav@CLW~=_CE0C+0WE zyq*?XcH1gSSO=TSr+S}8Sfd>iZuM?sC(m|8#xQfAj}Dac{+c6((XmjnV-<*Agf|SX z-+mOlcX-45&xNW*+w1Kz&2yY8OdbTfoCwu|jYpExgx_2J!!9lUN7vu`cWdhBK9BdE zr^T@1+a+NeMcr%sN%OJ|IoJCW7DuZielqX)}e6MBP{*gKu=x%9OPaawATmm=Smdk2G#j%e%WsV$IK~0(Of>q z%G@i`>uh)DP>J{IbO-CQ2GE$Zv36R>0Y+%^E=#N^eEXR$Cu>^td7wYB!SY(oTH&j3 z&3x&%~6DFM-}7`~3VB8*=Pz8Cj#FpNtQFsjz*c zbZ~g??Gt4i%yh6DD$Y>R551PLTV`^?nvn>_i;?f%&ZC!`x4kIQ{5m$nN?78~9~)k= zZTp*jjVEk>&eHVvY#x7nSA86{Mqnsj6#tffryPX?w_~cQiab!BSz<^t?Zb)|)0t(e zmykz0(Acq~yS%V}SLi^}YotL$_&h=UBgO6$BmIztqxf5`tekOe*7;7X5B=y{?#e?| zkoY6qyH~`yX}A&c8WP(5=2wOwTg%dEJ9k(}LUm-6;GHpz=lItN;v;mK2XVd2bA+8^s*xkV4N9je26EIM*9sUwr;drLpTP8sw$H-ApZ|+ zQSlY9C<07M?oN!Km5wbyCNxW>wBPp!9NoAWi&>2Om~LPL2{&-?^= zs0b}T3}12RJ|OhTf&T%#a4TAub4L`Cf>_enQs6Hk&-qMOvTWIP67@5zgqlHh4e`)$ z#uOd{^De0gZat%|Hl7w{Zq@}!ln5>V0*>N-1V!HrGKx#_^%q7`xAJ6)-WCBjCUfR zT03yjR0^i4LCI3Ny=3w#QPvo*@Ap0X`dJ_C5~0%b_In;385%f4!Ohh}Y3 z!m`3p(Lw?$e*dDWPT`l@2i$;1VJftyHIUzk&MC2-@h?r;Y>$x-$)v?=V@s~|;jZ~s zp5|1lx&Nzew(Czx7M{-_?-`-hQZb$n)*a(0#*O6da&p*RO>Nom;eBt+u644Fnq(1+ zx+UHovh{V(76%Qi6c%x9l$S6!|JdvvITSrJG%Xs&Rn`#aH{NwcNM$92 z+r7*NH%?b(`|{iq|7-X!&re*s68JnfzSDQwSj$a#iAWiAZmRkjBwfC=Y2jNhme+&# zR=m;>j|K#b zqv3V&K*;OKfsG0EnQq`WNC)ii5*TW(GHSSxxRwG>X}m8;erbM`?HOfd<8j0O@Uo;Q z#}4nPrFTviv6=A9+sF$!s))DR%{UWZx^cGi4fWh3toCK8-2F%PL|ry=gDT0wH6%lz z#fq@ETS0VvQrbbj=7`P(K`mM-$h%*DkG$&K4lk?$GsRp~doe0AXc(UhJ}dD(L`M`o z*ZPVlO!kXyQ~85t2g_jEQzr+D7SGU_?3fKFnc#@AKltqvr?-=xr@WA zOJrIbmoWo+trp4}4zq^x^oScxCIoceKS;FdDrnu*>|Ut3L1@lg9N&L$ zK{-}`A6hb!t4-1vQMi`P3Z@0}WTp%@L0t?&tJT7BCP?)`k+Yj*sw8abX(!%Sg(7x-!Rj)&rkS@`66X9$9H+GY*->Zu)B4OFN? zjt_y)`*S5Sy8d!P*qqwJ5VF*-$5DL1g;KRY+u*Jfg~7JPyn{i6Dd1M%!?m{}(bpSa zk}X6cEMyJkWOJ^D`IC4)vWBKS6G&-GWRN#*Ic&Y4LQ+RT85Qg`5r5o$btJS^2~QG7@7K6wuENMGC(ETiP7yhjBA?Wt7zoK! z&BBR#4s;@3RL*??^GKUOpGdMJ#c#AC0v;>tU+>^7{%P8ZCn6bxk~ zj<6{xgjZuA6s|P!p&64x8p`AV`uj@X)_(mIpx*BciEa6A?6WXvQSgFcc+JJ?e&tdP)Xa5z`2~ zfv2OK97Nb3(cEoFycw#IaCio4&|1hlj_yqu^4*CDw(6{X;M@s5i!#*cXWB)~h4z@7IfHO+b0S54IdS8OkLb3d3npl7-;J_+m1H zRdEi=A(N!Nh4lC&n%E{{HiWeiS?hBU148q}?^FyGyK%s}8n_1R{f?-%c*MlgKma^t zLPbQP5vs%=5!TK^)iRR$oeZU7n<|4WE^6iMMk4LWo-7ylk~OG#ID=#*CYmYFMk%QT z_g`|6(BHFZ7z(J6_#(okP!J!pbDeCTUlEz&&iIa11u^(BKG(mSX0Vhnjm8S)udZP9 zt9v+?IWOSEg0va9;`df*2eVGuf7{M`J^ zsmB(A(7#B16))QjUFlF!(8N%CqKk?|q8eo*4QP>>m#gv%_ z7<~@XVTpc*opn=*PK!l*+j|{r&{#l=G{^w*&<1 zHUo#M1?CqcA19(U7Ao%=RS;O5ZYEQsl3Lq-Yq$aqg`mqq7D>cH=LAY=(bCPh${Ifk0}? zw?e6M$%n!jJ>W)0trC6B*F*VYDH1P!OM*2fmGXak?YzrSQQ&N*WtZv_NW)$&k*Uof zQv&*1WjdKP#!gb{ztF2Gi~vohed4^O)-56mCuLuUB`!cWL4cxP8|DrN93kVAE|IZg zw%aIMZurm;wU?s9rbT8kj})NZoqg;G^()_R`WesAj|m<=S=a+5bTHfFA6ygq5UgLZ zc0agG61TnOe8?q%w0TVlev~ttLuqdoqUW^GA3n!wIoqd9KhCaxk?KJE{d90r6d5u@a@{Ii=@@|9mREjPZTwTnv=DO@!6Z! zq)bU@OlU$5qd` zt8ay8#6t%s@4zh6P5Q057AahtFty*SYnAG5%{6D5L=fOnxT`UxzM2x(o9jJud1<@n z4xZ^J>{%5$l<^#&^t_SGH6H)@%D!Jiw?4U(eVrHpP=3M|@zn8#+JTy#w=Mscj!%#V$n_ZKEE z2Qzn9-3qZ7PxSoZ_`p>)<1Cu{(OjaVekX@XpkSqW)}GI~oj(oG znHbI9eFzWIP3QId{&(e0ugL(y5DIstc&U_U>7f=IIQL@Xti3!&ei)lwGtsk0L>xKD z#%7H!caTZv8Raq{mypOIB>Ce;p_Z-hsVGDI(J6Wry9g6Z_R^5{BW(-r*Kb#UZuO%` zUq7p8EG?D@`5P7ETE}hHol}bZ(NR~LyX{8af7OBouUVYi0n2XIFLoxXs=N|*g?wR+ zb(~zqaAL2&>@ohc0L5$d!O25Cfqmi~x_B1$CXCyZK>II`C!5=#S^{zYX`fwxceznA TbIqkK$j>yReLGWsWt{szR65>6 diff --git a/public/img/augmentt-dark.png b/public/img/augmentt-dark.png deleted file mode 100644 index f32dea1cfce974359c7dfa5fc02205af37312f94..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2768 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 diff --git a/public/img/huntress_teal.png b/public/img/huntress_teal.png deleted file mode 100644 index 96562e74d99daab3248e17b649465ef7a99e42d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6121 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 ZYp{Id`t@8X@1EV`sl#=YYhaeI{|C#OYLWl| diff --git a/public/img/ninjaone.png b/public/img/ninjaone.png deleted file mode 100644 index ca84ac5e450c587f2abdc64f5fdcc5473a44f774..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13636 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 bo&)3L?`8lnonrXkYY^n6m87aAj6(iD#g*&J diff --git a/public/img/ninjaone_dark.png b/public/img/ninjaone_dark.png deleted file mode 100644 index 47bcc219ead8d9096a00e3aec525379f9d70c2f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14381 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 diff --git a/public/img/rewst.png b/public/img/rewst.png deleted file mode 100644 index 6d52a7838533506dee5196eac345094633cb675e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9250 zcmV+-B;DJIP)J5d00009a7bBm000XU z000XU0RWnu7ytku07*naRCt{2oqu#&<(cO{mMqzh9DJ1@cH)ruI!sCEl8^vhO1BA$ z3Den5A!a-6ALUn|B{QXz4m}+PP9bS1-O`plBur<|K+m+MO?qa__7G@yJ2Yvcrl%7q zg#^R4z&W;W5=debVg*~VVoTQk@%mcQ{h|9qk}W6i=Nui|_s4r*OZR^DywCeQ&s)Q} zg95AqZUmN0{H{#A01|*U@!ALM2M$ejCnXZe`ArNVK!ZTmy-CcB9WX|D8Od? ziIml=4^XG_ACO2S=Lh#tKA|$cHc#RIA(2SVVPc3OoGbBB!l7(iB$8dJDA_g5&Dpj{ zM2eO~GQ+8v?hd$QGqAPT0ZKT;3MI-7ix+YI;tOeuL@bZn-#@@ldi(h0JMWMf9kXk0 z3-EABJ(fr$WvAK&O97rmSXY*`HAc9(y`8%+S%wk{xo-GyGRY&|Z?L1c&+d?Wfo&f8 zDv?MkOf?IZikSUVt#&Hm5Z}Gxa&B4LUeZPW>CLyf@0C}rb|rw-h%g9=L{bF=r@I3- zs1y;ayO%HHe_gYNtLDuu`9fFCn@d|`gkQY#u5njAB9`mvk}o2WNXkMr3YLnEShY1q z_}SVu-1(uupgvf>u3r|7(i9G}`}lFIzWf$xWl1DeK{X22K`g{-<(w$bue*lJqS1<6 z^s0Gt+223Fkz~@i>jU85D{@hZMB<6*60B9gUjb`@OAyX=4S0NFdjZ#9xQL%!vxWur z^%d<@TVuq^3Eu*2ujqv(5{WCO(&?@sf(S93Ia3joKO`e0{~G73`Wdhli8AmN03Ph7>G`q$;SCV5z{5j2o43 zh_A1>l)INNE7*R^(sr);)eDoNb@#H1E7Yyx>>n7g+T1LXpxDSJ)S_y}E zVSR^5tN@zAVV?TvRg-_OX=yInczSe<;lUw>2Zu=8Cop^FTitJ1ZT@-LE+COeN}>`L z)@Cdm>`z|(QC1cS`dr)6j1msf6b@Skho(ozc=xS$IMH*AR5DetuQA%lqUB3anic9B z8+>*8k?uFF!WlH+$G#erNF-&a+=8Vd;;agIaOI`kaN#1yliOxRSTV;eR`0%f6s^0L z^jO;Ryy3xN-a7CnYD2ZmTRfk(744pctLM~dzV*7LbtT10BB>(EEm)>FD=!Z86?3Aj zH4F#eI`Ah>^qO+~EJ=^0InjHZ6TQb-uymm-;d=MYqkN+Kk5;=hEc|d1iDddHr(mgA zEa;H$n{q?GV0jTMBf4-YEm7uPIG@I7IpJ`xv{>yX#gh!%?Yw7UPDymx*|* z6TQbxVF-3Kg~FtUN9ZrZP|%JZ()^3PSUn8vs@TOP5=lvvL$G2P;;z~nBa^#RTc>*rQEYEDB5a`>cm;SKxZQa0 z^%q_U6k1oqgSJ*p0sTG4Tz1JD{bYEU5A4M1$4Ie~NU9zu!BP;hNS%i5v5B9SNx^q7 z7rB7_J-MOX@Zb=M{y~%$`)K#{Xqw@KJ7M!eKN;@hH2q|(cJBgiEBi$y5=q%9HY8LL zMfZ$im5+i&plDkpLTY$~#6V#VkcM%K8x<@ z!@keyg*i0}njIz}RyA=nAlb}Yn735Ohu>aA^_4-^gu z^U=C{`G5PnEyc<0Y@%CskmP`M6uX8LD~V*rVdcY8u?PaaWobL#z4CIDP^joK?`v9G z0E+seP9A-alSkiU!P12+TE3XZsEB}1k6I@;`=OtVQ(&l8wu?z5k}1JTuuLg7ZH*D0 zx;mE=*cOTKgR8GX35EFnTW?QpZwiM{!Xejns`Pxn`ba%WOVssDq8t7NQ>hr88r$BQN>j9C7&OB>?)S;`UQ|%BFiW|J&e&!ngKEllbv*ew-BU-04oV`5g{UF zS|)L~wOAbjww2`q5{YD5FbdX<#sfYzG3#eXTO`8W%PuY$8m5w|2`gumUz4&6)&vTN zjVlRp9rav?{}rD5$*>zs3(xewNhFdfLqYh*6(H`n5u;$OG#*gQy3)D(l4X;EwZDIW zhx#@Czz3c?)6E#&jIo0=+{`Rr!qttX?<|h=TS+8S#j1(dYGBF4?`qzDZDOD2S$g9b ztk2Le$3OFFl(6$+rhmD6FRu>{k{B!Bq7W?v`7TYg5OjUcml&i6(`@5y$of_iNhMJb z6Lz=aZl!czxw}RSOU?g7pY=-(k1#wq%)G_(EgR`RHOP@g#D}Z>O$ZC8*2+ zAl2K$*uVg(-d@Xd`pIw`r?{C}+>G<0s{LfF#43RlD~Y7i9K>6o`C300$rmh>Dk`Bc zAfnb&$&{sFegDn3_=i^xS~ec2uV?lZmlOH$B{VE;r?zDwwJi%x$Bp&(lYG6Kft@=U zvsfE&2WRLZ&DXe~sAJw{I4H}-NF{gp0 zdTj^F$3I4(UihKx#0ntP(t^@*9m@LaNbK2dDO?8_k6=``nD zJ5*iZHEY4z@9M%5iKObux3Eltl^7EOkU1;-LOp+cn^35h9}K^5DOOGYi?2RBr_9ZqT_idFR54(5I8lZ9dx3KLc@^4&RQ{dK61K1!&$Ftoy|7@vi+9Ymo)i9~Xa zU=%FPctH2yAa#vGgbr}lGNCwnZ3lDKcbK-wNLus1> zjIv{*Pd0unX<zc`RT(6b za|~modjc`D7R%rG{5$U!o)lGRx%no`25Um$vJC~Tn7g5qRBtbdJ$oj%*(6uX;h-Rf z$Pv8=xB&P7@i`wvh`Ls$>!=ggYDeUcK`yp0F>&1<#OHE|nK65-Qn=tsIp42xqagaa zgxu;@#@I>?ID+`>HKzAVT~CHChGyJgRlx5#ELL*PXWpm&no!g_&a~V^K`Rz)`dgCS z-Ih`Dd025TpY1Diso>fg2>&w(M6k9XcO1k zhr9GOmE3#pCSR}^s}Q-%PHaKs9RlX$XT2fYhkf=Ht7-n5Ph0M*35BV<T#$C?uK9q@A> z*ol?SF1(j3>cm^t#q+?1BKzHbnYl$HC-R!jG0#$b6|G8fFB7%wtSXM$esk1D6{6Q( zYuoBnSXVlc6)P>H;q#d3KCEIls}=f6N6+H#CU&w|KnTUYiC4_WHSE}k5Tea4```ty z6#-O=ixr56Hs-P2$2}f@fz5Um@&0e8d}5`yyAk`(L1B8t3g8<37q=@v12AX(wYEdS za`~<@$t0E8j zVpK|W>~IqJa(|;+u@zwv6&nu4@g^2A#KUOUp4IVg@M5{?eei;nb*7ZE7HN?9x1tRN8fW|Jz>K58tP{HV2&v92Hy*<2r`$h(Sy3>VO>h%r4rqdHee9^l9~ziHau+SM$C>5Lr2o7ig|;$d!dP+TTylm+v+W18=(dX1;jWUCf?+0Z~Pvb>TvSK`YmqHJYZ;(a}L)pKZ`= zlqwm2d!!tK6-RugdOD7twh<$D!)?QS<9H3u)Ucn`Gos>swo4C+HGYnRcpEAeyBD_O z{h@>6Uy4P8ur27qEX?5j^KiQ&%|^_^rQ!aw)QRC;?Bn<_Ci0a*#o%+MBAoE&i{R*5~kO-p&*uwesV{Ni2WI`#D|zHpJN zwye-aD;kYj?Y;qVv#Y)@FtgBb7u2X>9k1rq=Mr~ut#X`W<;U?FJ${YNc9qiZ4?6+& z;(Ll?FBD!!2r9zj*^0Xa<1WPiu*Juuu`l&pkB4$$i5aP9wbKt($X9-QQBD1f&-0|cZ7Z#RPRfR9! zbr-Fz!lIf#ZysS6D@(hfv$K;}EJi#Yw>v}^FA(1t2!+^`|{g%(xH8(y+y%a&q-mCweB*Diz~M=NVbriW6OG*f+? z<0T%dR8)&?alA#o8;8p(&f?;xeSJu!<7H?acd=iiJQh-nT(ylj?yF=}1^SS%z+3NT zI2fpR7AwG%8+heMJ~H`xR8b17t86w~@bW_}7DKTR!5aGoqdO61^K=JEmV;8iG2NDz znJ(qLbUD!J+mKVpUq7j?lZcyq(8&WX%54YOQb z;B0SC!QUMnxw6WUyjZKgzCLch{dVTenL{8Da0*o@$~D&%`c`lGIQ-#Zxb@?p&bKZC zMsB>X`nu@3!E|QiyTPu1UYzeSLpx5E(DS&PY0hs~#eLjV9CsE@++{!fu#p+^r5zxb zwlGPtKvA7w#M$9)mFL&GC^s9}(2!fhu%n}cr=Na$G6*ytkJHi7;UyJklGUpV4TaNZ zVC53{!JY8dW8$Ye-||!y;h-#~Ov_BB+6BvwQk?HjlMFxi(Ei4WpD_=8@iJ*)6*E^( zHsimZ+LRE$;^C}wVPO#rIvz4=Ay~6#=jxJ$Lt;4C)zxJwOq!;#eY-Ia)S0%n!pQrC zVJXF1J}!jop&KoSiYn)~XjL=COl~jMfo_63%?{?5d3nx7yBiEYozQSsnmC_rh@o+% zN+@+A?*FP3Et6o?EnHZzdb1sFhlIrlPKe&&!-s8;@nd1R<-txNTEIyl<_ z2nMNfVPS=>YgJ8>$z%uygO*Nm9aUAG`(vP(02*nV2QPgSKJjfhbfjRHf-sN0rYX#1 z27R0}71QGf5tfeTaNHBPo3+&4AWn|){JdJX3D;ig>6hv=>Y8}P5OI{99~CskNH zpcX@Mv2c;PS2}@^yV_R)i@?&i-uyGIt*rozj*Za}4079Tx3PWuc9WAm8jbRmuYAST zwemT5urPf~aWDpzS@6OGmZGI1ZorwEKK!M@>x)H8nM?TeptAd-wXXuwHxZwSvFbE_Xgh7cGn7VGQR*3C6GHd`R?Rww`!-0@>!FW7;+^LeY_Eo=)DeiLs>gwRBqPXSGy*`3R&ml`6jZWusZDX z&*glVrv`JMy`B$v>eMMtojS$dy?a@;%DW5c;K73?zt?3hGk=s>@aqRGEwU|CsS~oy zc%5wn5rJJz?~V6a8f&alhZ2;>*{$K-*$z4Xn3s?VJ=y)?;)mK2^Ld^V3O??e06vti zCS2$GSmnC)1%D3>4e^IR`~eUaRwk1vJYG?X`m~%d&MLOegS8G(8d)Hlg}(RT$G@{Y zMB)6Y`rtKMUZH%IU1RvG7LiY!(nUqXUbwyHKw4qfb}=@R%L_b+w-P-X;xqE&+HgpD z@r{DBm8)V9HB&8@V1x4vp%)@6RuVK66@hUH&_M|PRRASQ6@8=2{Nt$+Yx$Xtp8S)Y~F*HtWab(m6pYVjib z$}!2{^}W((?eg!x7(%$bxGUm#_nW!7=e@S6vmI+|F^0GY^nwMdzQZI~H7-+byf7y( zcM#y%v15GiyWauev2jGm10&@er%Q>;&^+&RqPkzP!RuX zAHo825*HQk@2Q*jQFD2m5rv$!xP9VfT&P#2SWWlz;Gkn3Vb(B=b7F31Cy70~3#vBk z+_8gY%a*gDvlH#eQ7-TW@ZxM&aVOmBM7xh8 z`u-fbdS?l8LgmMLb{pz)2><@Bn8Ud-CaPfsFx(8|6Ek;3$)r8?CK!pZ=&N5fZQuOR zgY4Mx6GlcxIQq`Jp4!wI93141JMN&XtIM=6aYk59hfjJIt2po#ax*P)U!9w|X!v*1 zstDmah`8DJ<-PK^ZN{BN;MdZ!vr3$BV?D+3XHjT)bGExFz?YAL@B#h^@xBcrT(r9H z%g+eGtv|5TN+C|%4iH4#TnqHA4HtjNIW?ySYUecjG=nNfBgRU96NT5 zB}>|9(9qF%rOwh;N|J0Z#%i0WQ?LVr<0wgZf*_ zC$4eC&A-6mxMI|k`*v3++Vbio)kWk5|vPns;O(c{jaRo17^srhp^p{!qT+W!1=&+&!N-@&&Z{WkI6?&s{; zvzFy$^s+Pi_U)siqoZhYbPcvu86Y=(zYSqQwUeuVUg@aqnZ%9E>?nUX`G5Hw!o5Y| z$Aa^-647+xB}62F`_;AmpaA#QU|21rVQD+9cYfaS?7HQbdS2~WXW*whd2grn+Jqo# zW?lW!kFs>>Qkt5Y0622w2%4s`YuBz~%X&@ngR8}t-#@(aDv8mt{9PI|Bi+W&syS{~ zOYwqA>9cmFpyB`XQV_!-x3jzV;_adHvTD!sc&}`#GJWs8hWC&LukW{44%K2LmzT#5jAu7{r zHMpUghNc>#IzS~&ek0p}D=7U-#qH27?&Df++t%%EkZs!<=xr5wDsWA}d$2;Lc4fdFUb2?lmoi69Nye zyp&s)nyg!u>J}|OE2X?r_Fm*jAcjnpUbilecwp|OJfa=Pouk`NZlBw>%P~yff)K8* zGPGsKA;jlfYNkLJ{?lcy%FK8n`Fc0W?$=56_K-PqhOz#B zf{l%Y=FcbGvVgj!?KEBeu}RA+v1d2$KAsCNX$prp@tIFsw*9vUUgF1QG1jQg;h`Q> zr@B18i^_eoS<#6I{fL#JEj?KEIVuxEqEh_JX&e4iubkTMqB8Z^w@|+1f#&?@hyH35x*0!M8^!Mh=+U? zIj69Ou&n$fBD-n(IVwMl*2~GP!dskG0^zfJn##ZbD!H0nF&D>ch#~Z|82Xk!{yIqB zKkR0%^BUf=ko8rFd=zUaxCBR(ZeMBGie%an1 z`KdY2lP6dsy?u=I_7%0V#*@QjGnujv3%y_rL|y4n9;YcB=HJ(MSc#TOuEMCqKjkXH zBJqx&@<3BfNqx)@DK{mI4*q7ZV*{C!rs36;k?QR=ZF3SV$cfe}bIxRp^QTy!L^9*Z z7pw$^1u1nas~G8%1D=zi%Y`w9>$0eV;&R#hrf`^lyJih)qbV%nd@0r^k<2)ZNqZ(M zYv6zXym&%%CNphTmeIm$@)*e47K!lWM@{Kq=ToshiDX7$6f8Z~W|H(^f|I}eKSdjv zE-P!)Fx%&5IA~;TOEYVlO^Mu2l@KKo$uwY97NHA+Q*7v!gT?(>nGBi!W996ZE5;2& z!lsbB;h>RQ%o7XeL!my2WX54v$K`emL&H;h_A>P9L7T%NeeylVhlk48HD^W#%qvU# z!L8p*B9Tllc7mm0u`2GsGe0jXT4V1VCOdkzJUw$@^u!6q`pY9&hH4HHiKI#?Rw*xz zh4XpfnV;JZ53{4Aj2%5(o}Lw9^u!6Y2ktK@xeV|-a|F99EY6dGjS@)};#Asm8x~pO zr}pgS{a^lHv9g1K@#HXLN44_w&VuA?uhDbQmrY^?u)lu*Z8+(vy~D#v_V=6Gs&u(m ziA3T9HzDeAgs@$czcF?6C_}FvB=X@8o0bO4rbYk=G|nzhFA*_U16^Gl|DXR%cFcYV zcjQcxziDeLR&8{WEby(@-(a`7%IbdyUNfH|kw~T!w>dR&EJSNOmE!d8|8&Gb@c;k= z$Vo&&RD*P4knqCR0^u4@4wD@{OQ3N!H7;tj+mg+a_{|>P`ObG3e$}~p%G)0dQBxyI z%oG!?Eby)FH~1fa`m=GD2HfGhzY>Y0VtB2b*NF%&Rjqc;zG5}eYp*R>CafkLCcN}R zo>q$nVNoUa>|yA|10)Ukf_ZF1EWBVUq;~z{MSS=2%V{%5veP{{$bGLIv>FP6$S5y0 zdtV}vQ~*DvK2?N3*v2X~ENy4@6_-=r-cCqqg4$X_%?k+5Z?SJRnlIrPU=%tq! z+_RhUq^&>7Sifg0V%aDYE2B}?wlvce3UN4@q}qY9yDl<>lZgqxcQEnWh7)g8wA2N)aZC)L|)napfK91$m`8MfPsmP_<%ixP?C z97RPGK+8_S%grh>fA6zxKP%!&B$645iV%xF$}3X(D#0<2eQ_(IewNabNF>ulDMLa# zVhG2z*OIL|dV#Nf2$thKcjfGu0L zP*cJ(_7aKY+@jX`5Np2ijc@S&`|s1&*GF@6Gm%JybUIBYlVNOZj9@Ux(9jU$DySi9`ZLQ8;_{EKff9q!c!ZsVqNLBBJv;u`V~?dDc;Eq&6RAAOWRho|d8V9~mq;X4fTLh-+O&zWu`xoS zP;EM$uCJ@Bt4*a+wdEG1QmLz}ODB`baUhjUCPx=6STO#?6HiFXOCmXka5E&F1B z9}ffqfyv=swQ=_B+1lFLT7Ym&YU?DsIRa0G;5g2WX4me6acek%^DvW z85ysssTr@Us~aC18yiohQscllke1>kkw_#GiKOcI|7$KTF3MJY8UO$Q07*qoM6N<$ Ef&tD{W&i*H diff --git a/public/img/rewst_dark.png b/public/img/rewst_dark.png deleted file mode 100644 index b4b215b8ec4632c5d5f724e4862f1b48280e4870..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14869 zcmV+wI_kxVP)J5d00001b5ch_0Itp) z=>Px#1ZP1_K>z@;j|==^1poj532;bRa{vGf6951U69E94oEQKAIjTuSK~#8N?VSmn z996adPiD_DlbKAC$)1pf1PBRXQJ<)Q3iw2PxG&%WXyhTge?h@N@Dv})A6!8HY_f?8 zhz|tChu}kaEMgELB!PfrBYQGSX79}U&i7VVPjz)wcU8}lnY{bub4YhjcXf5utzVsU z?z#7h#bU8oEEbE!VzF2(7K_C)%o&yZcYlN5^&Yi_YGrCisCBFLsI5_JR{N{kDm9D6 zGD6s&1Z%q5ht*C{Tc9>pZH!uhTDe+p(%RIz)DW#5YEP^ERBfx8#bU7xD#xqct+rBa zn;Kq}D^5{tj~bu-p4wzJi^XCYa1g4y)LvI3+zS$;IM$?ww{?t~#bU7x2#2WsyV@&i zLBi8tdrj?hH9|^@#WIW-X*sMymSMq25v*aaEO+mlVs)v14UoX{q$|`sGYyZ%>bGY-y2Q?Fo5m#}2vTmDT3;LN$#o z`2fcS4-V0KO3h-i3?~&cY}Fmu~_ygI2FU0acT(0 zm1-rtfS{0JhszfqBA;6@Pu@3esw^BoUP=lJrBlTUp$e9&K6p=;T2)DjEYQ!+9yeAt zH#NzI_I7hnlAoWe)~IH^EQ@6rFq{QzyxKWxSD9yu>;0UlUe(uCtUf*O09jmFDMjin zAym0UDhT7Lsc_9#?~LuN+`U`syIe^$#|MY*B{lL|7K>#cGF$}&!C+)j&p0 zoi$6AAGA4qyViNpfud7F!WHJ3#bViK>`TEaRhyx9 zK+7nwriPgp%B2P6?u%!uQWwJAokO#JJSJx}m zXGji>D)`@-XBLZPpMm2t)D){BP?RX#p!T@hb862fAOBqK8nr4l17dR0lqvG9!)}Gg%qPk$;84!nN(CL zCHmM43ATTpHch@bf3B&S8f?WV(C^sU-Y(nK0lKhj4i{-=9 zr^)hz50bOgJ~n$+THH0cs7Stc$U)NEo4c-RAV9F*YHgD@n_H5vq)4b`ylAmlhL&`f zW^g!7jls$@&9fx$o-|ReIBba=H)V=+^z@h=VaUw$yKCjdKRsdIbM&N1^7skw8w4(G8K%&CRE8sX3dhyf&w{ZR+`487*#Mzx;na~rM_7jckPiqI~$~^dxF@;p|J9F`HKlQjgqXz?L(c=d$9Ix2)? zQdy}yv}u!EvgA;iI@*+C843#vq+v&cY*@42*tU(^WcTJ>vP*62#;sDjqfUA{yQNe= zUtCsVLdmEU>02Mzv{`O={dH;R>`cCDpxokCwcX~K#bViK45o+mF16#-C=g9??xKZ8 ztb*#Oc%?+Wq{G$A8e3dqW?%rkrf&79Uj6%8dF_Q)W%rvqBvIcgUCn!?vt_SzwW>8G zq-k@#tbh4US^3;6vSIal+1r{>kt@vVb@8_X{o>cxZINeJ|3lWbGJ|p&%-Zm(^Uz|k z>`MmI!}^IDVyi6%o(eQ)wVAcwYZqTPvr|JwST(g^relyte8M zsegUDbSCyD-gY?aNgZ<1ea z*eG{5)k#}=djCbWo7C)V4HnBVV6X)1?P}z%ObG)Luy{hH{OiI4W%ih{Do83p4dd6LOhy}I&s+4JU3Gx?s%O!8g9IKnkbdV0F0qq$vLcQ;EzOOw>q?~&Gq z79(IS4b4)&vtG7r){t_;Hu=-;TDh;eUN-i0`L|5fJ>j6mVi^X6U-|vxLA4L56`_a> zT7KY|cgyiJr%Th$1`<^=ak7Sm$%MNfhRCc@?`WBZj{ndQZ_6sz!HK`S6h!pu9`MQH zQDstCUThS!C($L{o$az=T$$Y4*(877+vRl zwoBvo?WzJrGOnsp$}7f7QL#yLWq@F9S^bu@HMQyc2Szv8N>N#fyj0XF-)!BLrcy~B zRXbm;PR*xd7K>##5JwFdCxcM2E?~wCcS)G$pszGt+4{+kN>N>_tX=sJX{~KAua#F< z$=o9r$fTNTGY6FylJTADfxU3=v(h1H73X=wj~rE4AZv8bE^Jq^>dw%j$JF?3B-PpnLJS@l@!aXP0jk3 zbiQ}QGAV3I$c{}rq@x+Za`e%Wts-fut(BI>b}1QKYC<+%N3>cSnq`-M#(jUj;JqbE zi{wf5`(9|OPkwKTZE9aq`;%Ij$7r!wh7q|03&l8BjoPXdpPD^WE?B%+J~i(EIl5-D z%&w@A;+|glTZ5CMa=CQLVrk#KN9s22lI~8b&HE(7h?9y|qNPQ4Z`dL&J6fctNF}PM zK-yc|rEc?X{d<1|t5>&IC|gGt$Q66GnIG!OmNCMa-}R7rX0cdC1i1w3NVU(Y%`wlE z_fMWA%NH$@W2e+eqPtsEr)2t=G4k%IQ)EqDy}Y3U1aF@_Sw1^=wlwc-kUekJnQ?&0 zlFc+LFs~L$BB3I+Wt(h!W4*L&Zq|46*Ze6QRUo?xd*qDnIt>NW)-I%0g7JZ@%ww@w zMi9AN7*?-gs7;FZPn#;oCB@2x*%g?9;nKsF$RT4{#!uvks!Ago9bKI&7F|X#_UixJ zLyUm2LrT;}OKWoMU%ryX?C%{K3N}=f>6fPUG_o5^7lU_Yu~_oJOj#bm27_FJMImTv zJ-$OU^qZqrS{VGXBdV+AgR^Iw$IN$y;Iyh>?Uhd1q9XJwjl@oo2DRD{t5bJwkKC{C zL*hEr^7+~LY_;8;az(-!cH@D9Q0m4k7E45O2oX^lBU_mF4(nfNl!I)7MfpP79K}af zPmsCg30Rn|yAW(GSBT`I(PO&%<3k%JBSM4A* zqbmX8)^D<@A>rT;)R^MfaNV+{vizV$W^cQ?x&tfK>6yFq#g}ANW23xL-yj*xqffl$3)?eFH9#bU{dPjFaWn2{|E$zwJa zMz)lzc|lLO=suvf%DkX@Fpy;Pum}a6If|2vD=wCjo?fZlTr2I(Oc9g5GdwHQ*ETjc z%VXQN_gk!h4Agq{y3WvW@sEQ>S~4-` zKdCWHk4w>OFij07$4O=nFxdnvLl??Qiq*5~lIHp*Q|Rdh&+5hcdinUDo{&ejrg=8$ zROs(K>4PGlJ5}V$%S3+qLy>d7BJ#0QoWF;#TZQU&4H$o<)}oJtyEl8KK=)BJB$Pzj zVyMKTe{ddJES4B7P`gNt1snRSQ${1(4!t!)8+OFXL82m|9VTm;KWtk*Yf zm7Tk5rKi&=S9o;WHo5wxm*vSiPZ-7|eF)dQc_Np6Lp`XE=ue+0GNDRj>J;^~H2f`6 zVWG#dv_##vGLg}0<26+N&`Bb{R^j@%ekOp&RJ5*=M%k&MVzEcG2nTofbjdS48KEe> zgU>q;Efz}*(1^@rb#|h7VR;cxuyhv?s4f+Zwk>;P?V5G+__pox{g+>n6^*{Z%FMz* z*!RWHiPY3+n1(2osvxOQjn;n=GuIPyAG^;HE|&QE%qK;zXFk15R_b2dslnk6=}w6j z|8Le%@ZpxU{1pZ6%(HBB@|T7^ znR0r;c_K^HldMvY$|#-w=4ut8am@Xf16RBdw*~5<-E*gY&fg&+^0;)!e@LrrH=dU6 zaIpr75vI!O`qqNl-sBULz`4W`}dh34PTQAROXoxtZN$~mS zip-gB2%;z2v#{CdB)=U<;>Bl0+(3_gh1Co#x>hU!&_@|^u_Ld@D zY5Rlg_g~IKi^VdM$)+B)YH4xarq)*3($t~>?F4yH9hb*69Ag7%Vs+j*A_vUTC|1K* z*HbdNsbtQI=W*cuT`G9friy&!Ovh^j6+YLC`nj~pdiAy%b!T>Gb|3N^{@ZzIu~t8MBm##l1;E+ty*fGtyT5)a^JSC za#y0>JWm@kbIONB4n8P7N_Bi%ZZp{1%6x&*!pS1brs1x zSUoE4fkhh3s#8JR^;%pqa^*fwP-7LDW&S)B@{{temM#_fIQ}2O*b6hs5y{?ub+c1id# zN{0scL$yzvXF*KU-|<=fGkGgKDiMaEs1d8bs{N;$ z@uVYMG_Xi*z8c$RyeStEMnmTU@8P1MA43e%Jl`xA5aU0&aq@i(xb^;# z4>$F5@N)BulhfgRtW%?Xx;HQvM1uDBH#OSct7`b?;m zI{8CR6+7XYAG|9P?h$t;6n{907*f}@R?B-3Z?@CFd48pBIayQHXIHX z4gEjVqE;BQtp1H^y#Ji!zfs{LXT_kc-bNE};jm9!)E`viVx*cmAGlCirHGZapHWMV z;|jQFnXZHxHn>o8K^XEAwJX*3G8&+s#RgGPZotzDnXCoNgvQl zN1cdFu>wM$k+#4D7pXfcJ}TVNZ&9PlHqPhZBsFz|`|w>jTqysd#G_X2l!gfa?*a;!Rz1#K&Z=Wnd7d6@GskR#N->^zJF9w#@9sKZj+ z1&RIpOPI}e^lmI)RO^pe0mEw;?{=FSGwmXRcu-zAudFFLlpL)_dx%UF!3tKK1N3_k ztFYd`Nf!ECuakf2fjohzA&|6w zff0h6tB3=kJJWrTcZdr)j?}XJz6*!#a^WB@Y4iFI05lwyS7QbMgu^5{ecz8~5U0}w z;bl?Zs4xvmu1aPuC~|>;u)m&tMiiVvz-SQ85;}R|n6sqbzpLeQK6CNUYK*I86|B_c zoC?2lfRoKRp;IhQsM!y}TC~tH&s51N7#oOp717O0g>!ZF8X#!$a1}gPSv*YS-tuE*OMYGdfv+e&uyUFHO!&)52etO+b~_LKCvL7&V+0v zT>W?BfrRh5T}@B4@h-iP>%q&2Gfxo-)%4o_Yz8+dr+b^OOC2oltBE5_CRtAOGA>eh9cu%C91TRB<#~6u_Pa<^o!Ucb|8X^*Nps@F;P`!PHS@`yaI(RmOxo8spgvwBou^?5{L|Z0!BwgR1X}nI++LF zZTPkqCA@Uu;-LqUQV$nAo%cEqW5G^vtn*2K{9cVV0Hg-U84e}XdHKEjtmG0b4q|#p zh-Y=6-f)6@<(#VaT%J;qdcUu(6}fobaW;Iu&2)$_!z~{Xd7gt2X4CqYZ=HwRqMk1TC z&|C5U)%rq%12sB4{(VmVDk#~`ZZ4dgU9c!3ef2ewTW%A11y4Vn_p4Bye)<`*Wa&~V zFCQmUYoOoEukmD%AzwoMmKzdM zws59e1Q*%B#qppT+o3oyRZo-rEu<3|Wk4H>BZA!Z`K(u@=&AgqT9l+V`623|e&Vg~ z@pwdZByfD=Agd*HrJ&rEaetk*}p$9z5Z>!OB7ZvKNxZ|&3f0Fw` zI8R|OWhm#X`8`z^E?(-cC^|OLO!D)D$b`z2da!SViHtCy4lItqlZ0l56vQyu^`8PK z31Ous?0N6`i9$9H>oaQUUBrwP49i`?xEyVguy2>P#h3Ls1&Gy!7hNPj{LznP@u7#x z)G0MGTSLNZVg(=l=tpJa#*K32mE72=jPM^Ha}w#j`QHSMjTtJwp+-ndZsccb-k~^z zf|L}vV#UG&B$uPMAZ`To?s4H6u~IV)-*X}3Nw9J_HDbI!DkQMEc)cf+-omIM3!gXV z+}#(?J^|iR++HzC0K!5xwr6U|B0w1l-lr>8F7d8hC!8}Ek>|H@j1eIO8NvUST7YL^ z1dU2~gXi3oek`Z@*m~ zzit(|jJ8Mvj_Y!dRGw7hVr4iB4TFk#iayU%<8|(ytoXsdcp@%TT!+>h1;CIG3P5QL zsRqIM^W8Q18{Q0gsHh-Rc*Ncf{Z1|F%&{~8eqWFW#n2fFBs1=8IpA|<5nkU##y%2C zN8KJnQU2^aOe1Zh5x}7cD)e;E2jWgA2H`J4LFWbDFeMrcH%cYhedh~r#2dQtZ`^(3 z{oc<9nc3z*c~~^u^xnavjue?VQNJe3zLN+K+W|tsH7e>)dCN{55UW#9J59Z#0+}?i zS}H5!c%KgA$B#GO)-QhX3+d?SFu5=fG`9QH7`lO5pG~MoGK2|)blhdR+j18tY~wMx zD#`=+8{^l!^GM?z5F$hkkr=$nnw17uq`ZwU;36OlidwJ2hpB(^kE6t^aHa~$4YgxI z

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 Hu0mjfO=;&+ diff --git a/public/languageList.json b/public/languageList.json new file mode 100644 index 000000000000..3bd0ec3d8e82 --- /dev/null +++ b/public/languageList.json @@ -0,0 +1,242 @@ +[ + { + "language": "Arabic", + "Geographic area": "Saudi Arabia", + "tag": "ar-SA", + "LCID": "1025" + }, + { + "language": "Bulgarian", + "Geographic area": "Bulgaria", + "tag": "bg-BG", + "LCID": "1026" + }, + { + "language": "Chinese (Simplified)", + "Geographic area": "People's Republic of China", + "tag": "zh-CN", + "LCID": "2052" + }, + { + "language": "Chinese", + "Geographic area": "Taiwan", + "tag": "zh-TW", + "LCID": "1028" + }, + { + "language": "Croatian", + "Geographic area": "Croatia", + "tag": "hr-HR", + "LCID": "1050" + }, + { + "language": "Czech", + "Geographic area": "Czech Republic", + "tag": "cs-CZ", + "LCID": "1029" + }, + { + "language": "Danish", + "Geographic area": "Denmark", + "tag": "da-DK", + "LCID": "1030" + }, + { + "language": "Dutch", + "Geographic area": "Netherlands", + "tag": "nl-NL", + "LCID": "1043" + }, + { + "language": "English", + "Geographic area": "United States", + "tag": "en-US", + "LCID": "1033" + }, + { + "language": "Estonian", + "Geographic area": "Estonia", + "tag": "et-EE", + "LCID": "1061" + }, + { + "language": "Finnish", + "Geographic area": "Finland", + "tag": "fi-FI", + "LCID": "1035" + }, + { + "language": "French", + "Geographic area": "France", + "tag": "fr-FR", + "LCID": "1036" + }, + { + "language": "German", + "Geographic area": "Germany", + "tag": "de-DE", + "LCID": "1031" + }, + { + "language": "Greek", + "Geographic area": "Greece", + "tag": "el-GR", + "LCID": "1032" + }, + { + "language": "Hebrew", + "Geographic area": "Israel", + "tag": "he-IL", + "LCID": "1037" + }, + { + "language": "Hindi", + "Geographic area": "India", + "tag": "hi-IN", + "LCID": "1081" + }, + { + "language": "Hungarian", + "Geographic area": "Hungary", + "tag": "hu-HU", + "LCID": "1038" + }, + { + "language": "Indonesian", + "Geographic area": "Indonesia", + "tag": "id-ID", + "LCID": "1057" + }, + { + "language": "Italian", + "Geographic area": "Italy", + "tag": "it-IT", + "LCID": "1040" + }, + { + "language": "Japanese", + "Geographic area": "Japan", + "tag": "ja-JP", + "LCID": "1041" + }, + { + "language": "Kazakh", + "Geographic area": "Kazakhstan", + "tag": "kk-KZ", + "LCID": "1087" + }, + { + "language": "Korean", + "Geographic area": "Korea", + "tag": "ko-KR", + "LCID": "1042" + }, + { + "language": "Latvian", + "Geographic area": "Latvia", + "tag": "lv-LV", + "LCID": "1062" + }, + { + "language": "Lithuanian", + "Geographic area": "Lithuania", + "tag": "lt-LT", + "LCID": "1063" + }, + { + "language": "Malay", + "Geographic area": "Malaysia", + "tag": "ms-MY", + "LCID": "1086" + }, + { + "language": "Norwegian (Bokmål)", + "Geographic area": "Norway", + "tag": "nb-NO", + "LCID": "1044" + }, + { + "language": "Polish", + "Geographic area": "Poland", + "tag": "pl-PL", + "LCID": "1045" + }, + { + "language": "Portuguese", + "Geographic area": "Brazil", + "tag": "pt-BR", + "LCID": "1046" + }, + { + "language": "Portuguese", + "Geographic area": "Portugal", + "tag": "pt-PT", + "LCID": "2070" + }, + { + "language": "Romanian", + "Geographic area": "Romania", + "tag": "ro-RO", + "LCID": "1048" + }, + { + "language": "Russian", + "Geographic area": "Russia", + "tag": "ru-RU", + "LCID": "1049" + }, + { + "language": "Serbian (Latin)", + "Geographic area": "Serbia", + "tag": "sr-latn-RS", + "LCID": "2074" + }, + { + "language": "Slovak", + "Geographic area": "Slovakia", + "tag": "sk-SK", + "LCID": "1051" + }, + { + "language": "Slovenian", + "Geographic area": "Slovenia", + "tag": "sl-SI", + "LCID": "1060" + }, + { + "language": "Spanish", + "Geographic area": "Spain", + "tag": "es-ES", + "LCID": "3082" + }, + { + "language": "Swedish", + "Geographic area": "Sweden", + "tag": "sv-SE", + "LCID": "1053" + }, + { + "language": "Thai", + "Geographic area": "Thailand", + "tag": "th-TH", + "LCID": "1054" + }, + { + "language": "Turkish", + "Geographic area": "Turkey", + "tag": "tr-TR", + "LCID": "1055" + }, + { + "language": "Ukrainian", + "Geographic area": "Ukrainian", + "tag": "uk-UA", + "LCID": "1058" + }, + { + "language": "Vietnamese", + "Geographic area": "Vietnam", + "tag": "vi-VN", + "LCID": "1066" + } +] diff --git a/public/logo.png b/public/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..4c080e46ea188d31ea2a90f29fb58b3222b3b863 GIT binary patch literal 16372 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®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 SuK-*DL0LN;Z#?F6<$nN<@nEh1 diff --git a/public/PermissionsList.json b/public/permissionsList.json similarity index 100% rename from public/PermissionsList.json rename to public/permissionsList.json diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000000..e9e57dc4d41b --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/public/safari-pinned-tab.svg b/public/safari-pinned-tab.svg deleted file mode 100644 index 372cf4e79eb9..000000000000 --- a/public/safari-pinned-tab.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - -Created by potrace 1.14, written by Peter Selinger 2001-2017 - - - - - - - - diff --git a/public/sponsors/RoB-light.png b/public/sponsors/RoB-light.png new file mode 100644 index 0000000000000000000000000000000000000000..788811e2d3e2b53b9fa70fff9b09237415f7b944 GIT binary patch literal 4003 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 literal 0 HcmV?d00001 diff --git a/public/sponsors/RoB-light.svg b/public/sponsors/RoB-light.svg new file mode 100644 index 000000000000..0673b2a8a449 --- /dev/null +++ b/public/sponsors/RoB-light.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/sponsors/RoB.png b/public/sponsors/RoB.png new file mode 100644 index 0000000000000000000000000000000000000000..37da39dea601341ef12bb008cdc64d3d0b89a16c GIT binary patch literal 2280 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 I{1hqfZ=I0^>Hq)$ literal 0 HcmV?d00001 diff --git a/public/sponsors/RoB.svg b/public/sponsors/RoB.svg new file mode 100644 index 000000000000..d188e1eb541b --- /dev/null +++ b/public/sponsors/RoB.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/sponsors/augmentt-dark.png b/public/sponsors/augmentt-dark.png new file mode 100644 index 0000000000000000000000000000000000000000..e642669ef13f0a6aa18ed443c6851ba8e623a12e GIT binary patch literal 2748 zcmZuzc{~(a8=l3G7%F>6m$79Vlzs17W)y|OSRxE#9Za@lxh-~Tj4f+5mdT!_>|<$^ zWztZx#B?PMVM@q;$G!La=lj0r_j}IsyzhD6_nhPMD`4|BzGw^p)Ms$*xtOdw9#%GB=kIb~I4wVifwGpnZA%K?E#AkF}eumT9+BoG1s zvK*2{(SQBnZRCL9zw;oLR|SFq$5@JD5tG37cixxf58=k*VgG;hzYYa}0f74)05(@$o+AW9qz@i=0QWh)ZK&rQ8-f2hs$(oL@iC>#ikA zMr1^Fi73k@e->)WHwDiELEbu;-uH4yaF5vTU7*eXxH&6ghqv0)UMR|&?U>!^7z}TD z)1l(|KiE|%AzbA*wm~(CBTF?%uOm1vy;rLiX*%(&J6yu9R3N}ew?ucuAmG)9y}I)i zO($CR;<@5`QhanQthz6L8BxV*Q&bTCU5I|%P7LjC}LM#PLuj7@Go;r>) zZmq-y*z$u#g#)^anws2|PYl<7ajeI(`7Ay#WlG)r8>%5#+HAlE|kBAkI zsX%HtI<4~>wDKi&paR$^#uimQ-r6GNo~@QteS7Y*KT zTk2TQ{1I!g!rZT7l9-f?XFz2I>FTv;u*M6;Y+MylUAh|U;$VH>FZ*XM5uC+leZ@1t z)HPUl1gypB0MvUJu{5($5eFd$9i=U46uKAKkO*ZjtI=+P@ZJe`!VL|eWn69R>Nx|!@H_gI`9yhqQGE`z zAwlmnN#lD@zH}je3`#gF`$G{CWkowqvX|bYXn{a01UsRoYZ%@=%!%&uskLkPvGX)n z{HezDV#K5&zB+5{WvLVY%LF8fKdqyCuJANt^Ku7lZ{)c1yx(<>9IRJWIz`ukHdL|d z{6+}TuM4uj*O4@E8K14~n{p&Tu2=kfC`|l*bAKZ5H+<;+D7l;5DI>tg7eW&fUaY7{ zS}f*}F?TFE_L_|cVCMA3P~1fpyqa+r6)z^RH!PIBbK&O1auZoLdVhv zU$n#i5*g-}*f1Vi!;A5TGo=PEV7IiHFYnxD+nOiGf6+XDvAvlBQyTDTYDQeyTFfLty&iPHoQAq=3O^>nmuh;LGR5RDP#lekZ zqvU=YF8d=GNoJ7Wk`?yfK7MKch|%d(Ea1Y2B*#z{f#4?!BWm99EisxBD@}B{hl^wF zRI9zjjN-b8Eh}!OK<1$LZs949hG^;b$-XZq>G_?$0m+_VU;SFuQ_q`*el|-MwYR^% z-R|xYZyWz+$9cDI_0{^!SZri3H4R5My|8&O)h?Sfb9;y#7~?PHAsA7+pvtY)vpMc% zu%jHtpUP&ivSs+W(=uAHMzylzebuf$^@!$n;I0WlzGwH(+m$bQj{(2;LE5Kyuun&0 zi5`|3#@VBSo3+9vf#M84mzp&{8jLPqj0yeLt&09t z<(o{qVPxNxIt*u6#G;+Kr@ttUOpwC#u%w3bO;4E0-Z_xVvuR`{8UIYZgKDb>hTnrG zHqBjUeF`%GwWd+mhame$clDE39LWvn50CVg^7~}ga%FF=l!cGR{t|wn+mboA6O?Nm zQKZ;&ogN-joY*kTlURHv7}fp(Q!861#8k*kzx%+ssa7i?@B2o`HWzoR=e=o;Utwds zquYTqpXa@()jE8oXUb>LM~BfdP)! zoS+4d3)7mE)=rd(ckE?G;nLvpB?Y{t*LD8VJmH;R zCmTEI<;}utw`P{}G}s7_bFv#7uhdi!&Y#H{C<`E6Kplh;LRwQ6X$JG#g0Bg8o4s!a zGvpaMT_lPFI!s$`IkWy|N!1ots@Sfqij+F^7NFtz%<#>DN9zW}$2^AP|5 literal 0 HcmV?d00001 diff --git a/public/sponsors/augmentt-light.png b/public/sponsors/augmentt-light.png new file mode 100644 index 0000000000000000000000000000000000000000..53415a0d3f3728e2236d69d91c80e2a914045731 GIT binary patch literal 3238 zcmZuzc|6o>7yr#>2*V)PGIrVbbrfY{EUC$4O=#xkMsyhs*)=0eA>rB*vNg60*>|!; zh;prC8zp-vB2o99?tR~X-uFG9&-eL$&w0){&-w2;_pNc}+{Z+Y0RX^lX<>Sa#epnn zv9qzx^dgB#7J<8$3FfOzXSz?yi&+fNOLwUyLW(^S(sY=P9Va_W9_w7hO&@n$8i9qM_5b1jdK7>FKq4G~vNANZ zv^7Av|8)IX0n7cTQwmG}G%%|V`0vb1256T0ca^4w#?RZ;u|0G@<7O}baN1d#Vr&Cl zKW2uIj(-q-d8c_fnNwai(ijZQXV04{BDX7Ky`Z=kOttnhv zpY-&4F<0ZnirHkAV9O}K@?)*>ji$0-YGPvIy40)2-~XC)e|>%Uey*TD?Qk%Zoa{3n z*6uUE+!_{w_`1E&6~iNOI`n@ONq8zC;-f6J7I#6;&-x90kuI# zd6)GapXpXx;07WZK(w#34U3fnU(x4QCO$vPAFh-fC@j=_8S%VPCDU$jbO8x|E_>65 zxLnF+FGve~7Rs*cUtTz(`_=6Z!=n1O+^xpK)Fef}j}WMXNc3H+$; znD-PyKJo^q(6d_R#SW3&o^lQTS3OU6T5O(hh^#3skZYdEL{ zGUc9LV9U}LkmFiE@e9FP?Yw%_4TCpnvJx3QhQJJL5CD7kAY!eS!|3q`LDR$X*eBMX zO}9LlILK0fY@h1usC?(*j}cz-ol!QD`ip`wF7O41^@ZhTqUTr02TSH}OtV}@(riO_ zpIaZV1|OQerfI2~`pH<$x*(iK60QLMOer_6UKfX;&4!bd!=|Zb>0C|ikmCKpW=#Ph zU;}oHs_6>K6EB9D0ltLxy4;6DP4(T*5$|AtFvo`f9rzrRiqmJnz zGiM>0*)JXHRC4Y0{@ODpg+}GyRY5c$0Nm`-lmOrS!$fs#XAUX=(p=TRHgFh5&kh{% zqJ>x3_(qN=IxA~bm zOttF+R{+GuW#=AiV(cxj$NHb z_?{-+3tcL?no(k83k*;yR)U?Mq^_wiK{%b?dpQlK3<2A!OnJ5B>@d07_H;_mt+kk% zXzc*xHk|2VFa z(}XTHi{g`u(F=uI=rVx8_ef@zsvOMCEc=WTC|~Ytekfpx-H(c;6xj*p!1WZrZ`yNb z(G|2!tFG-^AsP~y0P0_u%&b33|yU6&C2j<8hJHTi=g$CRL7SGnrHgJ&YK zaet_yX6;1et!}GTV%XxF*EXD)!yQ*CsU7?yK~%4c7H#(C-96F=LKDGr?zf!ADJY2F zk*^rF^W7k+KYKY?WQ1K@s1hEXoyiShgb*+s=TU6L1NQ)M-Byepd?D2=u%e{CC(iA~ zpjJjU{PlgVxWa3B_ku1Y?Vw0m7DLD&M3Q$Gx_PPm{c_&8Mfp#_qcLg@pV0T9@bWox#}P0&J%O@%96$6A>%Zu9jn8E zw>u^S>p?2q@2Ejqr%Wh^vL!wAyzAsERhzptb9Mz{ zjdvgpv6UyjwY(ggdao4@-wyF#(Pa7=M5QweqEAERD|9Vr8%rGgYYd__V(^ha$qx=w9~BTTsny6y5eh$T5b~OOJ(*83LxcmdvrCOy zxbl`eGmIgDc=h|ZKt zXtGMYawHPjKtRp-pL7n;a@K>W<#73DThEV|RVaXqQZN|y0)qrQ-p*Sel?nw6#RKus zlO@VeS0;xR))ISHupM3W%)@9`@gpnu{>P>rc3OkCm>A*NH<`Wxj9neo zp)Zlrzblc-vtFJW+TDe1+M>p+66SAI%muHx7M*cy5+B~SSC;wKB0;Zc$;K?tn(?jR z@Mv^LNsobm*?T?F9^~P40r6l@C>ahjNEEAam}`;v)mKOx3Z@yI1>LKA)6$gF+pZmd zVaxCAvX$~%sW90}tJ#lc!?ed^RJ|3Iue2t{zQC(10_6kRE!5zvis6r|I&WhSOx6NL zovWtKRjkXV$JR~o3OjB(^LVMR*V6JBPUYwEPut51uf=UJpwGs{QTZW$tvIjReeb)u z!S}ud=Li|sw6b+fJydk@v7%2k&Pj}Pwk+B=qc*N$H@mldU#a8XXTCtnwYEL9R)ReZ zvQFe&kd#$jNx+!bi#2-fO}=g26%g{&ce8iMa`EyETx@x2*mpt)aRat9x08gds*RzC zi#*JAQ)#7HoeR(1+&Ze%&UM=w-L2^MbBfkS#B!`BM7dymC?#48#|(LD^hBPRAW zk6x(?**(y3R2Q4(dy_*+5b&cBmVgGLV3sS+s)Gq5^yCSsJHb~Ceh9PInygpt9IAag zLpj7~hu(h+7YF}IYFL+mOE@eqw6z_1Krhy9xRR@8$*w=pgW~YGB0i6`cN@C8Dz3HJ ze~#Tp+8olw>rBeGbJ~6c+zrgb5wcnal%aw33Isl&F@@iK5(q} zY1q4bEE~E=&Z>uqY8~nH_7=rG>^5dgK8)J83j4pi>(}j1cjEp6pJaRDJuh~7_vf;0 MiN%@H&k`d31#5S|kpKVy literal 0 HcmV?d00001 diff --git a/public/sponsors/huntress_teal.png b/public/sponsors/huntress_teal.png new file mode 100644 index 0000000000000000000000000000000000000000..40f6df3d3e55e60b596e7f25991c71cc96ff5412 GIT binary patch literal 2662 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 literal 0 HcmV?d00001 diff --git a/public/sponsors/ninjaone.png b/public/sponsors/ninjaone.png new file mode 100644 index 0000000000000000000000000000000000000000..cb3e1df2ec1c9dc01ea744cbf0f80356b2b30db0 GIT binary patch literal 3456 zcmZu!c{tQ<_y5jf7<<+%F}9Jih9M!#U=YTVecu@d*~w#&D5)WlCR?^FjWzrBD6NES zV{Md1vNSE$q<4DW_jmoS>%HD{U7!2&Ip;p--1qt8{^P!ewKU;i6=nqhfWs7nwqbA_ z17}!ZjJ2RzoWdYbq>YIIKz<{-#&Dnk`WE^C&~%IK(2I%T!^1I7kpRH?#z2=Y%H%+M+zFu=`VX9j{Yp#Q{!8TyZTGVrJV|Mz>GfNe==>(YBJP+s#KJf|Lm?!?P$K53rPR~b|q7^ zzFnOA=Di@|iHrP%{)t~p!&e%!gjskb11Y|Rh%0CT5Zfg9ik|cnWGb5^DYF9IipCye ztvqRm_GQ!0&11<7lmmlJ_28)p8%cA?L^Q&;aBU{(Fk&?6OW(O)$lFi}`)!A*sic{{ zq|wgRh03xA|J%IPiJIQg53TNk3C=^aJ%y997bHj;s&Be%CS!Eift(#08Q*)N^RGS~ z7QVTI2T}>;H*mUj3RK_8!pY}4nDKrwv((av{EGtUPS4(h`h?!JyI%=9_2}5l!O5=? z8^R_$CiU`bcV*@B8#2tyJJO7Lf-_kpQ)?f5#<{^I*fWH_yA_Rmp6WFKn&PH*qBf)g zw1FAj6`Zq_Qz&S4w5OnARUOSXsr3#$#xyw>*&yoP=sqUE)@Yyj=A!RajUl8Rux+6J zcY=P#+TJZbOyu38QW!Sd&-@vpf#n?6rwk8#DL;jSU^Y z>1tpL)W>w#$B#=IU-HjDBGTrk?1;W{qJ7OsNNzQuKZjm3weS z&a!bDE_W@`kTu9Ok(9Y>zEliSp1rbe4d`RXY5daBRlkPBS*~O$-T$bpOaz=yxn{}+ zE^+5+RVzVaAwQ$J743t$sIdcQ_u}=vcbngw;#ai4qo=}yzkHlb;>taT1F-CP&)f5l z;ul$4XwPawrGaawuBoG{!|@n|crZ1HS^!fO)U=T+h8S6+E91{<3Bu~mv&{Z7YT=#$ z1;eAF`7P76qA<8iG^vfLbS?sX7mNsf&6YK+*3UNtxu5-_liSXA+R1rIaRx~Dh0EhQ z0xTrjkx^L3#$)VwXux7bu!s$UO=M z7?UpNFwC7N!s%_!;)?kJ7gIi@AB=*=z)&i;k23Fs+T$SM8lIBM5X$(gcV+MSWT{2@ zeN7+tPt%V#3M$*@37z@@`NVndEhRG9V|OtpT%4&7zL5Ue8*L2k1_#XRtoRIsTDxk5 z^U;ahQ-Pkco>J@W{RHjV$s5Pi9fJ)bVesqH5^_kVpT;2bO&2_~dthJ95|;A-$ZxCDk`wuDV{y^;r!jn6{772=|XcIxH#d1(s1qk8x&(wr8Xnf#{SRu(V)$O<`XaK2fb zp5-Oaq!jkjOzS3`_2DcR#W-&>Wpkv0^V!+m2#mPf!}%AgH+wv=T?9zlUiYxy)gIuoI!hR&*@s)~ z>2;{K&P@VJ+)yq4xZ*D4dyx3O-w`dZk&930hVv%Nb%$wl)z?TSuHyce;HehUhWAUa zL$60K&P5$uKK_-J@9|h#HalD4VE$JTs?4SKJcwSrXxyn6Eu2BIsf{Z1V#HrJoF0?X z){&&ZtGI_{_0Nf5Jf-V)NCYYUMw02v_hIR+#y$dj236qpv=pllR4jJb-V{PB|koBoRXN*N7N4wEts; z$KMPHvCQ#<{BQl+vQ}y6)9R@+*yh#ge&)S2rl~gFWVQw1@+k6bfyt0)jRr|;{(}39 zG8Ftij+fLOIzK*LWZ_@FU4o8Cb6U20@N#JUr0&>K;%VhHwa%HC59GE=Kkw;e5zp)U zt53M6w^84II}dDIxHD-E&jXbl;>H-$Bg&Kczrvbvc^v{9z)lHhMEyssMciu*@E3&ux{ z9-l~t#NKs!+8SnZy8FVNETg!Q)-5!zXD}~mHWf>8sy#unRCzQUnw?M+dLZt(t~Xla z|HdF8q;(VLQub@77+2q?`jz&V{`+`FQgb{x`O9UHmSIf_=RxWy&)u2q#KDfRa^g}wa`wbT zS@jlFz6w@0Vw2vA}vd#l1M41T@H|MrDjM1!MkqD6;{_Uip_JviVrgpKpYzktLdJ;Fa8$ucxW4sk7Y#spHnv`M4r|k;vl!AJ>5bQXnV*;wlsu z(*NlF-y8!$e#XIEtqlSLqFi?40+-D5GakUz`{u>Pe*gdYUrPZ90HnhJ9&Uw}j;r%PK)Yd_2SunzAT3yJ{%STgbq!Z{kV_#m*n z&`Kid;pF|nwqldop-&n87w=Qj5*8A`Yns^)z)3G^K@n10af zrWe{F zTcX{i3NJR!uQ5)|=$VVK#R(^${}Qe5qO$sE^($Hq_FD-JtM#3MN=}baD%4AFubQhHV#WYt!(=A9?JlH}cilD^v<|ul z`ChOLnc{1b&ApToKSnslKDe>WGw#nGsV6!x_2c`}!=IH1VPoCYS!g5?m+y}>a%JA6 z=%Zd~XRX;hP{x%-^rwd>5yv7ICXeDu7v?pdxG=9$LZY_S%9*!4^670sj3YDCl82Gw)7bg#!X_ZnTbK+LpzOyukFT=p{1cb9kez zdp5>LbQ4Ay6z5$huM+yRcP+Cw9rn^58XtliOGXM3;=1YwjisYqy6|D5Lz{gk5A{_T zC$@AWS|m0tyDYcfHW*4a&c8O#CuxFAg_~fxB0>B``_q zKLc01$l%%gKtPX~zOjvgXW_HL(|c7=F-BRhHDWO7woKxBywgSwy6~Chs6%30CeegK zlANQgW|xQ|`dmQ<4+Kax|)S{ntf#9vj9#q;^WpAg;NgRFcF^ifOwjv1y9oVuTcqOCIS+T1< zlah|#gtBQ$fu-4kT1_6}o?4ii9;v$0xON}RO2$o`b?i+u5y-j_$7O4deK)<2Zw;hk zBq8Zf9u_xBh8c1aP09t9dcj^qqp-*?)56=u@P;A4AvsRTtZE){QQDi>y=-}nptd<= zeZFOO_XI#iMg~vmc1qTezb%G72uFl^C_WP6pq9MN+wzv_2;7_HFK4<<>A!zJC+No4 z-=iKI*^>i*N2--SO8>!c)z(>HlpIv=?6ed}m$jlf9C}cRpBms-zci?cbwPrv02|cSuTX$;R9b{kG<7Wa$tnslZzfT)BoS$m~It^O&-};dHOM>A!Da z)CW(~i+gTN(3; zAvJF^JWT_z?HVgy<>&g-AO$%VbbN|$tgl(nk7o&iGAkIYTzwlcwH_&SC!v0XVX*bN zW`NfnwgcU)tZ%QXHS{SLuDdv((l*I6@sabNU7C%zG2wo^p>gj9q_?ngV~st_;O=Z+ zcax=xKrJKwRK*+*VfUwQqQai09aKI$9v|%g%{`=kbxXDNAhpBcrQuYB6$|g!m^X`g z=`J1hTvdc^%0MzqTAW>H5befYSV$1oquMxis^VVA!lLkc5{UXSnATy%aH%0^g@1o^ zslF)}GOXdj8-DW09}@01za|N+b%i3YT$x10q7Xw=3o${HrCTc@5B>a%X8!;1^-Q(W YK`#==yLDL&4g2RAX=Q(=(!wk8FO~=i3;+NC literal 0 HcmV?d00001 diff --git a/public/sponsors/rewst.png b/public/sponsors/rewst.png new file mode 100644 index 0000000000000000000000000000000000000000..f1c2a948afb18ffbed6db8267255439b27063138 GIT binary patch literal 4517 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 literal 0 HcmV?d00001 diff --git a/public/sponsors/rewst_dark.png b/public/sponsors/rewst_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..38135052133e1e64219f9880b4cab4c4ecbd6c7d GIT binary patch literal 4406 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 P@9?jsrl*Qgwtw*-VNNXl literal 0 HcmV?d00001 diff --git a/public/version.json b/public/version.json new file mode 100644 index 000000000000..e7af43a4ee4c --- /dev/null +++ b/public/version.json @@ -0,0 +1,3 @@ +{ + "version": "7.0.2" +} diff --git a/public/version_latest.txt b/public/version_latest.txt index 4c77920fd2c5..b677887875d3 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1,5 @@ +<<<<<<< HEAD 6.4.1 +======= +99.99.99 +>>>>>>> fceac3a966cf35825ceb2e2e9ba0d3e26dac40b5 diff --git a/src/App.jsx b/src/App.jsx deleted file mode 100644 index 422ebac60c62..000000000000 --- a/src/App.jsx +++ /dev/null @@ -1,90 +0,0 @@ -import React, { Suspense } from 'react' -import { BrowserRouter, Route, Routes, Navigate, useLocation } from 'react-router-dom' -import { PrivateRoute, FullScreenLoading, ErrorBoundary } from 'src/components/utilities' -import 'src/scss/style.scss' -import { Helmet, HelmetProvider } from 'react-helmet-async' -import Skeleton from 'react-loading-skeleton' -import TimeAgo from 'javascript-time-ago' -import en from 'javascript-time-ago/locale/en.json' -TimeAgo.addDefaultLocale(en) -import { library } from '@fortawesome/fontawesome-svg-core' -import { fas } from '@fortawesome/free-solid-svg-icons' -import routes from 'src/routes' -import importsMap from './importsMap' - -library.add(fas) - -const dynamicImport = (path) => { - return importsMap[path] || null -} - -const DefaultLayout = React.lazy(() => import('./layout/DefaultLayout')) -const Page401 = React.lazy(() => import('./views/pages/page401/Page401')) -const Page403 = React.lazy(() => import('./views/pages/page403/Page403')) -const Page404 = React.lazy(() => import('./views/pages/page404/Page404')) -const Page500 = React.lazy(() => import('./views/pages/page500/Page500')) -const PageLogOut = React.lazy(() => import('src/views/pages/LogoutRedirect/PageLogOut')) -const Login = React.lazy(() => import('./views/pages/login/Login')) -const Logout = React.lazy(() => import('./views/pages/login/Logout')) -//we loop through the routes array, dynamicly create the component by using dynamicImport, add the component to the route array as 'component' key. - -const App = () => { - return ( - - - }> - - CIPP - - - } /> - } /> - } /> - } /> - } /> - } /> - } /> - - - - } - > - {routes.map((route, idx) => { - const allowedRoles = route.allowedRoles - const Routecomponent = dynamicImport(route.path) - //console.log('route', route) - //console.log('Routecomponent', Routecomponent) - return ( - route.component && ( - - }> - - - - - - } - /> - ) - ) - })} - } /> - - } /> - - - - - ) -} - -export default App diff --git a/src/App.test.js b/src/App.test.js deleted file mode 100644 index 8499039707b1..000000000000 --- a/src/App.test.js +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import { shallow } from 'enzyme/build' -import App from './App' -import Dashboard from './views/dashboard/Dashboard.js' - -it('mounts App without crashing', () => { - const wrapper = shallow() - wrapper.unmount() -}) - -it('mounts Dashboard without crashing', () => { - const wrapper = shallow() - wrapper.unmount() -}) diff --git a/src/_nav.jsx b/src/_nav.jsx deleted file mode 100644 index bc1505aa763e..000000000000 --- a/src/_nav.jsx +++ /dev/null @@ -1,893 +0,0 @@ -import React from 'react' -import { CNavGroup, CNavItem, CNavTitle } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - faHome, - faWrench, - faChartBar, - faBook, - faTablet, - faShieldAlt, - faExchangeAlt, - faHdd, - faLink, - faUsers, - faWindowRestore, - faKey, - faBus, - faExclamationTriangle, - faUserShield, - faEnvelope, - faToolbox, - faDownload, -} from '@fortawesome/free-solid-svg-icons' - -const _nav = [ - { - component: CNavItem, - name: 'Dashboard', - section: 'Dashboard', - to: '/home', - icon: , - }, - { - component: CNavTitle, - name: 'Identity Management', - }, - { - component: CNavGroup, - section: 'Identity Management', - name: 'Administration', - to: '/identity/administration', - icon: , - items: [ - { - component: CNavItem, - name: 'Users', - to: '/identity/administration/users', - }, - { - component: CNavItem, - name: 'Risky Users', - to: '/identity/administration/risky-users', - }, - { - component: CNavItem, - name: 'Groups', - to: '/identity/administration/groups', - }, - { - component: CNavItem, - name: 'Devices', - to: '/identity/administration/devices', - }, - { - component: CNavItem, - name: 'Deploy Group Template', - to: '/identity/administration/deploy-group-template', - }, - { - component: CNavItem, - name: 'Group Templates', - to: '/identity/administration/group-templates', - }, - { - component: CNavItem, - name: 'Deleted Items', - to: '/identity/administration/deleted-items', - }, - { - component: CNavItem, - name: 'Roles', - to: '/identity/administration/roles', - }, - { - component: CNavItem, - name: 'JIT Admin', - to: '/identity/administration/jit-admin', - }, - { - component: CNavItem, - name: 'Offboarding Wizard', - to: '/identity/administration/offboarding-wizard', - }, - ], - }, - { - component: CNavGroup, - name: 'Reports', - section: 'Identity Management', - to: '/identity/reports', - icon: , - items: [ - { - component: CNavItem, - name: 'MFA Report', - to: '/identity/reports/mfa-report', - }, - { - component: CNavItem, - name: 'Inactive Users', - to: '/identity/reports/inactive-users-report', - }, - { - component: CNavItem, - name: 'Sign-in Report', - to: '/identity/reports/signin-report', - }, - { - component: CNavItem, - name: 'AAD Connect Report', - to: '/identity/reports/azure-ad-connect-report', - }, - { - component: CNavItem, - name: 'Risk Detections', - to: '/identity/reports/risk-detections', - }, - ], - }, - { - component: CNavTitle, - name: 'Tenant Administration', - }, - { - component: CNavGroup, - name: 'Administration', - section: 'Tenant Administration', - to: '/tenant/administration', - icon: , - items: [ - { - component: CNavItem, - name: 'Tenants', - to: '/tenant/administration/tenants', - }, - { - component: CNavItem, - name: 'Alert Configuration', - to: '/tenant/administration/alert-configuration', - }, - { - component: CNavItem, - name: 'Audit Logs', - to: '/tenant/administration/audit-logs', - }, - { - component: CNavItem, - name: 'Enterprise Applications', - to: '/tenant/administration/enterprise-apps', - }, - { - component: CNavItem, - name: 'Secure Score', - to: '/tenant/administration/securescore', - }, - { - component: CNavItem, - name: 'App Consent Requests', - to: '/tenant/administration/app-consent-requests', - }, - { - component: CNavItem, - name: 'Authentication Methods', - to: '/tenant/administration/authentication-methods', - }, - { - component: CNavItem, - name: 'Tenant Onboarding', - to: '/tenant/administration/tenant-onboarding', - }, - { - component: CNavItem, - name: 'Tenant Offboarding', - to: '/tenant/administration/tenant-offboarding-wizard', - }, - { - component: CNavItem, - name: 'Partner Relationships', - to: '/tenant/administration/partner-relationships', - }, - ], - }, - { - component: CNavGroup, - name: 'Configuration Backup', - section: 'Tenant Administration', - to: '/cipp/gdap', - icon: , - items: [ - { - component: CNavItem, - name: 'Backup Wizard', - to: '/tenant/backup/backup-wizard', - }, - { - component: CNavItem, - name: 'Restore Wizard', - to: '/tenant/backup/restore-wizard', - }, - ], - }, - { - component: CNavGroup, - name: 'Tools', - section: 'Tenant Administration', - to: '/tenant/administration', - icon: , - items: [ - { - component: CNavItem, - name: 'Graph Explorer', - to: '/tenant/administration/graph-explorer', - }, - { - component: CNavItem, - name: 'Application Approval', - to: '/tenant/administration/appapproval', - }, - { - component: CNavItem, - name: 'IP Database', - to: '/tenant/tools/geoiplookup', - }, - { - component: CNavItem, - name: 'Tenant Lookup', - to: '/tenant/administration/tenantlookup', - }, - { - component: CNavItem, - name: 'Individual Domain Check', - to: '/tenant/standards/individual-domains', - }, - { - component: CNavItem, - name: 'BPA Report Builder', - to: '/tenant/tools/bpa-report-builder', - }, - ], - }, - { - component: CNavGroup, - name: 'Standards', - section: 'Tenant Administration', - to: '/tenant/standards', - icon: , - items: [ - { - component: CNavItem, - name: 'Edit Standards', - to: '/tenant/standards/list-applied-standards', - }, - { - component: CNavItem, - name: 'List Standards', - to: '/tenant/standards/list-standards', - }, - { - component: CNavItem, - name: 'Best Practice Analyser', - to: '/tenant/standards/bpa-report', - }, - { - component: CNavItem, - name: 'Domains Analyser', - to: '/tenant/standards/domains-analyser', - }, - ], - }, - { - component: CNavGroup, - name: 'Conditional Access', - section: 'Tenant Administration', - to: '/tenant/administration', - icon: , - items: [ - { - component: CNavItem, - name: 'CA Policies', - to: '/tenant/conditional/list-policies', - }, - { - component: CNavItem, - name: 'Deploy CA Policies', - to: '/tenant/conditional/deploy', - }, - { - component: CNavItem, - name: 'CA Policy Tester', - to: '/tenant/conditional/test-policy', - }, - { - component: CNavItem, - name: 'CA Vacation Mode', - to: '/tenant/conditional/deploy-vacation', - }, - { - component: CNavItem, - name: 'CA Templates', - to: '/tenant/conditional/list-template', - }, - { - component: CNavItem, - name: 'Named Locations', - to: '/tenant/conditional/list-named-locations', - }, - { - component: CNavItem, - name: 'Deploy Named Locations', - to: '/tenant/conditional/deploy-named-location', - }, - ], - }, - { - component: CNavGroup, - name: 'GDAP Management', - section: 'Tenant Administration', - to: '/cipp/gdap', - icon: , - items: [ - { - component: CNavItem, - name: 'Invite Wizard', - to: '/tenant/administration/gdap-invite-wizard', - }, - { - component: CNavItem, - name: 'Invite List', - to: '/tenant/administration/gdap-invites', - }, - { - component: CNavItem, - name: 'GDAP Relationships', - to: '/tenant/administration/gdap-relationships', - }, - { - component: CNavItem, - name: 'Role Wizard', - to: '/tenant/administration/gdap-role-wizard', - }, - { - component: CNavItem, - name: 'GDAP Roles', - to: '/tenant/administration/gdap-roles', - }, - ], - }, - { - component: CNavGroup, - name: 'Reports', - section: 'Tenant Administration', - to: '/tenant/reports', - icon: , - items: [ - { - component: CNavItem, - name: 'Licence Report', - to: '/tenant/administration/list-licenses', - }, - { - component: CNavItem, - name: 'Consented Applications', - to: '/tenant/administration/application-consent', - }, - { - component: CNavItem, - name: 'Service Health', - to: '/tenant/administration/service-health', - }, - ], - }, - { - component: CNavTitle, - name: 'Security & Compliance', - }, - { - component: CNavGroup, - name: 'Incidents & Alerts', - section: 'Security & Compliance', - to: '/security/incidents', - icon: , - items: [ - { - component: CNavItem, - name: 'Incidents', - to: '/security/incidents/list-incidents', - }, - { - component: CNavItem, - name: 'Alerts', - to: '/security/incidents/list-alerts', - }, - ], - }, - { - component: CNavGroup, - name: 'Defender', - section: 'Security & Compliance', - to: '/security/defender', - icon: , - items: [ - { - component: CNavItem, - name: 'Defender Status', - to: '/security/defender/list-defender', - }, - { - component: CNavItem, - name: 'Defender Deployment', - to: '/security/defender/deployment', - }, - { - component: CNavItem, - name: 'Vulnerabilities', - to: '/security/defender/list-defender-tvm', - }, - ], - }, - { - component: CNavGroup, - name: 'Reports', - section: 'Security & Compliance', - to: '/security/reports', - icon: , - items: [ - { - component: CNavItem, - name: 'Device Compliance', - to: '/security/reports/list-device-compliance', - }, - ], - }, - { - component: CNavTitle, - name: 'Intune', - }, - { - component: CNavGroup, - name: 'Applications', - section: 'Intune', - to: '/endpoint/applications', - icon: , - items: [ - { - component: CNavItem, - name: 'Applications', - to: '/endpoint/applications/list', - }, - { - component: CNavItem, - name: 'Application Queue', - to: '/endpoint/applications/queue', - }, - { - component: CNavItem, - name: 'Add Choco App', - to: '/endpoint/applications/add-choco-app', - }, - { - component: CNavItem, - name: 'Add Store App', - to: '/endpoint/applications/add-winget-app', - }, - { - component: CNavItem, - name: 'Add Office App', - to: '/endpoint/applications/add-office-app', - }, - { - component: CNavItem, - name: 'Add MSP App', - to: '/endpoint/applications/add-rmm-app', - }, - ], - }, - { - component: CNavGroup, - name: 'Autopilot', - section: 'Intune', - to: '/endpoint/autopilot', - icon: , - items: [ - { - component: CNavItem, - name: 'Autopilot Devices', - to: '/endpoint/autopilot/list-devices', - }, - { - component: CNavItem, - name: 'Add Autopilot Device', - to: '/endpoint/autopilot/add-device', - }, - { - component: CNavItem, - name: 'Profiles', - to: '/endpoint/autopilot/list-profiles', - }, - { - component: CNavItem, - name: 'Add Profile', - to: '/endpoint/autopilot/add-profile', - }, - { - component: CNavItem, - name: 'Status Pages', - to: '/endpoint/autopilot/list-status-pages', - }, - { - component: CNavItem, - name: 'Add Status Page', - to: '/endpoint/autopilot/add-status-page', - }, - ], - }, - { - component: CNavGroup, - name: 'Device Management', - section: 'Intune', - to: '/endpoint/MEM', - icon: , - items: [ - { - component: CNavItem, - name: 'Devices', - to: '/endpoint/reports/devices', - }, - { - component: CNavItem, - name: 'Configuration Policies', - to: '/endpoint/MEM/list-policies', - }, - { - component: CNavItem, - name: 'Compliance Policies', - to: '/endpoint/MEM/list-compliance-policies', - }, - { - component: CNavItem, - name: 'Protection Policies', - to: '/endpoint/MEM/list-appprotection-policies', - }, - { - component: CNavItem, - name: 'Apply Policy', - to: '/endpoint/MEM/add-policy', - }, - { - component: CNavItem, - name: 'Policy Templates', - to: '/endpoint/MEM/list-templates', - }, - { - component: CNavItem, - name: 'Add Policy Template', - to: '/endpoint/MEM/add-policy-template', - }, - ], - }, - { - component: CNavTitle, - name: 'Teams & Sharepoint', - }, - { - component: CNavGroup, - name: 'OneDrive', - section: 'Teams & Sharepoint', - to: '/teams-share/onedrive', - icon: , - items: [ - { - component: CNavItem, - name: 'OneDrive', - to: '/teams-share/onedrive/list', - }, - ], - }, - { - component: CNavGroup, - name: 'SharePoint', - section: 'Teams & Sharepoint', - to: '/teams-share/sharepoint', - icon: , - items: [ - { - component: CNavItem, - name: 'SharePoint', - to: '/teams-share/sharepoint/list-sharepoint', - }, - ], - }, - { - component: CNavGroup, - name: 'Teams', - section: 'Teams & Sharepoint', - to: '/teams-share/teams', - icon: , - items: [ - { - component: CNavItem, - name: 'Teams', - to: '/teams-share/teams/list-team', - }, - { - component: CNavItem, - name: 'Add Team', - to: '/teams-share/teams/add-team', - }, - { - component: CNavItem, - name: 'Teams Activity', - to: '/teams-share/teams/teams-activity', - }, - { - component: CNavItem, - name: 'Business Voice', - to: '/teams-share/teams/business-voice', - }, - ], - }, - { - component: CNavTitle, - name: 'Email & Exchange', - }, - { - component: CNavGroup, - name: 'Administration', - section: 'Email & Exchange', - to: '/email/Administration', - icon: , - items: [ - { - component: CNavItem, - name: 'Mailboxes', - to: '/email/administration/mailboxes', - }, - { - component: CNavItem, - name: 'Deleted Mailboxes', - to: '/email/administration/deleted-mailboxes', - }, - { - component: CNavItem, - name: 'Mailbox Rules', - to: '/email/administration/mailbox-rules', - }, - { - component: CNavItem, - name: 'Contacts', - to: '/email/administration/contacts', - }, - { - component: CNavItem, - name: 'Quarantine', - to: '/email/administration/quarantine', - }, - { - component: CNavItem, - name: 'Tenant Allow/Block Lists', - to: '/email/administration/tenant-allow-block-lists', - }, - ], - }, - { - component: CNavGroup, - name: 'Tools', - section: 'Email & Exchange', - to: '/email/tools', - icon: , - items: [ - { - component: CNavItem, - name: 'Mailbox Restore Wizard', - to: '/email/tools/mailbox-restore-wizard', - }, - { - component: CNavItem, - name: 'Mailbox Restores', - to: '/email/tools/mailbox-restores', - }, - { - component: CNavItem, - name: 'Mail Test', - to: '/email/tools/mail-test', - }, - { - component: CNavItem, - name: 'Message Viewer', - to: '/email/tools/message-viewer', - }, - ], - }, - { - component: CNavGroup, - name: 'Transport', - section: 'Email & Exchange', - to: '/email/Transport', - icon: , - items: [ - { - component: CNavItem, - name: 'Transport rules', - to: '/email/transport/list-rules', - }, - { - component: CNavItem, - name: 'Deploy Transport rule', - to: '/email/transport/deploy-rules', - }, - { - component: CNavItem, - name: 'Transport Templates', - to: '/email/transport/list-templates', - }, - { - component: CNavItem, - name: 'Connectors', - to: '/email/connectors/list-connectors', - }, - { - component: CNavItem, - name: 'Deploy Connector Templates', - to: '/email/connectors/deploy-connector', - }, - { - component: CNavItem, - name: 'Connector Templates', - to: '/email/connectors/list-connector-templates', - }, - ], - }, - { - component: CNavGroup, - name: 'Spamfilter', - section: 'Email & Exchange', - to: '/email/spamfilter', - icon: , - items: [ - { - component: CNavItem, - name: 'Spamfilter', - to: '/email/spamfilter/list-spamfilter', - }, - { - component: CNavItem, - name: 'Apply Spamfilter Template', - to: '/email/spamfilter/deploy', - }, - { - component: CNavItem, - name: 'Templates', - to: '/email/spamfilter/list-templates', - }, - ], - }, - { - component: CNavGroup, - name: 'Resource Management', - section: 'Email & Exchange', - to: '/resources/management', - icon: , - items: [ - { - component: CNavItem, - name: 'Rooms', - to: '/resources/management/list-rooms', - }, - { - component: CNavItem, - name: 'Room Lists', - to: '/resources/management/room-lists', - }, - ], - }, - { - component: CNavGroup, - name: 'Reports', - section: 'Email & Exchange', - to: '/email/reports', - icon: , - items: [ - { - component: CNavItem, - name: 'Mailbox Statistics', - to: '/email/reports/mailbox-statistics', - }, - { - component: CNavItem, - name: 'Mailbox Client Access Settings', - to: '/email/reports/mailbox-cas-settings', - }, - { - component: CNavItem, - name: 'Message Trace', - to: '/email/reports/message-trace', - }, - { - component: CNavItem, - name: 'Anti-Phishing Filters', - to: '/email/reports/antiphishing-filters', - }, - { - component: CNavItem, - name: 'Malware Filters', - to: '/email/reports/malware-filters', - }, - { - component: CNavItem, - name: 'Safe Links Filters', - to: '/email/reports/safelinks-filters', - }, - { - component: CNavItem, - name: 'Safe Attachments Filters', - to: '/email/reports/safeattachments-filters', - }, - { - component: CNavItem, - name: 'Shared Mailbox with Enabled Account', - to: '/email/reports/SharedMailboxEnabledAccount', - }, - ], - }, - { - component: CNavTitle, - name: 'Settings', - }, - { - component: CNavGroup, - name: 'CIPP', - section: 'Settings', - to: '/cipp/cipp', - icon: , - items: [ - { - component: CNavItem, - name: 'Application Settings', - to: '/cipp/settings', - }, - { - component: CNavItem, - name: 'Extensions Settings', - to: '/cipp/extensions', - }, - { - component: CNavItem, - name: 'Extension Sync', - to: '/cipp/extension-sync', - }, - { - component: CNavItem, - name: 'User Settings', - to: '/cipp/user-settings', - }, - { - component: CNavItem, - name: 'Scheduler', - to: '/cipp/scheduler', - }, - { - component: CNavItem, - name: 'Logbook', - to: '/cipp/logs', - }, - { - component: CNavItem, - name: 'Statistics', - to: '/cipp/statistics', - }, - { - component: CNavItem, - name: 'SAM Setup Wizard', - to: '/cipp/setup', - }, - { - component: CNavItem, - name: 'Log Out', - to: '/logout', - }, - ], - }, -] - -export default _nav diff --git a/src/api/ApiCall.jsx b/src/api/ApiCall.jsx new file mode 100644 index 000000000000..c9c62c1f8048 --- /dev/null +++ b/src/api/ApiCall.jsx @@ -0,0 +1,204 @@ +import { useInfiniteQuery, useMutation, useQuery, useQueryClient } from "@tanstack/react-query"; +import axios, { isAxiosError } from "axios"; +import { useDispatch } from "react-redux"; +import { showToast } from "../store/toasts"; +import { getCippError } from "../utils/get-cipp-error"; +import { useRouter } from "next/router"; + +export function ApiGetCall(props) { + const { + url, + queryKey, + relatedQueryKeys, + waiting = true, + retry = 3, + data, + bulkRequest = false, + toast = false, + onResult, + } = props; + const queryClient = useQueryClient(); + const dispatch = useDispatch(); + const MAX_RETRIES = retry; + const HTTP_STATUS_TO_NOT_RETRY = [302, 401, 403, 404, 500]; + const retryFn = (failureCount, error) => { + let returnRetry = true; + if (failureCount >= MAX_RETRIES) { + returnRetry = false; + } + if (isAxiosError(error) && HTTP_STATUS_TO_NOT_RETRY.includes(error.response?.status ?? 0)) { + returnRetry = false; + } + if (returnRetry === false && toast) { + dispatch( + showToast({ + message: `${getCippError(error)}`, + title: `${ + error.config?.params?.tenantFilter ? error.config?.params?.tenantFilter : "" + } Error`, + }) + ); + } + return returnRetry; + }; + + const queryInfo = useQuery({ + enabled: waiting, + queryKey: [queryKey], + queryFn: async ({ signal }) => { + if (bulkRequest && Array.isArray(data)) { + const results = []; + for (let i = 0; i < data.length; i++) { + const element = data[i]; + const response = await axios.get(url, { + signal: signal, + params: element, + headers: { + "Content-Type": "application/json", + }, + }); + results.push(response.data); + if (onResult) { + onResult(response.data); // Emit each result as it arrives + } + } + if (relatedQueryKeys) { + const clearKeys = Array.isArray(relatedQueryKeys) ? relatedQueryKeys : [relatedQueryKeys]; + setTimeout(() => { + clearKeys.forEach((key) => { + queryClient.invalidateQueries({ queryKey: [key] }); + }); + }, 1000); + } + return results; + } else { + const response = await axios.get(url, { + signal: url === "/api/tenantFilter" ? null : signal, + params: data, + headers: { + "Content-Type": "application/json", + }, + }); + if (onResult) { + onResult(response.data); // Emit each result as it arrives + } + if (relatedQueryKeys) { + const clearKeys = Array.isArray(relatedQueryKeys) ? relatedQueryKeys : [relatedQueryKeys]; + setTimeout(() => { + clearKeys.forEach((key) => { + queryClient.invalidateQueries({ queryKey: [key] }); + }); + }, 1000); + } + return response.data; + } + }, + staleTime: 600000, // 10 minutes + refetchOnWindowFocus: false, + retry: retryFn, + }); + return queryInfo; +} + +export function ApiPostCall({ relatedQueryKeys, onResult }) { + const queryClient = useQueryClient(); + const mutation = useMutation({ + mutationFn: async (props) => { + const { url, data, bulkRequest } = props; + if (bulkRequest && Array.isArray(data)) { + const results = []; + for (let i = 0; i < data.length; i++) { + let element = data[i]; + const response = await axios.post(url, element); + results.push(response); + if (onResult) { + onResult(response.data); // Emit each result as it arrives + } + } + return results; + } else { + const response = await axios.post(url, data); + if (onResult) { + onResult(response.data); // Emit each result as it arrives + } + return response; + } + }, + onSuccess: () => { + if (relatedQueryKeys) { + const clearKeys = Array.isArray(relatedQueryKeys) ? relatedQueryKeys : [relatedQueryKeys]; + setTimeout(() => { + if (relatedQueryKeys === "*") { + queryClient.invalidateQueries(); + } else { + clearKeys.forEach((key) => { + queryClient.invalidateQueries({ queryKey: [key] }); + }); + } + }, 1000); + } + }, + }); + + return mutation; +} + +export function ApiGetCallWithPagination({ + url, + queryKey, + retry = 3, + data, + toast = false, + waiting = true, +}) { + const dispatch = useDispatch(); + const MAX_RETRIES = retry; + const HTTP_STATUS_TO_NOT_RETRY = [401, 403, 404]; + + const retryFn = (failureCount, error) => { + let returnRetry = true; + if (failureCount >= MAX_RETRIES) { + returnRetry = false; + } + if (isAxiosError(error) && HTTP_STATUS_TO_NOT_RETRY.includes(error.response?.status ?? 0)) { + returnRetry = false; + } + + if (returnRetry === false && toast) { + dispatch( + showToast({ + message: getCippError(error), + title: "Error", + toastError: error, + }) + ); + } + return returnRetry; + }; + + const queryInfo = useInfiniteQuery({ + queryKey: [queryKey], + enabled: waiting, + queryFn: async ({ pageParam = null, signal }) => { + const response = await axios.get(url, { + signal: signal, + params: { ...data, ...pageParam }, + headers: { + "Content-Type": "application/json", + }, + }); + return response.data; + }, + getNextPageParam: (lastPage) => { + if (data?.noPagination || data?.manualPagination === false) { + return undefined; + } + return lastPage?.Metadata?.nextLink ? { nextLink: lastPage.Metadata.nextLink } : undefined; + }, + staleTime: 600000, // 10 minutes + refetchOnWindowFocus: false, + retry: retryFn, + }); + + return queryInfo; +} diff --git a/src/assets/images/CIPP.png b/src/assets/images/CIPP.png deleted file mode 100644 index cf279633a13f4f052daf384b719975cd3570f026..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 38867 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 diff --git a/src/assets/images/logo-square.png b/src/assets/images/logo-square.png deleted file mode 100644 index 81eff1991d19cdf2c235e4423f0bd28abcfe2a34..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 27250 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 diff --git a/src/assets/images/logo.png b/src/assets/images/logo.png deleted file mode 100644 index 8caed13322331b06cd2c70eada226deb26e025c5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 19032 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 JSj{ft{{ZhqTNMBR diff --git a/src/components/CSVReader.jsx b/src/components/CSVReader.jsx new file mode 100644 index 000000000000..d34d9ee79007 --- /dev/null +++ b/src/components/CSVReader.jsx @@ -0,0 +1,137 @@ +import React, { useState } from "react"; +import { useCSVReader, lightenDarkenColor, formatFileSize } from "react-papaparse"; + +const GREY = "#CCC"; +const GREY_LIGHT = "rgba(255, 255, 255, 0.4)"; +const DEFAULT_REMOVE_HOVER_COLOR = "#A01919"; +const REMOVE_HOVER_COLOR_LIGHT = lightenDarkenColor(DEFAULT_REMOVE_HOVER_COLOR, 40); +const GREY_DIM = "#686868"; + +const styles = { + zone: { + alignItems: "center", + border: `2px dashed`, + borderRadius: 20, + display: "flex", + flexDirection: "column", + height: "100%", + justifyContent: "center", + padding: 20, + }, + file: { + background: "linear-gradient(to bottom, #aaa, #aaa)", + borderRadius: 20, + display: "flex", + height: 60, + width: 120, + position: "relative", + zIndex: 10, + flexDirection: "column", + justifyContent: "center", + }, + info: { + alignItems: "center", + display: "flex", + flexDirection: "column", + paddingLeft: 10, + paddingRight: 10, + }, + size: { + borderRadius: 3, + marginBottom: "0.5em", + justifyContent: "center", + display: "flex", + }, + name: { + borderRadius: 3, + fontSize: 12, + marginBottom: "0.5em", + }, + progressBar: { + bottom: 14, + position: "absolute", + width: "100%", + paddingLeft: 10, + paddingRight: 10, + }, + zoneHover: { + borderColor: GREY_DIM, + }, + default: { + borderColor: GREY, + }, + remove: { + height: 23, + position: "absolute", + right: 6, + top: 6, + width: 23, + }, +}; + +export default function CSVReader(props) { + const { CSVReader } = useCSVReader(); + const [zoneHover, setZoneHover] = useState(false); + const [removeHoverColor, setRemoveHoverColor] = useState(DEFAULT_REMOVE_HOVER_COLOR); + + return ( + { + //call the ondrop function from the props, passing the results. + props.onDrop(results.data); + setZoneHover(false); + }} + onDragOver={(event) => { + event.preventDefault(); + setZoneHover(true); + }} + onDragLeave={(event) => { + event.preventDefault(); + setZoneHover(false); + }} + > + {({ getRootProps, acceptedFile, ProgressBar, getRemoveFileProps, Remove }) => ( + <> +

+ + )} + + ); +} diff --git a/src/components/CippCards/CippBannerListCard.jsx b/src/components/CippCards/CippBannerListCard.jsx new file mode 100644 index 000000000000..41d3609a1756 --- /dev/null +++ b/src/components/CippCards/CippBannerListCard.jsx @@ -0,0 +1,183 @@ +import PropTypes from "prop-types"; +import { useState, useCallback } from "react"; +import { + Box, + Card, + Collapse, + Divider, + IconButton, + Skeleton, + Stack, + SvgIcon, + Typography, +} from "@mui/material"; +import ChevronDownIcon from "@heroicons/react/24/outline/ChevronDownIcon"; +import { CippPropertyListCard } from "./CippPropertyListCard"; + +export const CippBannerListCard = (props) => { + const { items = [], isCollapsible = false, isFetching = false, ...other } = props; + const [expanded, setExpanded] = useState(null); + + const handleExpand = useCallback((itemId) => { + setExpanded((prevState) => (prevState === itemId ? null : itemId)); + }, []); + + const hasItems = items.length > 0; + + if (isFetching) { + // Render skeletons during loading + return ( + + {[...Array(1)].map((_, index) => ( + + + + + + + + + + + + + + + ))} + + ); + } + + return ( + + {!hasItems ? ( + No items available. + ) : ( + + } + sx={{ + listStyle: "none", + m: 0, + p: 0, + }} + > + {items.map((item) => { + const isExpanded = expanded === item.id; + const statusColor = item.statusColor || "neutral.500"; // Default color + + return ( +
  • + + {/* Left Side: cardLabelBox */} + + + {typeof item.cardLabelBox === "object" ? ( + <> + + {item.cardLabelBox.cardLabelBoxHeader} + + + {item.cardLabelBox.cardLabelBoxText} + + + ) : ( + + {item.cardLabelBox} + + )} + + + {/* Main Text and Subtext */} + + + {item.text} + + + {item.subtext} + + + + + {/* Right Side: Status and Expand Icon */} + + + + {item.statusText} + + {isCollapsible && ( + handleExpand(item.id)}> + + + + + )} + + + {isCollapsible && ( + + + + + )} +
  • + ); + })} +
    +
    + )} +
    + ); +}; + +CippBannerListCard.propTypes = { + items: PropTypes.arrayOf( + PropTypes.shape({ + id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired, + cardLabelBox: PropTypes.oneOfType([ + PropTypes.string, + PropTypes.shape({ + cardLabelBoxHeader: PropTypes.string, + cardLabelBoxText: PropTypes.string, + }), + ]).isRequired, + text: PropTypes.string.isRequired, + subtext: PropTypes.string, + statusColor: PropTypes.string, + statusText: PropTypes.string, + propertyItems: PropTypes.array, + isFetching: PropTypes.bool, + }) + ).isRequired, + isCollapsible: PropTypes.bool, + isFetching: PropTypes.bool, +}; diff --git a/src/components/CippCards/CippButtonCard.jsx b/src/components/CippCards/CippButtonCard.jsx new file mode 100644 index 000000000000..d02a21b7a697 --- /dev/null +++ b/src/components/CippCards/CippButtonCard.jsx @@ -0,0 +1,66 @@ +import React, { useEffect } from "react"; +import { + Card, + CardHeader, + CardContent, + CardActions, + Skeleton, + Divider, + Accordion, + AccordionSummary, + AccordionDetails, +} from "@mui/material"; +import ExpandMoreIcon from "@mui/icons-material/ExpandMore"; +import { useState } from "react"; + +export default function CippButtonCard({ + title, + CardButton, + children, + isFetching = false, + cardSx, + cardActions, + variant, + component = "card", + accordionExpanded = false, +}) { + const [cardExpanded, setCardExpanded] = useState(accordionExpanded); + useEffect(() => { + if (accordionExpanded !== cardExpanded) { + setCardExpanded(accordionExpanded); + } + }, [accordionExpanded]); + + return ( + + {component === "card" && ( + <> + + + + {isFetching ? : children} + + + {CardButton && {CardButton}} + + )} + {component === "accordion" && ( + + } + onClick={() => setCardExpanded(!cardExpanded)} + > + + + + + + {isFetching ? : children} + + {CardButton && {CardButton}} + + + )} + + ); +} diff --git a/src/components/CippCards/CippChartCard.jsx b/src/components/CippCards/CippChartCard.jsx new file mode 100644 index 000000000000..2bd455d87761 --- /dev/null +++ b/src/components/CippCards/CippChartCard.jsx @@ -0,0 +1,198 @@ +import { useEffect, useState } from "react"; +import { + Box, + Card, + CardContent, + CardHeader, + Divider, + Skeleton, + Stack, + Typography, +} from "@mui/material"; +import { useTheme } from "@mui/material/styles"; +import { ActionsMenu } from "../actions-menu"; +import { Chart } from "../chart"; + +const useChartOptions = (labels, chartType) => { + const theme = useTheme(); + + return { + chart: { + background: "transparent", + toolbar: { + show: false, + tools: { + download: true, + selection: false, + zoom: false, + zoomin: false, + zoomout: false, + pan: false, + reset: true | '', + }, + }, + }, + colors: [ + theme.palette.success.main, + theme.palette.warning.main, + theme.palette.error.main, + theme.palette.neutral[200], + ], + dataLabels: { + enabled: false, + }, + + xaxis: { + labels: { + show: true, + rotate: 0, + style: { + fontSize: "12px", + }, + }, + tickPlacement: "on", + }, + labels, + legend: { + show: false, + }, + plotOptions: { + pie: { + expandOnClick: false, + }, + }, + states: { + active: { + filter: { + type: "none", + }, + }, + hover: { + filter: { + type: "none", + }, + }, + }, + stroke: { + width: chartType === "line" ? 2 : 1, + }, + theme: { + mode: theme.palette.mode, + }, + tooltip: { + fillSeriesColor: false, + }, + }; +}; + +export const CippChartCard = ({ + isFetching, + chartSeries = [], + labels = [], + chartType = "donut", + title, + actions, +}) => { + const [range, setRange] = useState("Last 7 days"); + const [barSeries, setBarSeries] = useState([]); + const chartOptions = useChartOptions(labels, chartType); + chartSeries = chartSeries.filter((item) => item !== null); + const total = chartSeries.reduce((acc, value) => acc + value, 0); + useEffect(() => { + if (chartType === "bar") { + setBarSeries( + labels.map((label, index) => ({ + data: [{ x: label, y: chartSeries[index] }], + })) + ); + } + }, [chartType, chartSeries.length, labels]); + + return ( + + + ) : null + } + title={title} + /> + + + { + //if the chartType is not defined, or if the data is fetching, or if the data is empty, show a skeleton + chartType === undefined || isFetching || chartSeries.length === 0 ? ( + + ) : ( + + ) + } + + {labels.length > 0 && ( + <> + Total + {isFetching ? "0" : total} + + )} + + + {isFetching ? ( + + ) : ( + <> + { + //only show the labels if there are labels + labels.length > 0 && + chartSeries.map((item, index) => ( + + + + + {labels[index]} + + + + {item} + + + )) + } + + )} + + + + ); +}; diff --git a/src/components/CippCards/CippDomainCards.jsx b/src/components/CippCards/CippDomainCards.jsx new file mode 100644 index 000000000000..a1fdb6a74199 --- /dev/null +++ b/src/components/CippCards/CippDomainCards.jsx @@ -0,0 +1,613 @@ +import React, { useEffect, useState } from "react"; +import { + Grid, + Button, + Collapse, + Switch, + TextField, + IconButton, + Tooltip, + Typography, + Chip, + Stack, +} from "@mui/material"; +import SearchIcon from "@mui/icons-material/Search"; +import ClearIcon from "@mui/icons-material/Clear"; +import SettingsIcon from "@mui/icons-material/Settings"; +import CheckCircleIcon from "@mui/icons-material/CheckCircle"; +import ErrorIcon from "@mui/icons-material/Error"; +import WarningIcon from "@mui/icons-material/Warning"; +import HelpIcon from "@mui/icons-material/Help"; +import MoreVertIcon from "@mui/icons-material/MoreVert"; +import { Controller, get, useForm } from "react-hook-form"; +import { ApiGetCall } from "/src/api/ApiCall"; +import CippButtonCard from "/src/components/CippCards/CippButtonCard"; +import { CippCodeBlock } from "/src/components/CippComponents/CippCodeBlock"; +import { CippOffCanvas } from "../CippComponents/CippOffCanvas"; +import { CippPropertyListCard } from "./CippPropertyListCard"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; + +const ResultList = ({ passes = [], warns = [], fails = [] }) => ( + + {passes.map((pass, index) => ( + + + {pass} + + ))} + {warns.map((warn, index) => ( + + + {warn} + + ))} + {fails.map((fail, index) => ( + + + {fail} + + ))} + +); + +// Custom MX Results Card component +const MXResultsCard = ({ domain, mxData, isFetching }) => { + const [visible, setVisible] = useState(false); + + const handleDetailsClick = () => { + setVisible(true); + }; + + const providerName = mxData?.MailProvider?.Name || "Unknown"; + const validationPasses = mxData?.ValidationPasses || []; + const validationWarns = mxData?.ValidationWarns || []; + const validationFails = mxData?.ValidationFails || []; + + const allPassed = validationFails.length === 0 && validationWarns.length === 0; + + const helpUrl = mxData?.MailProvider?._MxComment || ""; + return ( + + {allPassed && } + MX Records + + } + cardSx={{ display: "flex", flexDirection: "column", height: "100%" }} + cardActions={ + <> + {helpUrl && ( + + + + + + )} + + + + + + } + onClose={() => setVisible(false)} + /> + + } + isFetching={isFetching} + > + {!isFetching && ( + <> + + Mail Provider: + + + + + )} + + ); +}; + +// DomainResultCard to reuse for other result types +function DomainResultCard({ title, data, isFetching, info, type }) { + const [visible, setVisible] = useState(false); + + const offCanvasData = + //switch case for different types of data + type === "whois" + ? { + extendedInfoFields: [ + "Domain Name", + "Creation Date", + "Updated Date", + "Registrar Registration Expiration Date", + "Registrar", + "Registrar URL", + "Registrar Abuse Contact Email", + "Domain Status", + "Name Server", + "DNSSEC", + ], + extendedData: data, + } + : type === "MTA-STS" + ? { + children: ( + + + {info} + + + ), + } + : type === "DNSSEC" + ? { + children: , + } + : type === "DKIM" + ? { + children: data?.Records?.map((record, index) => ( +
    + + Selector: {record?.Selector} + + + +
    + )), + } + : type === "DMARC" + ? { + children: ( + //4 headers, "Record" and then under it. + <> + + Record: + + + + + ({ + label: "Reporting Email(s)", + value: email, + }))} + /> + ({ + label: "Forensic Email(s)", + value: email, + }))} + /> + + ), + } + : type === "SPF" + ? { + children: ( + <> + + Record: + + + {data?.Recommendations && ( + <> + ({ + label: "Recommendation", + value: rec.Message, + }))} + /> + + )} + + + IP Addresses + + record.IPAddresses).join("\n")} + /> + + ), + } + : {}; + + return ( + + {data?.ValidationFails?.length === 0 && data?.ValidationWarns?.length === 0 && ( + + )} + {data?.ValidationFails?.length > 0 && ( + + )} + {data?.ValidationWarns?.length > 0 && ( + + )} + {title} + + } + cardSx={{ display: "flex", flexDirection: "column", height: "100%" }} + cardActions={ + <> + {data?._Comment && ( + + + + + + )} + + setVisible(true)}> + + + + + } + isFetching={isFetching} + > + + {info} + + setVisible(false)} {...offCanvasData} /> + + ); +} + +// The main CippDomainCards component with new props +export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false }) => { + const { control, handleSubmit, watch, setValue } = useForm({ + defaultValues: { + domain: propDomain, + spfRecord: "", + dkimSelector: "", + subdomains: "", + enableHttps: false, + }, + }); + const [optionsVisible, setOptionsVisible] = useState(false); + const [domain, setDomain] = useState(propDomain); + const enableHttps = watch("enableHttps"); + + useEffect(() => { + if (propDomain) { + setValue("domain", propDomain); + setDomain(propDomain); + } + }, [propDomain, setValue]); + + const onSubmit = (values) => { + setDomain(values.domain); + }; + + const handleClear = () => { + setValue("domain", ""); + setValue("spfRecord", ""); + setValue("dkimSelector", ""); + setValue("subdomains", ""); + }; + + // API calls with dynamic queryKey using domain + const { data: whoisData, isFetching: whoisLoading } = ApiGetCall({ + url: "/api/ListDomainHealth", + queryKey: `whois-${domain}`, + data: { Domain: domain, Action: "ReadWhoisRecord" }, + waiting: !!domain, + }); + + const { data: nsData, isFetching: nsLoading } = ApiGetCall({ + url: "/api/ListDomainHealth", + queryKey: `ns-${domain}`, + data: { Domain: domain, Action: "ReadNSRecord" }, + waiting: !!domain, + }); + + const { data: mxData, isFetching: mxLoading } = ApiGetCall({ + url: "/api/ListDomainHealth", + queryKey: `mx-${domain}`, + data: { Domain: domain, Action: "ReadMxRecord" }, + waiting: !!domain, + }); + + const { data: spfData, isFetching: spfLoading } = ApiGetCall({ + url: "/api/ListDomainHealth", + queryKey: `spf-${domain}`, + data: { Domain: domain, Action: "ReadSPFRecord" }, + waiting: !!domain, + }); + + const { data: dmarcData, isFetching: dmarcLoading } = ApiGetCall({ + url: "/api/ListDomainHealth", + queryKey: `dmarc-${domain}`, + data: { Domain: domain, Action: "ReadDmarcPolicy" }, + waiting: !!domain, + }); + + const { data: dkimData, isFetching: dkimLoading } = ApiGetCall({ + url: "/api/ListDomainHealth", + queryKey: `dkim-${domain}`, + data: { Domain: domain, Action: "ReadDkimRecord" }, + waiting: !!domain, + }); + + const { data: dnssecData, isFetching: dnssecLoading } = ApiGetCall({ + url: "/api/ListDomainHealth", + queryKey: `dnssec-${domain}`, + data: { Domain: domain, Action: "TestDNSSEC" }, + waiting: !!domain, + }); + + const { data: mtastsData, isFetching: mtastsLoading } = ApiGetCall({ + url: "/api/ListDomainHealth", + queryKey: `mtasts-${domain}`, + data: { Domain: domain, Action: "TestMtaSts" }, + waiting: !!domain, + }); + + // Adjust grid item size based on fullwidth prop + const gridItemSize = fullwidth ? 12 : 4; + + return ( + + + + + setOptionsVisible(!optionsVisible)}> + + + + } + > + + + ( + + )} + /> + + + + + + + ( + + )} + /> + ( + + )} + /> + ( + + )} + /> + {enableHttps && ( + ( + + )} + /> + )} + + + + + + {domain && ( + <> + + + Registrar: {whoisData?.Registrar} + + } + /> + + + +

    Nameservers:

    +
    {nsData?.Records.join("\n")}
    + + } + /> +
    + + + + + +

    SPF Record:

    + + + + } + /> +
    + + +

    DMARC Policy:

    + + + + } + /> +
    + + +

    DKIM Record:

    + + + + } + /> +
    + + + + + } + /> + + + +

    MTA-STS Mode:

    + + + + } + /> +
    + + )} +
    + + ); +}; diff --git a/src/components/CippCards/CippExchangeInfoCard.jsx b/src/components/CippCards/CippExchangeInfoCard.jsx new file mode 100644 index 000000000000..b206ef91e069 --- /dev/null +++ b/src/components/CippCards/CippExchangeInfoCard.jsx @@ -0,0 +1,192 @@ +import PropTypes from "prop-types"; +import { Card, CardHeader, Divider, Skeleton, Chip } from "@mui/material"; +import { PropertyList } from "/src/components/property-list"; +import { PropertyListItem } from "/src/components/property-list-item"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; +import { Check as CheckIcon, Close as CloseIcon } from "@mui/icons-material"; +import { LinearProgressWithLabel } from "../linearProgressWithLabel"; + +export const CippExchangeInfoCard = (props) => { + const { exchangeData, isFetching = false, ...other } = props; + + // Define the protocols array + const protocols = [ + { name: "EWS", enabled: exchangeData?.EWSEnabled }, + { name: "MAPI", enabled: exchangeData?.MailboxMAPIEnabled }, + { name: "OWA", enabled: exchangeData?.MailboxOWAEnabled }, + { name: "IMAP", enabled: exchangeData?.MailboxImapEnabled }, + { name: "POP", enabled: exchangeData?.MailboxPopEnabled }, + { name: "ActiveSync", enabled: exchangeData?.MailboxActiveSyncEnabled }, + ]; + + return ( + + + + + + ) : ( + exchangeData?.RecipientTypeDetails || "N/A" + ) + } + /> + + ) : exchangeData?.TotalItemSize != null ? ( + + ) : ( + "N/A" + ) + } + /> + + ) : ( + getCippFormatting(exchangeData?.HiddenFromAddressLists, "HiddenFromAddressLists") + ) + } + /> + + ) : ( + getCippFormatting(exchangeData?.ForwardAndDeliver, "ForwardAndDeliver") + ) + } + /> + + ) : ( + exchangeData?.ForwardingAddress || "N/A" + ) + } + /> + + ) : ( + getCippFormatting(exchangeData?.ArchiveMailBox, "ArchiveMailBox") + ) + } + /> + + ) : ( + getCippFormatting(exchangeData?.AutoExpandingArchive, "AutoExpandingArchive") + ) + } + /> + + ) : exchangeData?.TotalArchiveItemSize != null ? ( + `${exchangeData.TotalArchiveItemSize} GB` + ) : ( + "N/A" + ) + } + /> + + ) : exchangeData?.TotalArchiveItemCount != null ? ( + exchangeData.TotalArchiveItemCount + ) : ( + "N/A" + ) + } + /> + + ) : ( + getCippFormatting(exchangeData?.LitigationHold, "LitigationHold") + ) + } + /> + {/* Combine protocols into a single PropertyListItem */} + + ) : ( +
    + {protocols.map((protocol) => ( + : } + color={protocol.enabled ? "success" : "default"} + variant="outlined" + size="small" + sx={{ mr: 1, mb: 1 }} + /> + ))} +
    + ) + } + /> + + ) : ( + getCippFormatting(exchangeData?.BlockedForSpam, "BlockedForSpam") + ) + } + /> +
    +
    + ); +}; + +CippExchangeInfoCard.propTypes = { + exchangeData: PropTypes.object, + isFetching: PropTypes.bool, +}; diff --git a/src/components/CippCards/CippImageCard.jsx b/src/components/CippCards/CippImageCard.jsx new file mode 100644 index 000000000000..3ea40dfb6a3d --- /dev/null +++ b/src/components/CippCards/CippImageCard.jsx @@ -0,0 +1,92 @@ +import NextLink from "next/link"; +import ArrowRightIcon from "@heroicons/react/24/outline/ArrowRightIcon"; +import { Box, Button, LinearProgress, Skeleton, Stack, SvgIcon, Typography } from "@mui/material"; + +export const CippImageCard = ({ + isFetching, + imageUrl = "/assets/illustration-reports.png", + title, + text, + step, + maxstep, + linkText, + link, + onButtonClick, +}) => ( + +
    + + {title} + + + {isFetching ? : text} + + + {step && maxstep && ( + <> + + {step}/{maxstep} + + + + )} + + {link && ( + + )} + {onButtonClick && ( + + )} +
    + + + +
    +); diff --git a/src/components/CippCards/CippInfoBar.jsx b/src/components/CippCards/CippInfoBar.jsx new file mode 100644 index 000000000000..c7ce557fdfbe --- /dev/null +++ b/src/components/CippCards/CippInfoBar.jsx @@ -0,0 +1,58 @@ +import { Box, Card, Stack, SvgIcon, Typography, Skeleton } from "@mui/material"; +import Grid from "@mui/material/Grid"; + +export const CippInfoBar = ({ data, isFetching }) => ( + + + {data.map((item) => ( + ({ + xs: `1px solid ${theme.palette.divider}`, + md: "none", + }), + borderRight: (theme) => ({ + md: `1px solid ${theme.palette.divider}`, + }), + "&:nth-of-type(3)": { + borderBottom: (theme) => ({ + xs: `1px solid ${theme.palette.divider}`, + sm: "none", + }), + }, + "&:nth-of-type(4)": { + borderBottom: "none", + borderRight: "none", + }, + }} + > + + {item?.icon && ( + + {item.icon} + + )} + { + if (!item?.icon) { + return { pl: 2 }; + } + }} + > + + {item.name} + + + {isFetching ? : item.data} + + + + + ))} + + +); diff --git a/src/components/CippCards/CippInfoCard.jsx b/src/components/CippCards/CippInfoCard.jsx new file mode 100644 index 000000000000..bd0d4b978870 --- /dev/null +++ b/src/components/CippCards/CippInfoCard.jsx @@ -0,0 +1,71 @@ +import PropTypes from "prop-types"; +import { + Avatar, + Button, + Card, + CardActions, + Divider, + Link, + Skeleton, + Stack, + SvgIcon, + Typography, +} from "@mui/material"; +import { ArrowRightIcon, CubeIcon } from "@heroicons/react/24/outline"; + +export const CippInfoCard = (props) => { + const { isFetching, actionLink, actionText, value, icon, label, cardSize, ...other } = props; + + return ( + + + + {icon ? icon : } + +
    + + {isFetching ? : label} + + {isFetching ? : value} +
    +
    + {actionLink && ( + <> + + + + + + )} +
    + ); +}; + +CippInfoCard.propTypes = { + action: PropTypes.node, + icon: PropTypes.node, + label: PropTypes.string.isRequired, + value: PropTypes.number.isRequired, +}; diff --git a/src/components/CippCards/CippListitemCard.jsx b/src/components/CippCards/CippListitemCard.jsx new file mode 100644 index 000000000000..9eda5adb5228 --- /dev/null +++ b/src/components/CippCards/CippListitemCard.jsx @@ -0,0 +1,124 @@ +import ArrowRightIcon from "@heroicons/react/24/outline/ArrowRightIcon"; +import CubeIcon from "@heroicons/react/24/outline/CubeIcon"; +import UsersIcon from "@heroicons/react/24/outline/UsersIcon"; +import { + Box, + Button, + Card, + CardHeader, + Divider, + IconButton, + List, + ListItem, + ListItemIcon, + ListItemSecondaryAction, + ListItemText, + Skeleton, + SvgIcon, + Typography, +} from "@mui/material"; + +const getContent = (notification, textKey) => { + return ( + <> + + {notification.icon ? notification.icon : } + + + + {notification[textKey]} + + + } + /> + + + + + + + + + ); +}; + +export const CippListItemCard = ({ + isFetching, + title, + listitems = [], + textKey, + seeAllLink, + seeAllText, +}) => { + //if listitems is a blank array, null, or undefined, set it an array with 1 item. "No messages found. You're good to go!" + if (!listitems || listitems.length === 0) { + listitems = [ + { + id: "no-messages", + icon: , + [textKey]: "No messages found. You're good to go!", + }, + ]; + } + return ( + + + + + {isFetching + ? [0, 1, 2, 3].map((index) => ( + + + + + + + + + + + + + + + + + + + + )) + : listitems.map((notification, index) => { + const hasDivider = listitems.length > index + 1; + return ( + + {getContent(notification, textKey)} + + ); + })} + + + + {listitems.length > 1 && ( + + )} + + + ); +}; diff --git a/src/components/CippCards/CippPageCard.jsx b/src/components/CippCards/CippPageCard.jsx new file mode 100644 index 000000000000..9c1e1bce81b7 --- /dev/null +++ b/src/components/CippCards/CippPageCard.jsx @@ -0,0 +1,65 @@ +import { useRouter } from "next/router"; +import { Box, Container, Stack, Button, SvgIcon, Typography, Card } from "@mui/material"; +import ArrowLeftIcon from "@mui/icons-material/ArrowLeft"; +import Head from "next/head"; +const CippPageCard = (props) => { + const { + title, + backButtonTitle = "Back", + children, + cardSize = "xl", + hideTitleText = false, + hideBackButton = false, + infoBar, + } = props; + const router = useRouter(); + + const handleBackClick = () => { + router.back(); // Navigate to the previous page when the button is clicked + }; + + return ( + <> + + {title} + + + + + +
    + {!hideBackButton && ( + + )} +
    + {hideTitleText !== true && ( +
    + {title} +
    + )} +
    + {infoBar} + {children} +
    +
    +
    + + ); +}; + +export default CippPageCard; diff --git a/src/components/CippCards/CippPropertyListCard.jsx b/src/components/CippCards/CippPropertyListCard.jsx new file mode 100644 index 000000000000..62b4578358d6 --- /dev/null +++ b/src/components/CippCards/CippPropertyListCard.jsx @@ -0,0 +1,173 @@ +import { + Card, + CardContent, + CardHeader, + Divider, + Skeleton, + SvgIcon, + Stack, + CardActions, +} from "@mui/material"; +import { ActionList } from "../../components/action-list"; +import { ActionListItem } from "../../components/action-list-item"; +import { PropertyList } from "../../components/property-list"; +import { PropertyListItem } from "../../components/property-list-item"; +import { useDialog } from "../../hooks/use-dialog"; +import { CippApiDialog } from "../CippComponents/CippApiDialog"; +import { useState } from "react"; + +export const CippPropertyListCard = (props) => { + const { + align = "vertical", + actionItems = [], + propertyItems = [], + isFetching, + title, + actionButton, + copyItems = false, + data, + layout = "single", + showDivider = true, + cardButton, + cardSx = { width: "100%", height: "100%" }, + ...other + } = props; + const createDialog = useDialog(); + const [actionData, setActionData] = useState({ data: {}, action: {}, ready: false }); + + const half = Math.ceil(propertyItems.length / 2); + const firstHalf = propertyItems.slice(0, half); + const secondHalf = propertyItems.slice(half, propertyItems.length); + + const isLabelPresent = (item) => { + return item?.label === "" || item?.label === undefined || item?.label === null; + }; + + const setPadding = isLabelPresent ? { py: 0.5, px: 3 } : { py: 1.5, px: 3 }; + + return ( + <> + + + + + + {layout === "single" ? ( + + {isFetching ? ( + <> + {propertyItems.map((item, index) => ( + } + sx={setPadding} + /> + ))} + + ) : ( + propertyItems.map((item, index) => ( + + )) + )} + + ) : ( + // Two-column layout + *": { + width: { + md: "50%", + }, + }, + }} + > + + {isFetching ? ( + } + /> + ) : ( + firstHalf.map((item, index) => ( + + )) + )} + + + {secondHalf.map((item, index) => ( + + ))} + + + )} + + + {actionItems?.length > 0 && + actionItems.map((item, index) => ( + {item.icon}} + label={item.label} + onClick={ + item.link + ? () => window.open(item.link, "_blank") + : () => { + setActionData({ + data: data, + action: item, + ready: true, + }); + createDialog.handleOpen(); + } + } + /> + ))} + + + {actionData.ready && ( + + )} + {cardButton && ( + <> + + {cardButton} + + )} + + + ); +}; diff --git a/src/components/CippCards/CippRemediationCard.jsx b/src/components/CippCards/CippRemediationCard.jsx new file mode 100644 index 000000000000..abfaac8df111 --- /dev/null +++ b/src/components/CippCards/CippRemediationCard.jsx @@ -0,0 +1,79 @@ +import React from "react"; +import { Button, Typography, List, ListItem, SvgIcon } from "@mui/material"; +import CippButtonCard from "./CippButtonCard"; // Adjust the import path as needed +import { CippApiDialog } from "../CippComponents/CippApiDialog"; +import { useDialog } from "../../hooks/use-dialog"; +import { Sync } from "@mui/icons-material"; +import { ShieldCheckIcon } from "@heroicons/react/24/outline"; + +export default function CippRemediationCard(props) { + const { userPrincipalName, isFetching, userId, tenantFilter, restartProcess } = props; + const createDialog = useDialog(); + return ( + + Business Email Compromise Overview - {userPrincipalName} + + } + cardActions={ + + } + CardButton={ + + } + isFetching={isFetching} + > + + Use this information as a guide to check if a tenant or e-mail address might have been + compromised. All data is retrieved from the last 7 days of logs. + + + + Hit the button below to execute the following tasks: + + + Block user sign-in + Reset user password + Disconnect all current sessions + Disable all inbox rules for the user + + + + ); +} diff --git a/src/components/CippCards/CippUniversalSearch.jsx b/src/components/CippCards/CippUniversalSearch.jsx new file mode 100644 index 000000000000..9d9c90d63c5f --- /dev/null +++ b/src/components/CippCards/CippUniversalSearch.jsx @@ -0,0 +1,145 @@ +import React, { useState } from "react"; +import { + TextField, + Box, + Typography, + Grid, + Card, + CardContent, + CardHeader, + Skeleton, + Button, + Link, +} from "@mui/material"; +import { ApiGetCall } from "../../api/ApiCall"; + +export const CippUniversalSearch = React.forwardRef( + ({ onConfirm = () => {}, onChange = () => {}, maxResults = 7, value = "" }, ref) => { + const [searchValue, setSearchValue] = useState(value); + const handleChange = (event) => { + const newValue = event.target.value; + setSearchValue(newValue); + onChange(newValue); + }; + + const search = ApiGetCall({ + url: `/api/ExecUniversalSearch?name=${searchValue}`, + queryKey: `search-${searchValue}`, + waiting: false, + }); + const handleKeyDown = async (event) => { + if (event.key === "Enter") { + search.refetch(); + } + }; + + return ( + + + + + + + {search.isFetching && ( + + + + )} + {search.isSuccess && search?.data?.length > 0 ? ( + + ) : ( + search.isSuccess && "No results found." + )} + + + + ); + } +); + +CippUniversalSearch.displayName = "CippUniversalSearch"; + +const Results = ({ items = [], searchValue }) => ( + + {items.slice(0, 9).map((item, key) => ( + + + + ))} + +); + +const ResultsRow = ({ match, searchValue }) => { + const highlightMatch = (text) => { + const parts = text?.split(new RegExp(`(${searchValue})`, "gi")); + return parts?.map((part, index) => + part.toLowerCase() === searchValue.toLowerCase() ? ( + + {part} + + ) : ( + part + ) + ); + }; + const currentTenantInfo = ApiGetCall({ + url: "/api/ListTenants", + queryKey: `ListTenants`, + }); + return ( + + + {highlightMatch(match.displayName)} + + {highlightMatch(match.userPrincipalName)} + + + Found in tenant{" "} + { + //translate match._tenantId to tenant name by finding it in currentTenantInfo, if its not there, show the ID. the prop we are matching on is customerId, the return is displayName (defaultDomainName) + currentTenantInfo.data?.find((tenant) => tenant.customerId === match._tenantId) + ?.defaultDomainName || match._tenantId + } + + + + + + + + ); +}; diff --git a/src/components/CippCards/CippUserInfoCard.jsx b/src/components/CippCards/CippUserInfoCard.jsx new file mode 100644 index 000000000000..8b9048f46fec --- /dev/null +++ b/src/components/CippCards/CippUserInfoCard.jsx @@ -0,0 +1,155 @@ +import PropTypes from "prop-types"; +import { Avatar, Card, CardHeader, Divider, Skeleton, Stack } from "@mui/material"; +import { PropertyList } from "/src/components/property-list"; +import { PropertyListItem } from "/src/components/property-list-item"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; + +export const CippUserInfoCard = (props) => { + const { user, tenant, isFetching = false, ...other } = props; + + return ( + + + + + {isFetching ? ( + + ) : ( + + {user?.displayName?.[0] + user?.surname?.[0] || ""} + + )} + + + ) : ( + getCippFormatting(user?.accountEnabled, "accountEnabled") + ) + } + /> + + ) : ( + getCippFormatting(user?.onPremisesSyncEnabled, "onPremisesSyncEnabled") + ) + } + /> + + + ) : ( + getCippFormatting(user?.displayName, "displayName") + ) + } + /> + + ) : ( + getCippFormatting(user?.userPrincipalName, "userPrincipalName") + ) + } + /> + + ) : ( + getCippFormatting(user?.assignedLicenses, "assignedLicenses") + ) + } + /> + + ) : ( + getCippFormatting(user?.proxyAddresses, "proxyAddresses") + ) + } + /> + : user?.jobTitle || "N/A"} + /> + : user?.department || "N/A"} + /> + : user?.streetAddress || "N/A" + } + /> + : user?.postalCode || "N/A"} + /> + : user?.officeLocation || "N/A" + } + /> + : user?.mobilePhone || "N/A"} + /> + + ) : ( + user?.businessPhones?.join(", ") || "N/A" + ) + } + /> + + + ); +}; + +CippUserInfoCard.propTypes = { + user: PropTypes.object, + isFetching: PropTypes.bool, +}; diff --git a/src/components/CippComponents/CippApiDialog.jsx b/src/components/CippComponents/CippApiDialog.jsx new file mode 100644 index 000000000000..c724f0ddac05 --- /dev/null +++ b/src/components/CippComponents/CippApiDialog.jsx @@ -0,0 +1,263 @@ +import { useRouter } from "next/router"; // Import Next.js router +import { Button, Dialog, DialogActions, DialogContent, DialogTitle, Grid } from "@mui/material"; +import { Stack } from "@mui/system"; +import { CippApiResults } from "./CippApiResults"; +import { ApiGetCall, ApiPostCall } from "../../api/ApiCall"; +import { useEffect, useState } from "react"; +import { useForm } from "react-hook-form"; +import { useSettings } from "../../hooks/use-settings"; +import CippFormComponent from "./CippFormComponent"; + +export const CippApiDialog = (props) => { + const { createDialog, title, fields, api, row = {}, relatedQueryKeys, ...other } = props; + const router = useRouter(); + const [addedFieldData, setAddedFieldData] = useState({}); + const [partialResults, setPartialResults] = useState([]); + const [getRequestInfo, setGetRequestInfo] = useState({ + url: "", + waiting: false, + queryKey: "", + relatedQueryKeys: relatedQueryKeys + ? relatedQueryKeys + : api.relatedQueryKeys + ? api.relatedQueryKeys + : title, + bulkRequest: api.multiPost === false, + onResult: (result) => { + setPartialResults((prevResults) => [...prevResults, result]); + }, + }); + + const actionPostRequest = ApiPostCall({ + urlFromData: true, + relatedQueryKeys: relatedQueryKeys + ? relatedQueryKeys + : api.relatedQueryKeys + ? api.relatedQueryKeys + : title, + bulkRequest: api.multiPost === false, + onResult: (result) => { + setPartialResults((prevResults) => [...prevResults, result]); + }, + }); + const actionGetRequest = ApiGetCall({ + ...getRequestInfo, + relatedQueryKeys: relatedQueryKeys + ? relatedQueryKeys + : api.relatedQueryKeys + ? api.relatedQueryKeys + : title, + bulkRequest: api.multiPost === false, + onResult: (result) => { + setPartialResults((prevResults) => [...prevResults, result]); + }, + }); + + const processActionData = (dataObject, row, replacementBehaviour) => { + if (typeof api?.dataFunction === "function") { + return api.dataFunction(row); + } + var newData = {}; + console.log("the received row", row); + console.log("the received dataObject", dataObject); + + if (api?.postEntireRow) { + newData = row; + } else { + Object.keys(dataObject).forEach((key) => { + const value = dataObject[key]; + + if (typeof value === "string" && value.startsWith("!")) { + newData[key] = value.slice(1); + } else if (typeof value === "string") { + if (row[value] !== undefined) { + newData[key] = row[value]; + } else { + newData[key] = value; + } + } else if (typeof value === "object" && value !== null) { + const processedValue = processActionData(value, row, replacementBehaviour); + if (replacementBehaviour !== "removeNulls" || Object.keys(processedValue).length > 0) { + newData[key] = processedValue; + } + } else if (replacementBehaviour !== "removeNulls") { + newData[key] = value; + } else if (row[value] !== undefined) { + newData[key] = row[value]; + } + }); + } + console.log("output", newData); + return newData; + }; + const tenantFilter = useSettings().currentTenant; + const handleActionClick = (row, action, formData) => { + if (action.multiPost === undefined) { + action.multiPost = false; + } + if (api.customFunction) { + action.customFunction(row, action, formData); + createDialog.handleClose(); + return; + } + + const commonData = { + tenantFilter: tenantFilter, + ...formData, + ...addedFieldData, + }; + const processedActionData = processActionData(action.data, row, action.replacementBehaviour); + + if (Array.isArray(row) && action.multiPost === false) { + const arrayOfObjects = row.map((singleRow) => { + const itemData = { ...commonData }; + Object.keys(processedActionData).forEach((key) => { + const rowValue = singleRow[processedActionData[key]]; + itemData[key] = rowValue !== undefined ? rowValue : processedActionData[key]; + }); + return itemData; + }); + if (action.type === "POST") { + actionPostRequest.mutate({ + url: action.url, + bulkRequest: true, + data: arrayOfObjects, + }); + } else if (action.type === "GET") { + setGetRequestInfo({ + url: action.url, + waiting: true, + queryKey: Date.now(), + bulkRequest: true, + data: arrayOfObjects, + }); + } + return; + } + + if (Array.isArray(row) && action.multiPost === true) { + const singleArrayData = row.map((singleRow) => { + const itemData = { ...commonData }; + Object.keys(processedActionData).forEach((key) => { + const rowValue = singleRow[processedActionData[key]]; + itemData[key] = rowValue !== undefined ? rowValue : processedActionData[key]; + }); + return itemData; + }); + + if (action.type === "POST") { + actionPostRequest.mutate({ + url: action.url, + bulkRequest: false, + data: singleArrayData, + }); + } else if (action.type === "GET") { + setGetRequestInfo({ + url: action.url, + waiting: true, + queryKey: Date.now(), + bulkRequest: false, + data: singleArrayData, + }); + } + return; + } + + const finalData = { ...commonData }; + Object.keys(processedActionData).forEach((key) => { + const rowValue = row[processedActionData[key]]; + finalData[key] = rowValue !== undefined ? rowValue : processedActionData[key]; + }); + + if (action.type === "POST") { + actionPostRequest.mutate({ + url: action.url, + bulkRequest: false, + data: finalData, + }); + } else if (action.type === "GET") { + setGetRequestInfo({ + url: action.url, + waiting: true, + queryKey: Date.now(), + bulkRequest: false, + data: finalData, + }); + } + }; + + const formHook = useForm(); + const onSubmit = (data) => handleActionClick(row, api, data); + const selectedType = api.type === "POST" ? actionPostRequest : actionGetRequest; + + // Handling link navigation + if (api.link) { + const getNestedValue = (obj, path) => { + return path + .split(".") + .reduce((acc, key) => (acc && acc[key] !== undefined ? acc[key] : undefined), obj); + }; + + const linkWithRowData = api.link.replace(/\[([^\]]+)\]/g, (_, key) => { + return getNestedValue(row, key) || `[${key}]`; + }); + + if (linkWithRowData.startsWith("/")) { + router.push(linkWithRowData, undefined, { shallow: true }); + } else { + window.open(linkWithRowData, api.target || "_blank"); + } + + return null; + } + useEffect(() => { + if (api.noConfirm) { + formHook.handleSubmit(onSubmit)(); // Submits the form on mount + createDialog.handleClose(); // Closes the dialog after submitting + } + }, [api.noConfirm]); // Run effect only when api.noConfirm changes + + const handleClose = () => { + createDialog.handleClose(); + setPartialResults([]); + }; + + return ( + +
    + {title} + + {api.confirmText} + + + + {fields && + fields.map((fieldProps, index) => { + return ( + + + + ); + })} + + + + + + + + + +
    +
    + ); +}; diff --git a/src/components/CippComponents/CippApiResults.jsx b/src/components/CippComponents/CippApiResults.jsx new file mode 100644 index 000000000000..b1fee51f09de --- /dev/null +++ b/src/components/CippComponents/CippApiResults.jsx @@ -0,0 +1,254 @@ +import { Close, ContentCopy } from "@mui/icons-material"; +import { Alert, CircularProgress, Collapse, IconButton, Typography } from "@mui/material"; +import { useEffect, useState, useMemo } from "react"; +import { getCippError } from "../../utils/get-cipp-error"; +import { CippCopyToClipBoard } from "./CippCopyToClipboard"; +import { Grid } from "@mui/system"; + +const extractAllResults = (data) => { + const results = []; + + const getSeverity = (text) => { + if (typeof text !== "string") return "success"; + return /error|failed|exception|not found/i.test(text) ? "error" : "success"; + }; + + const processResultItem = (item) => { + if (typeof item === "string") { + return { + text: item, + copyField: item, + severity: getSeverity(item), + }; + } + + if (item && typeof item === "object") { + const text = item.resultText || ""; + const copyField = item.copyField || text; + const severity = + typeof item.state === "string" ? item.state : getSeverity(item) ? "error" : "success"; + + if (text) { + return { + text, + copyField, + severity, + }; + } + } + return null; + }; + + const extractFrom = (obj) => { + if (!obj) return; + + if (Array.isArray(obj)) { + obj.forEach((item) => extractFrom(item)); + return; + } + + if (typeof obj === "string") { + results.push({ text: obj, copyField: obj, severity: getSeverity(obj) }); + return; + } + + const ignoreKeys = ["metadata", "Metadata"]; + + if (typeof obj === "object") { + Object.keys(obj).forEach((key) => { + const value = obj[key]; + if (ignoreKeys.includes(key)) return; + if (["Results", "Result", "results", "result"].includes(key)) { + if (Array.isArray(value)) { + value.forEach((valItem) => { + const processed = processResultItem(valItem); + if (processed) { + results.push(processed); + } else { + extractFrom(valItem); + } + }); + } else if (typeof value === "object") { + const processed = processResultItem(value); + if (processed) { + results.push(processed); + } else { + extractFrom(value); + } + } else if (typeof value === "string") { + results.push({ + text: value, + copyField: value, + severity: getSeverity(value), + }); + } + } else { + extractFrom(value); + } + }); + } + }; + + extractFrom(data); + return results; +}; + +export const CippApiResults = (props) => { + const { apiObject, errorsOnly = false, alertSx = {} } = props; + + const [errorVisible, setErrorVisible] = useState(false); + const [fetchingVisible, setFetchingVisible] = useState(false); + const [finalResults, setFinalResults] = useState([]); + const correctResultObj = useMemo(() => { + if (!apiObject.isSuccess) return; + + const data = apiObject?.data; + const dataData = data?.data; + if (dataData !== undefined && dataData !== null) { + if (dataData?.Results) { + return dataData.Results; + } else if (typeof dataData === "object" && dataData !== null && !("metadata" in dataData)) { + return dataData; + } else if (typeof dataData === "string") { + return dataData; + } else { + return "This API has not sent the correct output format."; + } + } + if (data?.Results) { + return data.Results; + } else if (typeof data === "object" && data !== null && !("metadata" in data)) { + return data; + } else if (typeof data === "string") { + return data; + } + + return "This API has not sent the correct output format."; + }, [apiObject]); + + const allResults = useMemo(() => { + const apiResults = extractAllResults(correctResultObj); + return apiResults; + }, [apiObject]); + + useEffect(() => { + setErrorVisible(!!apiObject.isError); + + if (!errorsOnly) { + if (apiObject.isFetching || (apiObject.isIdle === false && apiObject.isPending === true)) { + setFetchingVisible(true); + } else { + setFetchingVisible(false); + } + if (allResults.length > 0) { + setFinalResults( + allResults.map((res, index) => ({ + id: index, + text: res.text, + copyField: res.copyField, + severity: res.severity, + visible: true, + })) + ); + } else { + setFinalResults([]); + } + } + }, [ + apiObject.isError, + apiObject.isFetching, + apiObject.isPending, + apiObject.isIdle, + allResults, + errorsOnly, + ]); + + const handleCloseResult = (id) => { + setFinalResults((prev) => prev.map((r) => (r.id === id ? { ...r, visible: false } : r))); + }; + + const hasVisibleResults = finalResults.some((r) => r.visible); + return ( + <> + {/* Loading alert */} + {!errorsOnly && ( + + setFetchingVisible(false)} + > + + + } + variant="outlined" + severity="info" + > + + Loading... + + + + )} + + {/* Error alert */} + + {apiObject.isError && ( + setErrorVisible(false)} + > + + + } + > + {getCippError(apiObject.error)} + + )} + + + {/* Individual result alerts */} + {apiObject.isSuccess && !errorsOnly && hasVisibleResults && ( + + {finalResults.map((resultObj) => ( + + + + + handleCloseResult(resultObj.id)} + > + + + + } + > + {resultObj.text} + + + + ))} + + )} + + ); +}; diff --git a/src/components/CippComponents/CippAppPermissionBuilder.jsx b/src/components/CippComponents/CippAppPermissionBuilder.jsx new file mode 100644 index 000000000000..c872e5e8389a --- /dev/null +++ b/src/components/CippComponents/CippAppPermissionBuilder.jsx @@ -0,0 +1,1105 @@ +import React, { useEffect, useState, useCallback } from "react"; +import { + Box, + Button, + Accordion, + AccordionSummary, + AccordionDetails, + Tooltip, + Grid, + Alert, + Skeleton, + IconButton, + SvgIcon, + Stack, + Chip, + Typography, + Tabs, + Tab, +} from "@mui/material"; + +import { ApiGetCall, ApiPostCall } from "/src/api/ApiCall"; +import { CippDataTable } from "../CippTable/CippDataTable"; +import { PlusIcon, ShieldCheckIcon, WrenchIcon } from "@heroicons/react/24/outline"; +import CippFormComponent from "./CippFormComponent"; +import { + Delete, + Download, + Error, + ExpandMore, + Save, + TaskAlt, + Undo, + Upload, + WarningAmberOutlined, +} from "@mui/icons-material"; +import { useWatch } from "react-hook-form"; +import { CippCardTabPanel } from "./CippCardTabPanel"; +import { CippApiResults } from "./CippApiResults"; +import _ from "lodash"; +import { CippCodeBlock } from "./CippCodeBlock"; +import { CippOffCanvas } from "./CippOffCanvas"; +import { FileDropzone } from "../file-dropzone"; +import { ConfirmationDialog } from "../confirmation-dialog"; + +const CippAppPermissionBuilder = ({ + onSubmit, + updatePermissions, + currentPermissions = {}, + removePermissionConfirm = false, + appDisplayName = "CIPP-SAM", + formControl, +}) => { + const [selectedApp, setSelectedApp] = useState([]); + const [permissionsImported, setPermissionsImported] = useState(false); + const [newPermissions, setNewPermissions] = useState({}); + const [importedManifest, setImportedManifest] = useState(null); + const [manifestVisible, setManifestVisible] = useState(false); + const [manifestError, setManifestError] = useState(false); + const [calloutMessage, setCalloutMessage] = useState(null); + const [initialPermissions, setInitialPermissions] = useState(); + const [additionalPermissionsDialog, setAdditionalPermissionsDialog] = useState(false); + const [additionalPermissions, setAdditionalPermissions] = useState([]); + const [removePermissionDialog, setRemovePermissionDialog] = useState(false); + const [spToRemove, setSpToRemove] = useState(null); + const [resetPermissionDialog, setResetPermissionDialog] = useState(false); + const [expanded, setExpanded] = useState(false); + + const handleChange = (panel) => (event, newExpanded) => { + setExpanded(newExpanded ? panel : false); + }; + + const currentSelectedSp = useWatch({ control: formControl.control, name: "servicePrincipal" }); + const { + data: servicePrincipals = [], + isSuccess: spSuccess, + isFetching: spFetching, + isLoading: spLoading, + } = ApiGetCall({ + url: "/api/ExecServicePrincipals", + queryKey: "execServicePrincipals", + waiting: true, + }); + + const removeServicePrincipal = useCallback( + (appId, isConfirm) => { + const newServicePrincipals = selectedApp.filter((sp) => sp?.appId !== appId); + + if (!isConfirm && removePermissionConfirm) { + setSpToRemove(appId); + setRemovePermissionDialog(true); + return; + } + + // Only update selectedApp if there is a change + setSelectedApp((prevSelectedApp) => { + if (prevSelectedApp.length !== newServicePrincipals.length) { + return newServicePrincipals; + } + return prevSelectedApp; + }); + + // Update newPermissions by creating a shallow copy and deleting the entry + setNewPermissions((prevPermissions) => { + if (prevPermissions.Permissions[appId]) { + const updatedPermissions = { + ...prevPermissions, + Permissions: { ...prevPermissions.Permissions }, + }; + delete updatedPermissions.Permissions[appId]; + return updatedPermissions; + } + return prevPermissions; + }); + }, + [selectedApp, newPermissions, removePermissionConfirm, removePermissionDialog] + ); + + const createServicePrincipal = ApiPostCall({ + urlFromData: true, + relatedQueryKeys: ["execServicePrincipals"], + }); + + const confirmReset = (isConfirm) => { + if (!isConfirm && removePermissionConfirm) { + setResetPermissionDialog(true); + } else { + setSelectedApp([]); + setPermissionsImported(false); + setManifestVisible(false); + setCalloutMessage("Permissions reset to default."); + } + }; + + const handleSubmit = (values) => { + if (onSubmit) { + var postBody = { + Permissions: newPermissions.Permissions, + }; + onSubmit(postBody); + } + }; + + const onCreateServicePrincipal = (newValue) => { + if (newValue.value) { + createServicePrincipal.mutate({ + url: "/api/ExecServicePrincipals?Action=Create&AppId=" + newValue.value, + data: {}, + }); + } + }; + + const savePermissionChanges = ( + servicePrincipal, + applicationPermissions, + delegatedPermissions + ) => { + setNewPermissions((prevPermissions) => { + const updatedPermissions = { + ...prevPermissions, + Permissions: { + ...prevPermissions.Permissions, + [servicePrincipal]: { + applicationPermissions, + delegatedPermissions, + }, + }, + }; + return updatedPermissions; + }); + + setExpanded(false); + }; + + const generateManifest = ({ appDisplayName = "CIPP-SAM", prompt = false }) => { + if (prompt || appDisplayName === "") { + ModalService.prompt({ + title: "Generate Manifest", + body: "Please enter the display name for the application.", + onConfirm: (value) => { + generateManifest({ appDisplayName: value }); + }, + }); + } else { + var manifest = { + isFallbackPublicClient: true, + signInAudience: "AzureADMultipleOrgs", + displayName: appDisplayName, + web: { + redirectUris: [ + "https://login.microsoftonline.com/common/oauth2/nativeclient", + "https://localhost", + "http://localhost", + "http://localhost:8400", + ], + }, + requiredResourceAccess: [], + }; + + var newAdditionalPermissions = []; + + selectedApp.map((sp) => { + var appRoles = newPermissions?.Permissions[sp.appId]?.applicationPermissions; + var delegatedPermissions = newPermissions?.Permissions[sp.appId]?.delegatedPermissions; + var requiredResourceAccess = { + resourceAppId: sp.appId, + resourceAccess: [], + }; + var additionalRequiredResourceAccess = { + resourceAppId: sp.appId, + resourceAccess: [], + }; + if (appRoles) { + appRoles.map((role) => { + requiredResourceAccess.resourceAccess.push({ + id: role.id, + type: "Role", + }); + }); + } + if (delegatedPermissions) { + delegatedPermissions.map((perm) => { + if (/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(perm.id)) { + requiredResourceAccess.resourceAccess.push({ + id: perm.id, + type: "Scope", + }); + } else { + additionalRequiredResourceAccess.resourceAccess.push({ + id: perm.id, + type: "Scope", + }); + } + }); + } + if (requiredResourceAccess.resourceAccess.length > 0) { + manifest.requiredResourceAccess.push(requiredResourceAccess); + } + if (additionalRequiredResourceAccess.resourceAccess.length > 0) { + newAdditionalPermissions.push(additionalRequiredResourceAccess); + } + }); + + var fileName = `${appDisplayName.replace(" ", "-")}.json`; + if (appDisplayName === "CIPP-SAM") { + fileName = "SAMManifest.json"; + } + + var blob = new Blob([JSON.stringify(manifest, null, 2)], { type: "application/json" }); + var url = URL.createObjectURL(blob); + var a = document.createElement("a"); + a.href = url; + a.download = `${fileName}`; + a.click(); + URL.revokeObjectURL(url); + + if (newAdditionalPermissions.length > 0) { + setAdditionalPermissionsDialog(true); + setAdditionalPermissions(newAdditionalPermissions); + } + } + }; + + const importManifest = () => { + var updatedPermissions = { Permissions: {} }; + var manifest = importedManifest; + var requiredResourceAccess = manifest.requiredResourceAccess; + var selectedServicePrincipals = []; + + requiredResourceAccess.map((resourceAccess) => { + var sp = servicePrincipals?.Results?.find((sp) => sp.appId === resourceAccess.resourceAppId); + if (sp) { + var appRoles = []; + var delegatedPermissions = []; + selectedServicePrincipals.push(sp); + resourceAccess.resourceAccess.map((access) => { + if (access.type === "Role") { + var role = sp.appRoles.find((role) => role.id === access.id); + if (role) { + appRoles.push({ + id: role.id, + value: role.value, + }); + } + } else if (access.type === "Scope") { + var scope = sp.publishedPermissionScopes.find((scope) => scope.id === access.id); + if (scope) { + delegatedPermissions.push({ + id: scope.id, + value: scope.value, + }); + } + } + }); + updatedPermissions.Permissions[sp.appId] = { + applicationPermissions: appRoles, + delegatedPermissions: delegatedPermissions, + }; + } + }); + setNewPermissions(updatedPermissions); + setSelectedApp(selectedServicePrincipals); + setImportedManifest(null); + setPermissionsImported(true); + setManifestVisible(false); + setCalloutMessage("Manifest imported successfully."); + }; + + const onManifestImport = useCallback((acceptedFiles) => { + acceptedFiles.forEach((file) => { + const reader = new FileReader(); + reader.onabort = () => console.log("file reading was aborted"); + reader.onerror = () => console.log("file reading has failed"); + reader.onload = () => { + try { + var manifest = JSON.parse(reader.result); + } catch { + setManifestError(true); + return; + } + const requiredProperties = [ + "isFallbackPublicClient", + "signInAudience", + "displayName", + "web", + "requiredResourceAccess", + ]; + var isManifestValid = true; + requiredProperties.forEach((key) => { + if (!Object.keys(manifest).includes(key)) { + isManifestValid = false; + return; + } + }); + if (isManifestValid) { + setImportedManifest(manifest); + setManifestError(false); + } else { + setManifestError(true); + setImportedManifest(false); + } + }; + reader.readAsText(file); + }); + }, []); + + useEffect(() => { + if (spSuccess) { + try { + var initialAppIds = Object.keys(currentPermissions?.Permissions); + } catch { + initialAppIds = []; + } + + if (selectedApp.length == 0 && initialAppIds.length == 0) { + var microsoftGraph = servicePrincipals?.Results?.find( + (sp) => sp?.appId === "00000003-0000-0000-c000-000000000000" + ); + setSelectedApp([microsoftGraph]); + setNewPermissions({ + Permissions: { + "00000003-0000-0000-c000-000000000000": { + applicationPermissions: [], + delegatedPermissions: [], + }, + }, + }); + } else if (currentPermissions !== initialPermissions) { + setSelectedApp([]); + setNewPermissions(currentPermissions); + setInitialPermissions(currentPermissions); + setPermissionsImported(false); + } else if (initialAppIds.length > 0 && permissionsImported == false) { + const newApps = servicePrincipals?.Results?.filter((sp) => + initialAppIds.includes(sp.appId) + )?.sort((a, b) => a.displayName.localeCompare(b.displayName)); + + setSelectedApp((prevApps) => { + if (JSON.stringify(prevApps) !== JSON.stringify(newApps)) { + return newApps; + } + return prevApps; + }); + + setNewPermissions(currentPermissions); + setInitialPermissions(currentPermissions); + setPermissionsImported(true); + } + } + }, [ + currentPermissions, + initialPermissions, + permissionsImported, + selectedApp, + servicePrincipals, + spSuccess, + ]); + + const getPermissionCounts = (appId) => { + var appRoles = newPermissions?.Permissions[appId]?.applicationPermissions; + var delegatedPermissions = newPermissions?.Permissions[appId]?.delegatedPermissions; + + var counts = `${appRoles?.length ?? 0}/${delegatedPermissions?.length ?? 0}`; + return ( + + + + + {counts} + + ); + }; + + const ApiPermissionRow = ({ servicePrincipal = null, spPermissions, formControl }) => { + const [value, setValue] = useState(0); + const [spInitialized, setSpInitialized] = useState(false); + const [appTable, setAppTable] = useState([]); + const [delegatedTable, setDelegatedTable] = useState([]); + const [permissionsChanged, setPermissionsChanged] = useState(false); + + const { + data: spInfo = [], + isSuccess: spInfoSuccess, + isFetching: spInfoFetching, + } = ApiGetCall({ + url: `/api/ExecServicePrincipals?Id=${servicePrincipal.id}`, + queryKey: `execServicePrincipals-${servicePrincipal.id}`, + waiting: true, + }); + + const currentAppPermission = useWatch({ + control: formControl.control, + name: `Permissions.${servicePrincipal.appId}.applicationPermissions`, + }); + const currentDelegatedPermission = useWatch({ + control: formControl.control, + name: `Permissions.${servicePrincipal.appId}.delegatedPermissions`, + }); + + useEffect(() => { + if (spInfoSuccess && !spInitialized) { + if (appTable.length === 0) { + setAppTable( + spPermissions?.applicationPermissions + ?.sort((a, b) => a.value.localeCompare(b.value)) + ?.map((perm) => ({ + id: perm.id, + value: perm.value, + description: spInfo?.Results?.appRoles.find((role) => role.id === perm.id) + ?.description, + })) + ); + } + if (delegatedTable.length === 0) { + setDelegatedTable( + spPermissions?.delegatedPermissions + ?.sort((a, b) => a.value.localeCompare(b.value)) + ?.map((perm) => ({ + id: perm.id, + value: perm.value, + description: + spInfo?.Results?.publishedPermissionScopes.find((scope) => scope.id === perm.id) + ?.userConsentDescription ?? "Manually added", + })) + ); + } + setSpInitialized(true); + } + }, [spInitialized, spInfoSuccess, appTable?.length, delegatedTable?.length]); + + useEffect(() => { + if (spInfoSuccess) { + var appRoles = appTable?.map((perm) => perm.id).sort(); + var delegatedPermissions = delegatedTable?.map((perm) => perm.id).sort(); + var originalAppRoles = spPermissions?.applicationPermissions.map((perm) => perm.id).sort(); + var originalDelegatedPermissions = spPermissions?.delegatedPermissions + .map((perm) => perm.id) + .sort(); + if ( + JSON.stringify(appRoles) !== JSON.stringify(originalAppRoles) || + JSON.stringify(delegatedPermissions) !== JSON.stringify(originalDelegatedPermissions) + ) { + setPermissionsChanged(true); + } else { + setPermissionsChanged(false); + } + } + }, [appTable, delegatedTable, spInfoSuccess, spPermissions]); + + const handleAddRow = (permissionType, permission) => { + if (permissionType === "applicationPermissions") { + var newAppPermission = { + id: permission.value, + value: permission.label, + description: spInfo?.Results?.appRoles.find((role) => role.id === permission.value) + ?.description, + }; + setAppTable([...(appTable ?? []), newAppPermission]); + formControl.setValue(`Permissions.${servicePrincipal.appId}.applicationPermissions`, null); + } else { + var newDelegatedPermission = { + id: permission.value, + value: permission.label, + description: spInfo?.Results?.publishedPermissionScopes.find( + (scope) => scope.id === permission.value + )?.userConsentDescription, + }; + setDelegatedTable([...(delegatedTable ?? []), newDelegatedPermission]); + formControl.setValue(`Permissions.${servicePrincipal.appId}.delegatedPermissions`, null); + } + }; + + const handleRemoveRow = (permissionType, permission) => { + if (permission?.id) { + if (permissionType === "applicationPermissions") { + setAppTable((prevAppTable) => prevAppTable.filter((perm) => perm.id !== permission.id)); + } else { + setDelegatedTable((prevDelegatedTable) => + prevDelegatedTable.filter((perm) => perm.id !== permission.id) + ); + } + } + }; + + const handleSavePermissions = () => { + savePermissionChanges( + servicePrincipal.appId, + appTable.map((perm) => ({ id: perm.id, value: perm.value })), + delegatedTable.map((perm) => ({ id: perm.id, value: perm.value })) + ); + }; + + function tabProps(index) { + return { + id: `simple-tab-${index}`, + "aria-controls": `simple-tabpanel-${index}`, + }; + } + + const handleTabChange = (event, newValue) => { + setValue(newValue); + }; + + return ( + <> + {servicePrincipal && spInfoSuccess && ( + <> + + Manage the permissions for the {servicePrincipal.displayName}. + + + + + + + + + + + {servicePrincipal?.appRoles?.length > 0 ? ( + <> + + + + !appTable.find((perm) => perm.id === role.id)) + .map((role) => ({ + label: role.value, + value: role.id, + }))} + formControl={formControl} + multiple={false} + /> + + + +
    + handleAddRow("applicationPermissions", currentAppPermission) + } + > + +
    +
    +
    +
    + , + noConfirm: true, + customFunction: (row) => handleRemoveRow("applicationPermissions", row), + }, + ]} + /> +
    + + ) : ( + } sx={{ mb: 3 }}> + No Application Permissions found. + + )} +
    + + + {spInfo?.Results?.publishedPermissionScopes?.length === 0 && ( + }> + No Published Delegated Permissions found. + + )} + + + !delegatedTable.find((perm) => perm.id === scope.id)) + .map((scope) => ({ + label: scope.value, + value: scope.id, + }))} + formControl={formControl} + multiple={false} + /> + + + +
    + handleAddRow("delegatedPermissions", currentDelegatedPermission) + } + > + +
    +
    +
    +
    + + , + noConfirm: true, + customFunction: (row) => handleRemoveRow("delegatedPermissions", row), + }, + ]} + /> +
    +
    + + +
    + + )} + + ); + }; + + return ( + <> + {spLoading && } + {spSuccess && ( + <> + + + + + {servicePrincipals?.Metadata?.Success && ( + { + return { label: `${sp.displayName} (${sp.appId})`, value: sp.appId }; + })} + formControl={formControl} + multiple={false} + /> + )} + + + + +
    { + setSelectedApp([ + ...selectedApp, + servicePrincipals?.Results?.find( + (sp) => sp.appId === currentSelectedSp.value + ), + ]); + formControl.setValue("servicePrincipal", null); + }} + > + +
    +
    + + + + + + + + + + + +
    +
    +
    + + + + { + setManifestVisible(false); + }} + > + + + + Import Permission Manifest + + + Import a JSON application manifest to set permissions. This will overwrite any + existing permissions. You can obtain one from an App Registration in the Entra + portal. Just click on Manifest and download the JSON file. + + + + + + + + + {manifestError && ( + } sx={{ mt: 4 }}> + Invalid manifest. Please ensure the manifest is in the correct format. + + )} + {importedManifest && ( + <> + + + }> + Manifest is valid. Click Import to apply the permissions. + + + + + + + + +

    Preview

    + +
    +
    + + )} +
    + {calloutMessage && ( + + + setCalloutMessage(null)}> + {calloutMessage} + + + + )} + + {newPermissions?.MissingPermissions && + newPermissions?.Type === "Table" && + Object.keys(newPermissions?.MissingPermissions).length > 0 && ( + + + } + action={ + + { + var updatedPermissions = JSON.parse(JSON.stringify(newPermissions)); + Object.keys(newPermissions?.MissingPermissions).map((perm) => { + Object.keys(newPermissions?.MissingPermissions[perm]).map( + (type) => { + if (!updatedPermissions.Permissions[perm][type]) { + updatedPermissions.Permissions[perm][type] = []; + } + newPermissions?.MissingPermissions[perm][type].map((p) => { + updatedPermissions.Permissions[perm][type].push(p); + }); + } + ); + }); + updatedPermissions.MissingPermissions = {}; + setNewPermissions(updatedPermissions); + }} + > + + + + + + } + > + New Permissions Available + {Object.keys(newPermissions?.MissingPermissions).map((perm) => { + // translate appid to display name + var sp = servicePrincipals?.Results?.find((sp) => sp.appId === perm); + return ( + + {sp?.displayName}:{" "} + {Object.keys(newPermissions?.MissingPermissions[perm]).map((type) => { + return ( + <> + {newPermissions?.MissingPermissions[perm][type].length > 0 && ( + + {type == "applicationPermissions" + ? "Application" + : "Delegated"}{" "} + -{" "} + {newPermissions?.MissingPermissions[perm][type] + .map((p) => { + return p.value; + }) + .join(", ")} + + )} + + ); + })} + + ); + })} + + + + )} + + + {selectedApp && + selectedApp?.length > 0 && + selectedApp?.map((sp, spIndex) => ( + + }> + + {sp.displayName} + + + + + +
    { + e.stopPropagation(); + removeServicePrincipal(sp.appId); + }} + > + + + + + +
    +
    +
    +
    +
    + + + +
    + ))} +
    +
    +
    + + + + + + + + + + + )} + { + removeServicePrincipal(spToRemove, true); + setRemovePermissionDialog(false); + }} + onCancel={() => { + setRemovePermissionDialog(false); + }} + /> + + { + confirmReset(true); + setResetPermissionDialog(false); + }} + onCancel={() => { + setResetPermissionDialog(false); + }} + /> + + { + var additionalBlob = new Blob([JSON.stringify(additionalPermissions, null, 2)], { + type: "application/json", + }); + var additionalUrl = URL.createObjectURL(additionalBlob); + var additionalA = document.createElement("a"); + additionalA.href = additionalUrl; + additionalA.download = "AdditionalPermissions.json"; + additionalA.click(); + URL.revokeObjectURL(additionalUrl); + setAdditionalPermissionsDialog(false); + }} + onCancel={() => { + setAdditionalPermissionsDialog(false); + }} + /> + + ); +}; + +export default CippAppPermissionBuilder; diff --git a/src/components/CippComponents/CippAutocomplete.jsx b/src/components/CippComponents/CippAutocomplete.jsx new file mode 100644 index 000000000000..1513e4ca8da1 --- /dev/null +++ b/src/components/CippComponents/CippAutocomplete.jsx @@ -0,0 +1,176 @@ +import { ArrowDropDown } from "@mui/icons-material"; +import { Autocomplete, CircularProgress, createFilterOptions, TextField } from "@mui/material"; +import { ApiGetCall } from "../../api/ApiCall"; +import { useEffect, useState } from "react"; +import { useSettings } from "../../hooks/use-settings"; +import { getCippError } from "../../utils/get-cipp-error"; + +export const CippAutoComplete = (props) => { + const { + size, + api, + label, + multiple = true, + creatable = true, + defaultValue, + value, + placeholder, + disableClearable, + disabled, + name, + options = [], + onChange, + onCreateOption, + required = false, + sx, + ...other + } = props; + const filter = createFilterOptions(); + const [usedOptions, setUsedOptions] = useState(options); + const [getRequestInfo, setGetRequestInfo] = useState({ url: "", waiting: false, queryKey: "" }); + + const actionGetRequest = ApiGetCall({ + ...getRequestInfo, + }); + + const currentTenant = api?.tenantFilter ? api.tenantFilter : useSettings().currentTenant; + useEffect(() => { + if (api) { + setGetRequestInfo({ + url: api.url, + data: { + ...(!api.excludeTenantFilter ? { TenantFilter: currentTenant } : null), + ...api.data, + }, + waiting: true, + queryKey: api.queryKey, + }); + } + + if (actionGetRequest.isSuccess) { + const dataToMap = api.dataKey ? actionGetRequest.data?.[api.dataKey] : actionGetRequest.data; + if (!Array.isArray(dataToMap)) { + setUsedOptions([ + { + label: "Error: The API returned data we cannot map to this field", + value: "Error: The API returned data we cannot map to this field", + }, + ]); + return; + } + const convertedOptions = dataToMap.map((option) => { + const addedFields = {}; + if (api.addedField) { + Object.keys(api.addedField).forEach((key) => { + addedFields[key] = option[api.addedField[key]]; + }); + } + return { + label: + typeof api.labelField === "function" ? api.labelField(option) : option[api.labelField], + value: + typeof api.valueField === "function" ? api.valueField(option) : option[api.valueField], + addedFields: addedFields, + }; + }); + setUsedOptions(convertedOptions); + } + if (actionGetRequest.isError) { + setUsedOptions([{ label: getCippError(actionGetRequest.error), value: "error" }]); + } + }, [api, actionGetRequest.data]); + const rand = Math.random().toString(36).substring(5); + return ( + + ) : ( + + ) + } + isOptionEqualToValue={(option, value) => option.value === value.value} + value={typeof value === "string" ? { label: value, value: value } : value} + filterSelectedOptions + disableClearable={disableClearable} + multiple={multiple} + fullWidth + filterOptions={(options, params) => { + const filtered = filter(options, params); + const isExisting = + options !== undefined && + options !== null && + options?.length > 0 && + options?.some( + (option) => params.inputValue === option.value || params.inputValue === option.label + ); + if (params.inputValue !== "" && creatable && !isExisting) { + filtered.push({ + label: `Add option: "${params.inputValue}"`, + value: params.inputValue, + manual: true, + }); + } + + return filtered; + }} + size="small" + defaultValue={ + typeof defaultValue === "string" + ? { label: defaultValue, value: defaultValue } + : defaultValue + } + name={name} + onChange={(event, newValue) => { + if (Array.isArray(newValue)) { + newValue = newValue.map((item) => { + if (item?.manual || !item?.label) { + item = { + label: item?.label ? item.value : item, + value: item?.label ? item.value : item, + }; + if (onCreateOption) { + onCreateOption(item, item?.addedFields); + } + } + return item; + }); + } else { + if (newValue?.manual || !newValue?.label) { + newValue = { + label: newValue?.label ? newValue.value : newValue, + value: newValue?.label ? newValue.value : newValue, + }; + if (onCreateOption) { + onCreateOption(newValue, newValue?.addedFields); + } + } + } + if (onChange) { + onChange(newValue, newValue?.addedFields); + } + }} + options={api ? usedOptions : options} + getOptionLabel={(option) => + option + ? option.label === null + ? "" + : option.label || "Label not found - Are you missing a labelField?" + : "" + } + sx={sx} + renderInput={(params) => ( + + )} + {...other} + /> + ); +}; diff --git a/src/components/CippComponents/CippCardTabPanel.jsx b/src/components/CippComponents/CippCardTabPanel.jsx new file mode 100644 index 000000000000..d994ba7ad630 --- /dev/null +++ b/src/components/CippComponents/CippCardTabPanel.jsx @@ -0,0 +1,17 @@ +import { Box } from "@mui/material"; + +export const CippCardTabPanel = (props) => { + const { children, value, index, ...other } = props; + + return ( + + ); +}; diff --git a/src/components/CippComponents/CippCodeBlock.jsx b/src/components/CippComponents/CippCodeBlock.jsx new file mode 100644 index 000000000000..e23cc9c2557e --- /dev/null +++ b/src/components/CippComponents/CippCodeBlock.jsx @@ -0,0 +1,76 @@ +import React, { useState } from "react"; +import { atomDark } from "react-syntax-highlighter/dist/cjs/styles/prism"; +import SyntaxHighlighter from "react-syntax-highlighter"; +import { CippCopyToClipBoard } from "./CippCopyToClipboard"; +import { styled } from "@mui/system"; // Correct import from @mui/system +import { Editor } from "@monaco-editor/react"; +import { useSettings } from "../../hooks/use-settings"; + +const CodeContainer = styled("div")` + position: relative; + display: block; + max-width: 100%; /* Ensure it fits within the card */ + word-wrap: break-word; + white-space: pre-wrap; + word-break: break-all; + padding-bottom: 1rem; + .cipp-code-copy-button { + position: absolute; + right: 0.5rem; + top: 0.5rem; + z-index: 1; /* Ensure the button is above the code block */ + } +`; + +export const CippCodeBlock = (props) => { + const { + code, + language = "javascript", + showLineNumbers = false, + startingLineNumber = 1, + wrapLongLines = true, + type = "syntax", + editorHeight = "500px", + ...other + } = props; + const [codeCopied, setCodeCopied] = useState(false); + + const onCodeCopied = () => { + setCodeCopied(true); + setTimeout(() => setCodeCopied(false), 2000); + }; + const currentTheme = useSettings()?.currentTheme?.value; + return ( + +
    + +
    + {type === "editor" && ( + + )} + {type === "syntax" && ( + + {code} + + )} +
    + ); +}; diff --git a/src/components/CippComponents/CippComponentDialog.jsx b/src/components/CippComponents/CippComponentDialog.jsx new file mode 100644 index 000000000000..9f8c618ad179 --- /dev/null +++ b/src/components/CippComponents/CippComponentDialog.jsx @@ -0,0 +1,24 @@ +import { Button, Dialog, DialogActions, DialogContent, DialogTitle } from "@mui/material"; + +export const CippComponentDialog = (props) => { + const { children, createDialog, title, ...other } = props; + + return ( + +
    + {title} + {...children} + + + + +
    +
    + ); +}; + +export default CippComponentDialog; diff --git a/src/components/CippComponents/CippCopyToClipboard.jsx b/src/components/CippComponents/CippCopyToClipboard.jsx new file mode 100644 index 000000000000..f7ad974e1f42 --- /dev/null +++ b/src/components/CippComponents/CippCopyToClipboard.jsx @@ -0,0 +1,60 @@ +import { CopyAll, Visibility, VisibilityOff } from "@mui/icons-material"; +import { Chip, IconButton, SvgIcon, Tooltip } from "@mui/material"; +import { useState } from "react"; +import CopyToClipboard from "react-copy-to-clipboard"; + +export const CippCopyToClipBoard = (props) => { + const { text, type = "button", ...other } = props; + const [showPassword, setShowPassword] = useState(false); + const handleTogglePassword = () => { + setShowPassword((prev) => !prev); + }; + return ( + <> + {type === "button" && ( + + + + + + + + + + )} + {type === "chip" && ( + + + + + + )} + {type === "password" && ( + <> + + + {showPassword ? : } + + + + + + + + + )} + + ); +}; diff --git a/src/components/CippComponents/CippCsvExportButton.jsx b/src/components/CippComponents/CippCsvExportButton.jsx new file mode 100644 index 000000000000..5a59aa4b1ea8 --- /dev/null +++ b/src/components/CippComponents/CippCsvExportButton.jsx @@ -0,0 +1,64 @@ +import { BackupTableTwoTone } from "@mui/icons-material"; +import { IconButton, Tooltip } from "@mui/material"; +import { mkConfig, generateCsv, download } from "export-to-csv"; + +// Utility to flatten nested objects +const flattenObject = (obj, parent = "", res = {}) => { + for (let key in obj) { + const propName = parent ? `${parent}.${key}` : key; + if (typeof obj[key] === "object" && obj[key] !== null) { + flattenObject(obj[key], propName, res); + } else { + res[propName] = obj[key]; + } + } + return res; +}; + +export const CippCsvExportButton = ({ rawData, reportName = "Export", includeFields = [] }) => { + const handleExport = () => { + if (!rawData || rawData.length === 0) { + console.warn("No raw data available for export."); + return; + } + + // Flatten and process raw data + const flattenedData = rawData.map((item) => flattenObject(item)); + + // Optionally filter specific fields + const exportData = includeFields.length + ? flattenedData.map((row) => + includeFields.reduce((filteredRow, field) => { + if (row[field] !== undefined) { + filteredRow[field] = row[field]; + } + return filteredRow; + }, {}) + ) + : flattenedData; + + // Generate CSV configuration + const csvConfig = mkConfig({ + fieldSeparator: ",", + decimalSeparator: ".", + useKeysAsHeaders: true, + filename: `${reportName}_${new Date().toISOString()}.csv`, + }); + + // Generate and download CSV + const csv = generateCsv(csvConfig)(exportData); + download(csvConfig)(csv); + }; + + return ( + + + + + + + + ); +}; + +export default CippCsvExportButton; diff --git a/src/components/CippComponents/CippDevOptions.jsx b/src/components/CippComponents/CippDevOptions.jsx new file mode 100644 index 000000000000..dab86d6c454a --- /dev/null +++ b/src/components/CippComponents/CippDevOptions.jsx @@ -0,0 +1,35 @@ +import { useSettings } from "../../hooks/use-settings"; +import { Button, Card, CardHeader, Divider, CardContent, SvgIcon } from "@mui/material"; +import { CodeBracketIcon, CogIcon } from "@heroicons/react/24/outline"; + +export const CippDevOptions = () => { + const settings = useSettings(); + + const handleDevToolsToggle = () => { + settings.handleUpdate({ + showDevtools: !settings.showDevtools, + }); + }; + + return ( + + + + + + + + ); +}; + +export default CippDevOptions; diff --git a/src/components/utilities/CippDropzone.jsx b/src/components/CippComponents/CippDropzone.jsx similarity index 68% rename from src/components/utilities/CippDropzone.jsx rename to src/components/CippComponents/CippDropzone.jsx index 4623b03401bd..6e400ef31e2c 100644 --- a/src/components/utilities/CippDropzone.jsx +++ b/src/components/CippComponents/CippDropzone.jsx @@ -1,37 +1,39 @@ -import React, { useCallback, useMemo, useState } from 'react' -import PropTypes from 'prop-types' -import { CippContentCard } from 'src/components/layout' -import { useDropzone } from 'react-dropzone' -import styled from 'styled-components' -import { useMediaPredicate } from 'react-media-hook' -import { useSelector } from 'react-redux' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import React, { useCallback, useMemo, useState } from "react"; +import PropTypes from "prop-types"; +//import { CippContentCard } from 'src/components/layout' +import { useDropzone } from "react-dropzone"; +import { styled } from "@mui/material/styles"; +import { useMediaPredicate } from "react-media-hook"; +//import { useSelector } from "react-redux"; +//import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' const getColor = (props) => { if (props.isDragAccept) { - return '#00e676' + return "#00e676"; } if (props.isDragReject) { - return '#ff1744' + return "#ff1744"; } if (props.isFocused) { - return '#2196f3' + return "#2196f3"; } - return '#eeeeee' -} + return "#eeeeee"; +}; const BackgroundColor = () => { - const currentTheme = useSelector((state) => state.app.currentTheme) - const preferredTheme = useMediaPredicate('(prefers-color-scheme: dark)') ? 'impact' : 'cyberdrain' + const currentTheme = useSelector((state) => state.app.currentTheme); + const preferredTheme = useMediaPredicate("(prefers-color-scheme: dark)") + ? "impact" + : "cyberdrain"; const isDark = - currentTheme === 'impact' || (currentTheme === 'default' && preferredTheme === 'impact') + currentTheme === "impact" || (currentTheme === "default" && preferredTheme === "impact"); if (isDark) { - return '#333' + return "#333"; } else { - return '#fafafa' + return "#fafafa"; } -} +}; const Container = styled.div` flex: 1; @@ -47,7 +49,7 @@ const Container = styled.div` color: #bdbdbd; outline: none; transition: border 0.24s ease-in-out; -` +`; const CippDropzone = ({ title, @@ -62,7 +64,7 @@ const CippDropzone = ({ onDrop, accept: accept, maxFiles: maxFiles, - }) + }); return ( <> {returnCard ? ( @@ -83,8 +85,8 @@ const CippDropzone = ({ )} - ) -} + ); +}; CippDropzone.propTypes = { title: PropTypes.string, @@ -93,6 +95,6 @@ CippDropzone.propTypes = { accept: PropTypes.object, maxFiles: PropTypes.number, returnCard: PropTypes.bool, -} +}; -export default CippDropzone +export default CippDropzone; diff --git a/src/components/CippComponents/CippFormComponent.jsx b/src/components/CippComponents/CippFormComponent.jsx new file mode 100644 index 000000000000..3115da235ad5 --- /dev/null +++ b/src/components/CippComponents/CippFormComponent.jsx @@ -0,0 +1,400 @@ +import { + Radio, + Switch, + TextField, + Typography, + Checkbox, + FormControlLabel, + FormControl, + FormLabel, + RadioGroup, +} from "@mui/material"; +import { CippAutoComplete } from "./CippAutocomplete"; +import { Controller, useFormState } from "react-hook-form"; +import { DateTimePicker } from "@mui/x-date-pickers"; // Make sure to install @mui/x-date-pickers +import CSVReader from "../CSVReader"; +import get from "lodash/get"; +import { + MenuButtonBold, + MenuButtonItalic, + MenuControlsContainer, + MenuDivider, + MenuSelectHeading, + RichTextEditor, +} from "mui-tiptap"; +import StarterKit from "@tiptap/starter-kit"; +import { CippDataTable } from "../CippTable/CippDataTable"; + +// Helper function to convert bracket notation to dot notation +const convertBracketsToDots = (name) => { + return name.replace(/\[(\d+)\]/g, ".$1"); // Replace [0] with .0 +}; + +export const CippFormComponent = (props) => { + const { + validators, + formControl, + type = "textField", + name, // The name that may have bracket notation + label, + labelLocation = "behind", // Default location for switches + ...other + } = props; + const { errors } = useFormState({ control: formControl.control }); + // Convert the name from bracket notation to dot notation + const convertedName = convertBracketsToDots(name); + + const renderSwitchWithLabel = (element) => { + if (!label) return element; // No label for the switch if label prop is not provided + + if (labelLocation === "above") { + return ( + <> + + {label} + + {element} + + ); + } else if (labelLocation === "behind") { + return ( + {label}} + labelPlacement="end" + /> + ); + } + }; + + switch (type) { + case "hidden": + return ( + + ); + + case "cippDataTable": + return ( + <> +
    + ( + <> + + field.onChange(value)} + simple={false} + /> + + )} + /> +
    + + {get(errors, convertedName, {})?.message} + + + ); + + case "textField": + return ( + <> +
    + +
    + + {get(errors, convertedName, {})?.message} + + + ); + case "password": + return ( + <> +
    + +
    + + {get(errors, convertedName, {})?.message} + + + ); + case "number": + return ( + <> +
    + +
    + + {get(errors, convertedName, {})?.message} + + + ); + + case "switch": + return ( + <> +
    + + renderSwitchWithLabel( + + ) + } + /> +
    + + {get(errors, convertedName, {})?.message} + + + ); + + case "checkbox": + return ( + <> +
    + + +
    + + {get(errors, convertedName, {})?.message} + + + ); + + case "radio": + return ( + <> + + {label} + ( + + {props.options.map((option, idx) => ( + } + label={option.label} + /> + ))} + + )} + /> + + + {get(errors, convertedName, {})?.message} + + + ); + + case "autoComplete": + return ( + <> +
    + ( + field.onChange(value)} + /> + )} + /> +
    + + {get(errors, convertedName, {}).message} + + + ); + + case "richText": + return ( + <> +
    + ( + <> + {label} + field.onChange(editor.getHTML())} // Update react-hook-form on change + label={label} + renderControls={() => ( + + + + + + + )} + /> + + )} + /> +
    + + {get(errors, convertedName, {}).message} + + + ); + + case "CSVReader": + const remapData = (data, nameToCSVMapping) => { + if (nameToCSVMapping && data) { + const csvHeaderToNameMapping = Object.entries(nameToCSVMapping).reduce( + (acc, [internalKey, csvHeader]) => { + acc[csvHeader] = internalKey; + return acc; + }, + {} + ); + + return data.map((row) => { + const newRow = {}; + for (const [key, value] of Object.entries(row)) { + const newKey = csvHeaderToNameMapping[key] || key; + newRow[newKey] = value; + } + return newRow; + }); + } + return data; + }; + return ( + <> +
    + ( + <> + { + const remappedData = remapData(data, other.nameToCSVMapping); + field.onChange(remappedData); + }} + onDrop={(data) => { + const remappedData = remapData(data, other.nameToCSVMapping); + field.onChange(remappedData); + }} + {...other} + > + {label} + + + )} + /> +
    + + {get(errors, convertedName, {})?.message} + + + ); + + case "datePicker": + return ( + <> +
    + ( + { + if (date) { + const unixTimestamp = Math.floor(date.getTime() / 1000); // Convert to Unix timestamp + field.onChange(unixTimestamp); // Pass the Unix timestamp to the form + } else { + field.onChange(null); // Handle the case where no date is selected + } + }} + ampm={false} + minutesStep={15} + inputFormat="yyyy/MM/dd HH:mm" // Display format + renderInput={(inputProps) => ( + + )} + {...other} + /> + )} + /> +
    + + {get(errors, convertedName, {})?.message} + + + ); + + default: + return null; + } +}; + +export default CippFormComponent; diff --git a/src/components/CippComponents/CippFormCondition.jsx b/src/components/CippComponents/CippFormCondition.jsx new file mode 100644 index 000000000000..1763091fbe27 --- /dev/null +++ b/src/components/CippComponents/CippFormCondition.jsx @@ -0,0 +1,151 @@ +import { useWatch } from "react-hook-form"; +import isEqual from "lodash/isEqual"; // lodash for deep comparison + +export const CippFormCondition = (props) => { + let { field, compareType = "is", compareValue, children, formControl } = props; + + if ( + field === undefined || + compareValue === undefined || + children === undefined || + formControl === undefined + ) { + return null; + } + + let watcher = useWatch({ control: formControl.control, name: field }); + if (watcher?.value !== undefined) { + watcher = watcher.value; + } + + if (compareValue?.value !== undefined) { + compareValue = compareValue.value; + } + + switch (compareType) { + case "regex": + if (watcher?.match(new RegExp(compareValue))) { + return children; + } + return null; + case "is": + // Deep comparison for objects and arrays + if (isEqual(watcher, compareValue)) { + return children; + } + return null; + + case "isNot": + // Deep comparison for objects and arrays (negation) + if (!isEqual(watcher, compareValue)) { + return children; + } + return null; + + case "contains": + if (Array.isArray(watcher)) { + if (watcher.includes(compareValue)) { + return children; + } + } else if (typeof watcher === "string") { + if (watcher.includes(compareValue)) { + return children; + } + } else if (typeof watcher === "object" && compareValue in watcher) { + // Check if object contains the key + return children; + } + return null; + + case "doesNotContain": + if (Array.isArray(watcher)) { + if (!watcher.includes(compareValue)) { + return children; + } + } else if (typeof watcher === "string") { + if (!watcher.includes(compareValue)) { + return children; + } + } else if (typeof watcher === "object" && !(compareValue in watcher)) { + // Check if object does not contain the key + return children; + } + return null; + + case "greaterThan": + if ( + typeof watcher === "number" && + typeof compareValue === "number" && + watcher > compareValue + ) { + return children; + } + return null; + + case "lessThan": + if ( + typeof watcher === "number" && + typeof compareValue === "number" && + watcher < compareValue + ) { + return children; + } + return null; + + case "arrayLength": + if ( + Array.isArray(watcher) && + typeof compareValue === "number" && + watcher.length >= compareValue + ) { + return children; + } + return null; + + case "hasValue": + if (watcher !== undefined && watcher !== null && watcher !== "") { + return children; + } + return null; + + /* + * NEW CASES + */ + case "labelEq": + // Checks if any object in array has .label exactly equal to compareValue + if (Array.isArray(watcher) && watcher.some((item) => item?.label === compareValue)) { + return children; + } + return null; + + case "labelContains": + // Checks if any object in array has a .label that contains compareValue + if ( + Array.isArray(watcher) && + watcher.some((item) => typeof item?.label === "string" && item.label.includes(compareValue)) + ) { + return children; + } + return null; + + case "valueEq": + // Checks if any object in array has .value exactly equal to compareValue + if (Array.isArray(watcher) && watcher.some((item) => item?.value === compareValue)) { + return children; + } + return null; + + case "valueContains": + // Checks if any object in array has a .value that contains compareValue + if ( + Array.isArray(watcher) && + watcher.some((item) => typeof item?.value === "string" && item.value.includes(compareValue)) + ) { + return children; + } + return null; + + default: + return null; + } +}; diff --git a/src/components/CippComponents/CippFormContactSelector.jsx b/src/components/CippComponents/CippFormContactSelector.jsx new file mode 100644 index 000000000000..094f36014eb7 --- /dev/null +++ b/src/components/CippComponents/CippFormContactSelector.jsx @@ -0,0 +1,37 @@ +import React from "react"; +import { CippFormComponent } from "./CippFormComponent"; +import { useWatch } from "react-hook-form"; +import { useSettings } from "../../hooks/use-settings"; + +export const CippFormContactSelector = ({ + formControl, + name, + label, + allTenants = false, + multiple = false, + type = "multiple", + select, + addedField, + valueField, + ...other +}) => { + const currentTenant = useWatch({ control: formControl.control, name: "tenantFilter" }); + const selectedTenant = useSettings().currentTenant; + return ( + `${option.displayName} (${option.mail})`, + valueField: valueField ? valueField : "id", + queryKey: `listcontacts-${currentTenant?.value ? currentTenant.value : selectedTenant}`, + }} + /> + ); +}; diff --git a/src/components/CippComponents/CippFormDomainSelector.jsx b/src/components/CippComponents/CippFormDomainSelector.jsx new file mode 100644 index 000000000000..f22a5f74e884 --- /dev/null +++ b/src/components/CippComponents/CippFormDomainSelector.jsx @@ -0,0 +1,40 @@ +import React from "react"; +import { CippFormComponent } from "./CippFormComponent"; +import { useWatch } from "react-hook-form"; +import { useSettings } from "../../hooks/use-settings"; + +export const CippFormDomainSelector = ({ + formControl, + name, + label, + allTenants = false, + type = "multiple", + ...other +}) => { + const currentTenant = useWatch({ control: formControl.control, name: "tenantFilter" }); + const selectedTenant = useSettings().currentTenant; + return ( + `${option.id}`, + valueField: "id", + data: { + Endpoint: "domains", + manualPagination: true, + $count: true, + $top: 99, + }, + }} + /> + ); +}; diff --git a/src/components/CippComponents/CippFormInputArray.jsx b/src/components/CippComponents/CippFormInputArray.jsx new file mode 100644 index 000000000000..1eabcbefcb0d --- /dev/null +++ b/src/components/CippComponents/CippFormInputArray.jsx @@ -0,0 +1,75 @@ +import { Button, TextField, IconButton, Typography, SvgIcon } from "@mui/material"; +import { Controller, useFieldArray } from "react-hook-form"; +import { Add, Remove } from "@mui/icons-material"; + +// Helper function to convert bracket notation to dot notation +const convertBracketsToDots = (name) => { + return name.replace(/\[(\d+)\]/g, ".$1"); // Replace [0] with .0 +}; + +export const CippFormInputArray = ({ formControl, name, label, validators, ...other }) => { + // Convert the name from bracket notation to dot notation + const convertedName = convertBracketsToDots(name); + + // Use `useFieldArray` to manage dynamic field arrays + const { fields, append, remove } = useFieldArray({ + control: formControl.control, + name: convertedName, // Specify the converted name for useFieldArray + }); + + return ( + <> +
    + {label && {label}} + append({ Key: "", Value: "" })} variant="outlined"> + + +
    + + {fields.map((field, index) => ( +
    + ( + + )} + /> + ( + + )} + /> + remove(index)} aria-label="remove item"> + + + + +
    + ))} + + ); +}; + +export default CippFormInputArray; diff --git a/src/components/CippComponents/CippFormLicenseSelector.jsx b/src/components/CippComponents/CippFormLicenseSelector.jsx new file mode 100644 index 000000000000..6a952fe124aa --- /dev/null +++ b/src/components/CippComponents/CippFormLicenseSelector.jsx @@ -0,0 +1,41 @@ +import React from "react"; +import { CippFormComponent } from "./CippFormComponent"; +import { useWatch } from "react-hook-form"; +import { getCippLicenseTranslation } from "../../utils/get-cipp-license-translation"; + +export const CippFormLicenseSelector = ({ + formControl, + name, + label, + multiple = true, + select, + addedField, + ...other +}) => { + const currentTenant = useWatch({ control: formControl.control, name: "tenantFilter" }); + return ( + + `${getCippLicenseTranslation([option])} (${ + option.prepaidUnits.enabled - option.consumedUnits + } available)`, + valueField: "skuId", + queryKey: `ListLicenses-${currentTenant?.value}`, + data: { + Endpoint: "subscribedSkus", + $count: true, + }, + }} + /> + ); +}; diff --git a/src/components/CippComponents/CippFormTenantSelector.jsx b/src/components/CippComponents/CippFormTenantSelector.jsx new file mode 100644 index 000000000000..032d4d6ad96f --- /dev/null +++ b/src/components/CippComponents/CippFormTenantSelector.jsx @@ -0,0 +1,47 @@ +import React from "react"; +import { CippFormComponent } from "./CippFormComponent"; + +export const CippFormTenantSelector = ({ + formControl, + allTenants = false, + type = "multiple", + name = "tenantFilter", + valueField = "defaultDomainName", + required = true, + disableClearable = true, + ...other +}) => { + const validators = () => { + if (required) { + return { + required: { value: true, message: "This field is required" }, + }; + } + return {}; + }; + + return ( + `${option.displayName} (${option.defaultDomainName})`, + valueField: valueField, + addedField: { + defaultDomainName: "defaultDomainName", + displayName: "displayName", + customerId: "customerId", + }, + }} + multiple={type === "single" ? false : true} + disableClearable={disableClearable} + validators={validators} + {...other} + /> + ); +}; diff --git a/src/components/CippComponents/CippFormUserSelector.jsx b/src/components/CippComponents/CippFormUserSelector.jsx new file mode 100644 index 000000000000..51395ef830a8 --- /dev/null +++ b/src/components/CippComponents/CippFormUserSelector.jsx @@ -0,0 +1,46 @@ +import React from "react"; +import { CippFormComponent } from "./CippFormComponent"; +import { useWatch } from "react-hook-form"; +import { useSettings } from "../../hooks/use-settings"; + +export const CippFormUserSelector = ({ + formControl, + name, + label, + allTenants = false, + multiple = false, + type = "multiple", + select, + addedField, + valueField, + ...other +}) => { + const currentTenant = useWatch({ control: formControl.control, name: "tenantFilter" }); + const selectedTenant = useSettings().currentTenant; + return ( + `${option.displayName} (${option.userPrincipalName})`, + valueField: valueField ? valueField : "id", + queryKey: `ListUsers-${currentTenant?.value ? currentTenant.value : selectedTenant}`, + data: { + Endpoint: "users", + manualPagination: true, + $select: select ? select : "id,userPrincipalName,displayName", + $count: true, + $orderby: "displayName", + $top: 999, + }, + }} + /> + ); +}; diff --git a/src/components/CippComponents/CippGeoLocation.jsx b/src/components/CippComponents/CippGeoLocation.jsx new file mode 100644 index 000000000000..633ce3ee60cd --- /dev/null +++ b/src/components/CippComponents/CippGeoLocation.jsx @@ -0,0 +1,90 @@ +import React, { useEffect, useState } from "react"; +import { Card, CardContent, CardHeader, Skeleton } from "@mui/material"; +import { Grid } from "@mui/system"; +import dynamic from "next/dynamic"; +import { ApiPostCall } from "/src/api/ApiCall"; +import { CippPropertyList } from "./CippPropertyList"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; +const CippMap = dynamic(() => import("./CippMap"), { ssr: false }); + +export default function CippGeoLocation({ ipAddress, cardProps }) { + const [locationInfo, setLocationInfo] = useState(null); + + const markerProperties = ["timezone", "as", "proxy", "hosting", "mobile"]; + const includeProperties = ["org", "city", "region", "country", "zip"]; + const initialPropertyList = includeProperties.map((key) => ({ + label: getCippTranslation(key), + value: "", + })); + + const [properties, setProperties] = useState(initialPropertyList); + + const [markerPopupContents, setMarkerPopupContents] = useState(null); + + const geoLookup = ApiPostCall({ + urlFromData: true, + queryKey: "GeoIPLookup-" + ipAddress, + onResult: (result) => { + setLocationInfo(result); + var propertyList = []; + includeProperties.map((key) => { + propertyList.push({ + label: getCippTranslation(key), + value: getCippFormatting(result[key], key), + }); + }); + setProperties(propertyList); + + setMarkerPopupContents( +
    + {markerProperties.map((key) => ( +
    + {getCippTranslation(key)}: {getCippFormatting(result[key], key)} +
    + ))} +
    + ); + }, + }); + + useEffect(() => { + if (ipAddress) { + geoLookup.mutate({ + url: "/api/ExecGeoIPLookup", + data: { + IP: ipAddress, + }, + }); + } + }, [ipAddress]); + + return ( + + + {geoLookup.isPending ? ( + + ) : ( + <> + {locationInfo && locationInfo.lat && locationInfo.lon && ( + + )} + + )} + + + + + + ); +} diff --git a/src/components/CippComponents/CippMap.jsx b/src/components/CippComponents/CippMap.jsx new file mode 100644 index 000000000000..7f5be9bb4b92 --- /dev/null +++ b/src/components/CippComponents/CippMap.jsx @@ -0,0 +1,46 @@ +import "leaflet/dist/leaflet.css"; +import "react-leaflet-markercluster/styles"; +import "leaflet-defaulticon-compatibility/dist/leaflet-defaulticon-compatibility.webpack.css"; +import "leaflet-defaulticon-compatibility"; +import { useEffect, useRef } from "react"; +import { MapContainer, Marker, Popup, TileLayer } from "react-leaflet"; +import MarkerClusterGroup from "react-leaflet-markercluster"; + +export default function CippMap({ + markers = [], + zoom = 11, + mapSx = { height: "400px", width: "600px" }, + ...props +}) { + const mapRef = useRef(); + + useEffect(() => { + if (mapRef.current && markers.length > 1) { + const bounds = markers.map((marker) => marker.position); + mapRef.current.fitBounds(bounds, { padding: [25, 25] }); + } + }, [markers]); + + return ( + + + + {markers.map((marker, index) => ( + + {marker?.popup && {marker.popup}} + + ))} + + + ); +} diff --git a/src/components/CippComponents/CippMessageViewer.jsx b/src/components/CippComponents/CippMessageViewer.jsx new file mode 100644 index 000000000000..d4f2746fe8ea --- /dev/null +++ b/src/components/CippComponents/CippMessageViewer.jsx @@ -0,0 +1,543 @@ +import React, { useCallback, useEffect, useState } from "react"; +import { readEml } from "eml-parse-js"; + +import { + Button, + Card, + CardContent, + GlobalStyles, + Menu, + MenuItem, + Typography, + SvgIcon, + CardHeader, + Dialog, + DialogTitle, + DialogContent, + IconButton, + Tooltip, +} from "@mui/material"; +import { Box, Grid, Stack, ThemeProvider } from "@mui/system"; +import { createTheme } from "@mui/material/styles"; + +import { + Image, + VolumeUp, + VideoFile, + FileCopy, + PictureAsPdf, + Archive, + Description, + TableChart, + Slideshow, + Code, + Email, + Download, + Visibility, + AccountCircle, + Close, +} from "@mui/icons-material"; + +import { CippTimeAgo } from "./CippTimeAgo"; +import { CippCodeBlock } from "./CippCodeBlock"; +import DOMPurify from "dompurify"; +import ReactHtmlParser from "react-html-parser"; +import { FileDropzone } from "/src/components/file-dropzone.js"; +import CippPageCard from "../CippCards/CippPageCard"; +import { + MoonIcon, + ShieldCheckIcon, + ShieldExclamationIcon, + SunIcon, +} from "@heroicons/react/24/outline"; +import { useSettings } from "/src/hooks/use-settings"; + +export const CippMessageViewer = ({ emailSource }) => { + const [emlContent, setEmlContent] = useState(null); + const [emlError, setEmlError] = useState(false); + const [messageHtml, setMessageHtml] = useState(""); + const [emlHeaders, setEmlHeaders] = useState(null); + const [anchorEl, setAnchorEl] = useState({}); + const [dialogOpen, setDialogOpen] = useState(false); + const [dialogContent, setDialogContent] = useState(null); + const [dialogTitle, setDialogTitle] = useState(""); + + const currentTheme = useSettings()?.currentTheme?.value; + const [darkMode, setDarkMode] = useState(currentTheme === "dark"); + + const emailStyle = ( + + ); + + const theme = createTheme({ + palette: { + background: { + default: darkMode ? "#121212" : "#ffffff", + paper: darkMode ? "#1d1d1d" : "#f5f5f5", + }, + text: { + primary: darkMode ? "#ffffff" : "#000000", + secondary: darkMode ? "#b0bec5" : "#757575", + }, + action: { + active: darkMode ? "#ffffff" : "#000000", + }, + }, + }); + + const toggleDarkMode = () => { + setDarkMode((prevMode) => !prevMode); + }; + + const getAttachmentIcon = (contentType) => { + if (contentType.includes("image")) { + return ; + } else if (contentType.includes("audio")) { + return ; + } else if (contentType.includes("video")) { + return ; + } else if (contentType.includes("text")) { + return ; + } else if (contentType.includes("pdf")) { + return ; + } else if ( + contentType.includes("zip") || + contentType.includes("compressed") || + contentType.includes("tar") || + contentType.includes("gzip") + ) { + return ; + } else if (contentType.includes("msword")) { + return ; + } else if (contentType.includes("spreadsheet")) { + return ; + } else if (contentType.includes("presentation")) { + return ; + } else if (contentType.includes("json") || contentType.includes("xml")) { + return ; + } else if (contentType.includes("rfc822")) { + return ; + } else { + return ; + } + }; + + const downloadAttachment = (attachment, newTab = false) => { + var contentType = attachment?.contentType?.split(";")[0] ?? "text/plain"; + var fileBytes = attachment.data; + if (fileBytes instanceof Uint8Array && attachment?.data64) { + fileBytes = new Uint8Array( + atob(attachment.data64) + .split("") + .map((c) => c.charCodeAt(0)) + ); + } + + var fileName = attachment?.name ?? "attachment"; + const blob = new Blob([fileBytes], { type: contentType ?? "application/octet-stream" }); + const url = URL.createObjectURL(blob); + const link = document.createElement("a"); + if (newTab) { + if (contentType.includes("rfc822")) { + var content = fileBytes; + const nestedMessage = ; + setDialogContent(nestedMessage); + setDialogTitle(fileName); + setDialogOpen(true); + } else if (contentType.includes("pdf")) { + const embeddedPdf = ( + + ); + setDialogContent(embeddedPdf); + setDialogTitle(fileName); + setDialogOpen(true); + } else if (contentType.includes("image")) { + const embeddedImage = {fileName}; + setDialogContent(embeddedImage); + setDialogTitle(fileName); + setDialogOpen(true); + } else if (contentType.includes("text")) { + const textContent = fileBytes; + setDialogContent( + + ); + setDialogTitle(fileName); + setDialogOpen(true); + setTimeout(() => { + URL.revokeObjectURL(url); + }, 1000); + } else { + const newWindow = window.open(); + newWindow.location.href = url; + URL.revokeObjectURL(url); + } + } else { + link.href = url; + link.download = fileName; + link.click(); + URL.revokeObjectURL(url); + } + }; + + function isValidDate(d) { + return d instanceof Date && !isNaN(d); + } + + const showEmailModal = (emailSource, title = "Email Source") => { + setDialogContent(); + setDialogTitle(title); + setDialogOpen(true); + }; + + const EmailButtons = (emailHeaders, emailSource) => { + const emailSourceBytes = new TextEncoder().encode(emailSource); + const blob = new Blob([emailSourceBytes], { type: "message/rfc822" }); + const url = URL.createObjectURL(blob); + return ( + + {emailHeaders && ( + + )} + + + ); + }; + + useEffect(() => { + readEml(emailSource, (err, ReadEmlJson) => { + if (err) { + setEmlError(true); + setEmlContent(null); + setMessageHtml(null); + setEmlHeaders(null); + } else { + setEmlContent(ReadEmlJson); + setEmlError(false); + if (ReadEmlJson.html) { + var sanitizedHtml = DOMPurify.sanitize(ReadEmlJson.html); + var parsedHtml = ReactHtmlParser(sanitizedHtml); + if (ReadEmlJson.attachments) { + ReadEmlJson.attachments.forEach((attachment) => { + if (attachment.id) { + var cid = attachment.id.match(/<(.*)>/)[1]; + var base64 = attachment.data64; + if (base64) { + const replaceCidWithBase64 = (element) => { + if (typeof element === "object" && element !== null) { + if (element.props.src === "cid:" + cid) { + return {cid}; + } else if (element.props.children) { + return React.cloneElement(element, { + children: React.Children.map( + element.props.children, + replaceCidWithBase64 + ), + }); + } + } + return element; + }; + parsedHtml = parsedHtml.map(replaceCidWithBase64); + } + } + }); + } + setMessageHtml(parsedHtml); + } else { + setMessageHtml(null); + } + const header_regex = /(?:^[\w-]+:\s?.*(?:\r?\n[ \t].*)*\r?\n?)+/gm; + const headers = emailSource.match(header_regex); + setEmlHeaders(headers ? headers[0] : null); + } + }); + }, [emailSource, setMessageHtml, setEmlError, setEmlContent, setEmlHeaders]); + + var buttons = EmailButtons(emlHeaders, emailSource); + + return ( + <> + {emlError && ( + + +

    Error

    + Unable to parse the EML file, email source is displayed below. + +
    +
    + )} + + {emlContent && ( + <> + + {emlContent?.subject ?? "No subject"}} + action={buttons} + sx={{ py: 0, my: 0 }} + /> + + + + + + + {emlContent?.from?.name} + + <{emlContent?.from?.email}> + + + {(() => { + const authResults = emlContent?.headers?.["Authentication-Results"] || ""; + const dmarcPass = authResults ? authResults.includes("dmarc=pass") : false; + const dkimPass = authResults ? authResults.includes("dkim=pass") : false; + const spfPass = authResults ? authResults.includes("spf=pass") : false; + const arcPass = authResults ? authResults.includes("arc=pass") : false; + const allPass = dmarcPass && dkimPass && spfPass && arcPass; + const somePass = dmarcPass || dkimPass || spfPass || arcPass; + const noResults = authResults === ""; + const color = noResults + ? "" + : allPass + ? "green" + : somePass + ? "orange" + : "red"; + const icon = noResults ? ( + + ) : allPass ? ( + + ) : somePass ? ( + + ) : ( + + ); + + return ( + + + {icon} + + + ); + })()} + + + + {emlContent?.to && ( + + + To:{" "} + {Array.isArray(emlContent.to) + ? emlContent.to.map((to) => to.name + " <" + to.email + ">").join(", ") + : emlContent.to.name + " <" + emlContent.to.email + ">"} + + + )} + {emlContent?.cc && ( +
    + + CC:{" "} + {Array.isArray(emlContent.cc) + ? emlContent.cc.map((cc) => cc.name + " <" + cc.email + ">").join(", ") + : emlContent.cc.name + " <" + emlContent.cc.email + ">"} + +
    + )} +
    + + + + {emlContent.date && isValidDate(emlContent.date) + ? emlContent.date.toLocaleDateString() + : "Invalid Date"} + + {emlContent.date && isValidDate(emlContent.date) && ( + + {" "} + () + + )} + + +
    + + {emlContent.attachments && emlContent.attachments.length > 0 && ( + + + + {emlContent?.attachments?.map((attachment, index) => ( + + + + setAnchorEl({ ...anchorEl, [index]: null })} + > + downloadAttachment(attachment)}> + + Download + + {(attachment?.contentType === undefined || + attachment?.contentType?.includes("text") || + attachment?.contentType?.includes("pdf") || + attachment?.contentType?.includes("image") || + attachment?.contentType?.includes("rfc822")) && ( + downloadAttachment(attachment, true)}> + + View + + )} + + + ))} + + + + )} + + {(emlContent?.text || emlContent?.html) && ( + + + {messageHtml ? ( + + {emailStyle} + + + + + {darkMode ? : } + + + {messageHtml} + + + + ) : ( +
    + +
    + )} +
    +
    + )} +
    +
    + + )} + setDialogOpen(false)} maxWidth="lg" fullWidth> + + {dialogTitle} + setDialogOpen(false)} + sx={{ + position: "absolute", + right: 8, + top: 8, + color: (theme) => theme.palette.grey[500], + }} + > + + + + {dialogContent} + + + ); +}; + +const CippMessageViewerPage = () => { + const [emlFile, setEmlFile] = useState(null); + const onDrop = useCallback((acceptedFiles) => { + acceptedFiles.forEach((file) => { + const reader = new FileReader(); + reader.onabort = () => console.log("file reading was aborted"); + reader.onerror = () => console.log("file reading has failed"); + reader.onload = () => { + setEmlFile(reader.result); + }; + reader.readAsText(file); + }); + }, []); + + return ( + + + {emlFile && } + + ); +}; + +export default CippMessageViewerPage; diff --git a/src/components/CippComponents/CippOffCanvas.jsx b/src/components/CippComponents/CippOffCanvas.jsx new file mode 100644 index 000000000000..bd68e583de8b --- /dev/null +++ b/src/components/CippComponents/CippOffCanvas.jsx @@ -0,0 +1,103 @@ +import { Drawer, Box, Grid } from "@mui/material"; +import { CippPropertyListCard } from "../CippCards/CippPropertyListCard"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; + +export const CippOffCanvas = (props) => { + const { + title = "Extended Info", + visible, + extendedInfoFields = [], + extendedData, + actions, + onClose, + isFetching, + children, + size = "sm", + } = props; + + const extendedInfo = extendedInfoFields.map((field) => { + const value = field.split(".").reduce((acc, part) => acc && acc[part], extendedData); + if (value === undefined || value === null) { + if (extendedData?.[field] !== undefined && extendedData?.[field] !== null) { + return { + label: getCippTranslation(field), + value: getCippFormatting(extendedData[field], field, "text", "both"), + }; + } else { + return { + label: getCippTranslation(field), + value: "N/A", + }; + } + } else if (Array.isArray(value)) { + return { + label: getCippTranslation(field), + value: getCippFormatting(value, field, "array", "both"), + }; + } else { + return { + label: getCippTranslation(field), + value: getCippFormatting(value, field, "text", "both"), + }; + } + }); + + var drawerWidth = 400; + switch (size) { + case "sm": + drawerWidth = 400; + break; + case "md": + drawerWidth = 600; + break; + case "lg": + drawerWidth = 800; + break; + case "xl": + drawerWidth = 1000; + break; + } + + return ( + <> + + {/* Force vertical stacking in a column layout */} + + + + {extendedInfo.length > 0 && ( + + )} + + + + {typeof children === "function" ? children(extendedData) : children} + + + + + + + ); +}; diff --git a/src/components/CippComponents/CippPropertyList.jsx b/src/components/CippComponents/CippPropertyList.jsx new file mode 100644 index 000000000000..4c9fd3800820 --- /dev/null +++ b/src/components/CippComponents/CippPropertyList.jsx @@ -0,0 +1,130 @@ +import { Skeleton, Stack } from "@mui/material"; +import { PropertyList } from "../../components/property-list"; +import { PropertyListItem } from "../../components/property-list-item"; + +export const CippPropertyList = (props) => { + const { + align = "vertical", + propertyItems = [], + isFetching, + copyItems = false, + layout = "single", + showDivider = true, + } = props; + + const half = Math.ceil(propertyItems.length / 2); + const firstHalf = propertyItems.slice(0, half); + const secondHalf = propertyItems.slice(half, propertyItems.length); + + const isLabelPresent = (item) => { + return item?.label === "" || item?.label === undefined || item?.label === null; + }; + + const setPadding = isLabelPresent ? { py: 0.5, px: 3 } : { py: 1.5, px: 3 }; + return ( + <> + {layout === "single" ? ( + + {isFetching ? ( + <> + {propertyItems.map((item, index) => ( + } + sx={setPadding} + {...item} + /> + ))} + + ) : ( + propertyItems.map((item, index) => ( + + )) + )} + + ) : ( + // Two-column layout + *": { + width: { + md: "100%", + lg: "50%", + }, + }, + }} + > + + {isFetching ? ( + <> + {firstHalf.map((item, index) => ( + } + sx={setPadding} + /> + ))} + + ) : ( + firstHalf.map((item, index) => ( + + )) + )} + + + {isFetching ? ( + <> + {secondHalf.map((item, index) => ( + } + sx={() => { + if (item?.label === "" || item?.label === undefined || item?.label === null) { + return { py: 0 }; + } + }} + /> + ))} + + ) : ( + secondHalf.map((item, index) => ( + + )) + )} + + + )} + + ); +}; diff --git a/src/components/CippComponents/CippSettingsSideBar.jsx b/src/components/CippComponents/CippSettingsSideBar.jsx new file mode 100644 index 000000000000..14c3ede87846 --- /dev/null +++ b/src/components/CippComponents/CippSettingsSideBar.jsx @@ -0,0 +1,82 @@ +import { + Alert, + Button, + Card, + CardActions, + CardContent, + CardHeader, + CircularProgress, + Divider, + Stack, + Typography, +} from "@mui/material"; +import CippFormComponent from "./CippFormComponent"; +import { ApiGetCall, ApiPostCall } from "../../api/ApiCall"; +import { getCippError } from "../../utils/get-cipp-error"; +import { useFormState } from "react-hook-form"; + +export const CippSettingsSideBar = (props) => { + const { formcontrol, ...others } = props; + const { isDirty, isValid } = useFormState({ control: formcontrol.control }); + + const currentUser = ApiGetCall({ + url: "/.auth/me", + }); + + const saveSettingsPost = ApiPostCall({ + url: "/api/ExecUserSettings", + }); + const handleSaveChanges = () => { + const shippedValues = { + user: formcontrol.getValues("user").value, + currentSettings: formcontrol.getValues(), + }; + saveSettingsPost.mutate({ url: "/api/ExecUserSettings", data: shippedValues }); + }; + + return ( + <> + + + + + + + Settings on this page can be saved for the current user, or all users. Select the + desired option below. + + + + {saveSettingsPost.isError && ( + {getCippError(saveSettingsPost.error)} + )} + {saveSettingsPost.isSuccess && ( + Settings saved successfully + )} + + + + + + + + + ); +}; diff --git a/src/components/CippComponents/CippTableDialog.jsx b/src/components/CippComponents/CippTableDialog.jsx new file mode 100644 index 000000000000..59ec73436efd --- /dev/null +++ b/src/components/CippComponents/CippTableDialog.jsx @@ -0,0 +1,28 @@ +import { Button, Dialog, DialogActions, DialogContent, DialogTitle } from "@mui/material"; +import { Stack } from "@mui/system"; +import { CippDataTable } from "../CippTable/CippDataTable"; + +export const CippTableDialog = (props) => { + const { createDialog, title, fields, api, simpleColumns, ...other } = props; + return ( + + {title} + + + + + + + + + + ); +}; diff --git a/src/components/CippComponents/CippTablePage.jsx b/src/components/CippComponents/CippTablePage.jsx new file mode 100644 index 000000000000..61f5e89cac86 --- /dev/null +++ b/src/components/CippComponents/CippTablePage.jsx @@ -0,0 +1,75 @@ +import { Alert, Card, Divider } from "@mui/material"; +import { Box, Container, Stack } from "@mui/system"; +import Head from "next/head"; +import { CippDataTable } from "../CippTable/CippDataTable"; +import { useSettings } from "../../hooks/use-settings"; + +export const CippTablePage = (props) => { + const { + title, + cardButton, + noDataButton, + actions, + apiUrl, + apiData, + apiDataKey, + columns, + columnsFromApi, + name, + options, + onChange, + offCanvas, + queryKey, + tableFilter, + tenantInTitle = true, + sx = { flexGrow: 1, py: 4 }, + ...other + } = props; + const tenant = useSettings().currentTenant; + return ( + <> + + {title} + + + + + {tableFilter} + {tenantInTitle && (!tenant || tenant === null) && ( + + No tenant selected. Please select a tenant from the dropdown above. + + )} + + + + + + + + + + ); +}; + +export default CippTablePage; diff --git a/src/components/CippComponents/CippTenantSelector.jsx b/src/components/CippComponents/CippTenantSelector.jsx new file mode 100644 index 000000000000..b7299ceee8df --- /dev/null +++ b/src/components/CippComponents/CippTenantSelector.jsx @@ -0,0 +1,245 @@ +import PropTypes from "prop-types"; +import { CippAutoComplete } from "../CippComponents/CippAutocomplete"; +import { ApiGetCall } from "../../api/ApiCall"; +import { IconButton, SvgIcon, Tooltip, Box } from "@mui/material"; +import { FilePresent, Laptop, Mail, Refresh, Share, Shield, ShieldMoon } from "@mui/icons-material"; +import { + BuildingOfficeIcon, + GlobeAltIcon, + ServerIcon, + UsersIcon, +} from "@heroicons/react/24/outline"; +import { useEffect, useState } from "react"; +import { useRouter } from "next/router"; +import { CippOffCanvas } from "./CippOffCanvas"; +import { useSettings } from "../../hooks/use-settings"; +import { getCippError } from "../../utils/get-cipp-error"; + +export const CippTenantSelector = (props) => { + const { width, allTenants = false, multiple = false, refreshButton, tenantButton } = props; + //get the current tenant from SearchParams called 'tenantFilter' + const router = useRouter(); + const settings = useSettings(); + const tenant = router.query.tenantFilter ? router.query.tenantFilter : settings.currentTenant; + // Fetch tenant list + const tenantList = ApiGetCall({ + url: "/api/listTenants", + data: { AllTenantSelector: true }, + queryKey: "TenantSelector", + }); + + const [currentTenant, setSelectedTenant] = useState(null); + const [offcanvasVisible, setOffcanvasVisible] = useState(false); + + // Fetch tenant details based on the current tenant + const tenantDetails = ApiGetCall({ + url: "/api/listTenantDetails", + data: { tenantFilter: currentTenant?.value }, + queryKey: `TenantDetails-${currentTenant?.value}`, + waiting: false, + toast: true, + }); + + useEffect(() => { + if (!router.isReady) return; + if (currentTenant?.value) { + const query = { ...router.query }; + if (query.tenantFilter !== currentTenant.value) { + query.tenantFilter = currentTenant.value; + router.replace( + { + pathname: router.pathname, + query: query, + }, + undefined, + { shallow: true } + ); + } + settings.handleUpdate({ + currentTenant: currentTenant.value, + }); + } + }, [currentTenant?.value]); + + useEffect(() => { + if (tenant && currentTenant?.value) { + tenantDetails.refetch(); + } + }, [tenant, offcanvasVisible]); + + useEffect(() => { + if (tenant && tenantList.isSuccess) { + const matchingTenant = tenantList.data.find( + ({ defaultDomainName }) => defaultDomainName === tenant + ); + setSelectedTenant( + matchingTenant + ? { + value: tenant, + label: `${matchingTenant.displayName} (${tenant})`, + addedFields: { + defaultDomainName: matchingTenant.defaultDomainName, + displayName: matchingTenant.displayName, + customerId: matchingTenant.customerId, + }, + } + : { + value: null, + label: "Invalid Tenant", + } + ); + } + }, [tenant, tenantList.isSuccess]); + return ( + <> + *": { + mx: "2px", // 1px margin between the elements + }, + }} + > + {tenantButton && ( + { + setOffcanvasVisible(true); + }} + disabled={!currentTenant || currentTenant.value === "AllTenants"} + > + + + + + + + )} + setSelectedTenant(nv)} + options={ + tenantList.isSuccess && tenantList.data && tenantList.data.length > 0 + ? tenantList.data.map(({ customerId, displayName, defaultDomainName }) => ({ + value: defaultDomainName, + label: `${displayName} (${defaultDomainName})`, + addedField: { + defaultDomainName: "defaultDomainName", + displayName: "displayName", + customerId: "customerId", + }, + })) + : [] + } + getOptionLabel={(option) => option?.label || ""} + isOptionEqualToValue={ + (option, value) => option.value === value.value // Custom equality test to compare the tenant by value + } + /> + {refreshButton && ( + { + tenantList.refetch(); + }} + > + + + + + + + )} + + setOffcanvasVisible(false)} + extendedData={tenantDetails.data} + extendedInfoFields={[ + "displayName", + "id", + "street", + "postalCode", + "technicalNotificationMails", + "onPremisesSyncEnabled", + "onPremisesLastSyncDateTime", + "onPremisesLastPasswordSyncDateTime", + ]} + actions={[ + { + label: "M365 Admin Portal", + link: `https://admin.microsoft.com/Partner/BeginClientSession.aspx?CTID=${currentTenant?.addedFields?.customerId}&CSDEST=o365admincenter`, + icon: , + }, + { + label: "Exchange Portal", + link: `https://admin.exchange.microsoft.com/?landingpage=homepage&form=mac_sidebar&delegatedOrg=${currentTenant?.value}`, + icon: , + }, + { + label: "Entra Portal", + link: `https://entra.microsoft.com/${currentTenant?.value}`, + icon: , + }, + { + label: "Teams Portal", + link: `https://admin.teams.microsoft.com/?delegatedOrg=${currentTenant?.value}`, + icon: , + }, + { + label: "Azure Portal", + link: `https://portal.azure.com/${currentTenant?.value}`, + icon: , + }, + { + label: "Intune Portal", + link: `https://intune.microsoft.com/${currentTenant?.value}`, + icon: , + }, + { + label: "Sharepoint Portal", + link: `https://admin.microsoft.com/Partner/beginclientsession.aspx?CTID=${currentTenant?.addedFields?.customerId}&CSDEST=SharePoint`, + icon: , + }, + { + label: "Security Portal", + link: `https://security.microsoft.com/?tid=${currentTenant?.addedFields?.customerId}`, + icon: , + }, + { + label: "Compliance Portal", + link: `https://compliance.microsoft.com/?tid=${currentTenant?.addedFields?.customerId}`, + icon: , + }, + ]} + /> + + ); +}; + +CippTenantSelector.propTypes = { + allTenants: PropTypes.bool, + multiple: PropTypes.bool, + refreshButton: PropTypes.bool, + tenantButton: PropTypes.bool, +}; diff --git a/src/components/CippComponents/CippTimeAgo.jsx b/src/components/CippComponents/CippTimeAgo.jsx new file mode 100644 index 000000000000..a97d71e03acc --- /dev/null +++ b/src/components/CippComponents/CippTimeAgo.jsx @@ -0,0 +1,21 @@ +import { Chip } from "@mui/material"; +import ReactTimeAgo from "react-time-ago"; + +export const CippTimeAgo = ({ data, type = "text", timeStyle = "round-minute" }) => { + const isText = type === "text"; + const numberRegex = /^\d+$/; + const date = + typeof data === "number" || numberRegex.test(data) ? new Date(data * 1000) : new Date(data); + + if (date.getTime() === 0) { + return "Never"; + } + if (isNaN(date.getTime())) { + return isText ? ( + "No Data" + ) : ( + + ); + } + return ; +}; diff --git a/src/components/CippComponents/CippTranslations.jsx b/src/components/CippComponents/CippTranslations.jsx new file mode 100644 index 000000000000..32c4bd9dd6eb --- /dev/null +++ b/src/components/CippComponents/CippTranslations.jsx @@ -0,0 +1,45 @@ +export const CippTranslations = { + userPrincipalName: "User Principal Name", + displayName: "Display Name", + mail: "Mail", + mobilePhone: "Mobile Phone", + officePhone: "Office Phone", + jobTitle: "Job Title", + department: "Department", + surName: "Surname", + city: "City", + tenant: "Tenant", + tenantFilter: "Tenant", + showTenantInformation: "Show Tenant Information", + refreshTenantList: "Refresh tenant list", + tenantId: "Tenant ID", + id: "ID", + customerId: "Customer ID", + street: "Street", + technicalNotificationMails: "Technical Notification Mails", + onPremisesSyncEnabled: "On Premises Sync Enabled", + onPremisesLastSyncDateTime: "On Premises Last Sync Date Time", + onPremisesLastPasswordSyncDateTime: "On Premises Last Password Sync Date Time", + postalCode: "Postal Code", + deleteTenant: "Delete Tenant", + ScorePercentage: "Score", + TenantID: "Tenant ID", + ApplicationID: "Application ID", + ApplicationSecret: "Application Secret", + GUID: "GUID", + portal_m365: "M365 Portal", + portal_exchange: "Exchange Portal", + portal_entra: "Entra Portal", + portal_teams: "Teams Portal", + portal_azure: "Azure Portal", + portal_intune: "Intune Portal", + portal_security: "Security Portal", + portal_compliance: "Compliance Portal", + portal_sharepoint: "Sharepoint Portal", + "@odata.type": "Type", + roleDefinitionId: "GDAP Role", + FromIP: "From IP", + ToIP: "To IP", + "info.logoUrl": "Logo", + "commitmentTerm.renewalConfiguration.renewalDate": "Renewal Date", +}; diff --git a/src/components/CippComponents/ConnectorTemplateDetails.jsx b/src/components/CippComponents/ConnectorTemplateDetails.jsx new file mode 100644 index 000000000000..4e51b86083e1 --- /dev/null +++ b/src/components/CippComponents/ConnectorTemplateDetails.jsx @@ -0,0 +1,22 @@ +import React from "react"; +import { Box, Typography } from "@mui/material"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; +import { CippPropertyListCard } from "../CippCards/CippPropertyListCard"; + +const ConnectorTemplateDetails = ({ data }) => { + const properties = Object.keys(data); + + return ( + + Connector Template Details + { + return { label: getCippTranslation(prop), value: data[prop] }; + })} + isFetching={false} + /> + + ); +}; + +export default ConnectorTemplateDetails; diff --git a/src/components/CippComponents/MailboxRestoreDetails.jsx b/src/components/CippComponents/MailboxRestoreDetails.jsx new file mode 100644 index 000000000000..23feefa76f76 --- /dev/null +++ b/src/components/CippComponents/MailboxRestoreDetails.jsx @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +import { Box, Typography, Dialog, DialogContent, DialogTitle, IconButton } from "@mui/material"; +import { CippCodeBlock } from "../CippComponents/CippCodeBlock"; +import { ApiGetCall } from "../../api/ApiCall"; +import { useSettings } from "../../hooks/use-settings"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; +import { CippPropertyListCard } from "../CippCards/CippPropertyListCard"; +import { Close } from "@mui/icons-material"; +import { DocumentTextIcon } from "@heroicons/react/24/outline"; + +const MailboxRestoreDetails = ({ data }) => { + const tenantFilter = useSettings().currentTenant; + const [statistics, setStatistics] = useState(null); + const restoreStatistics = ApiGetCall({ + url: `/api/ListMailboxRestores`, + data: { + tenantFilter: tenantFilter, + Statistics: true, + Identity: data.Identity, + IncludeReport: true, + }, + queryKey: `ListMailboxRestores-${data.Identity}`, + }); + + const properties = [ + "Name", + "Status", + "StatusDetail", + "SyncStage", + "RequestStyle", + "SourceExchangeGuid", + "MailboxRestoreFlags", + "TargetAlias", + "TargetType", + "TargetExchangeGuid", + "TargetMailboxIdentity", + "BadItemLimit", + "BadItemsEncountered", + "LargeItemLimit", + "LargeItemsEncountered", + "MissingItemsEncountered", + "DataConsistencyScore", + "QueuedTimestamp", + "StartTimestamp", + "LastUpdateTimestamp", + "InitialSeedingCompletedTimestamp", + "CompletionTimestamp", + "OverallDuration", + "TotalSuspendedDuration", + "TotalFailedDuration", + "TotalQueuedDuration", + "TotalInProgressDuration", + "TotalTransientFailureDuration", + "EstimatedTransferSize", + "EstimatedTransferItemCount", + "SyncedItemCount", + "BytesTransferred", + "BytesTransferredPerMinute", + "ItemsTransferred", + "PercentComplete", + "CompletedRequestAgeLimit", + "RequestGuid", + "RequestQueue", + "Identity", + "LastSuccessfulSyncTimestamp", + "RequestExpiryTimestamp", + ]; + + useEffect(() => { + if (restoreStatistics.isSuccess) { + setStatistics(restoreStatistics?.data?.[0]); + } + }, [data.Identity, restoreStatistics.isSuccess]); + const [dialogOpen, setDialogOpen] = useState(false); + + return ( + <> + setDialogOpen(false)}> + + Mailbox Restore Report + setDialogOpen(false)} + sx={{ position: "absolute", right: 8, top: 8 }} + > + + + + + setDialogOpen(false)} + code={restoreStatistics?.data?.[0]?.Report} + /> + + + + + Mailbox Restore Statistics + { + return { label: getCippTranslation(prop), value: statistics?.[prop] }; + })} + isFetching={restoreStatistics.isFetching} + actionItems={[ + { + label: "View Report", + noConfirm: true, + customFunction: () => setDialogOpen(true), + icon: , + }, + ]} + /> + + + ); +}; + +export default MailboxRestoreDetails; diff --git a/src/components/CippFormPages/CippAddEditGdapRoleTemplate.jsx b/src/components/CippFormPages/CippAddEditGdapRoleTemplate.jsx new file mode 100644 index 000000000000..cd2b5b4a4e0c --- /dev/null +++ b/src/components/CippFormPages/CippAddEditGdapRoleTemplate.jsx @@ -0,0 +1,50 @@ +import { Alert, Box, Stack, Typography } from "@mui/material"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; + +export const CippAddEditGdapRoleTemplate = (props) => { + const { formControl, availableRoles } = props; + + return ( + + + + GDAP Role templates are used to create new GDAP invites for your customer tenants. Make + sure to select a template that matches the permissions you want to grant. + + + + + + + ({ + label: role.GroupName, + value: role.GroupId, + addedFields: role, + }))} + multiple={true} + creatable={false} + required={true} + validators={{ + validate: (value) => { + if (!value || value.length === 0) { + return "Please select at least one GDAP Role Mapping"; + } + return true; + }, + }} + /> + + ); +}; diff --git a/src/components/CippFormPages/CippAddEditUser.jsx b/src/components/CippFormPages/CippAddEditUser.jsx new file mode 100644 index 000000000000..a813ae2ed0d9 --- /dev/null +++ b/src/components/CippFormPages/CippAddEditUser.jsx @@ -0,0 +1,332 @@ +import { Alert, InputAdornment, Typography } from "@mui/material"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { CippFormCondition } from "/src/components/CippComponents/CippFormCondition"; +import { CippFormDomainSelector } from "/src/components/CippComponents/CippFormDomainSelector"; +import { CippFormUserSelector } from "/src/components/CippComponents/CippFormUserSelector"; +import countryList from "/src/data/countryList.json"; +import { CippFormLicenseSelector } from "/src/components/CippComponents/CippFormLicenseSelector"; +import Grid from "@mui/material/Grid"; +import { ApiGetCall } from "../../api/ApiCall"; +import { useSettings } from "../../hooks/use-settings"; + +const CippAddEditUser = (props) => { + const { formControl, userSettingsDefaults, formType = "add" } = props; + const tenantDomain = useSettings().currentTenant; + const integrationSettings = ApiGetCall({ + url: "/api/ListExtensionsConfig", + queryKey: "ListExtensionsConfig", + }); + return ( + + + + + + + + + + + + @, + }} + name="mailNickname" + formControl={formControl} + /> + + + + + + + + + + Settings + + + + + + + + + + + + + + ({ + label: Name, + value: Code, + }))} + formControl={formControl} + /> + + + + + {integrationSettings?.data?.Sherweb?.Enabled === true && ( + <> + + + + + + + + This will Purchase a new Sherweb License for the user, according to the terms and + conditions with Sherweb. When the license becomes available, CIPP will assign the + license to this user. + + + + `${option?.productName} (${option?.sku})`, + valueField: "sku", + }} + label="Sherweb License" + name="sherwebLicense" + formControl={formControl} + /> + + + + + )} + + + + + + + + + + + + + + + + + + + + + + + + + {userSettingsDefaults?.userAttributes?.map((attribute, idx) => ( + + + + ))} + + {/* Set Manager */} + + + + {/* Schedule User Creation */} + + + + {formType === "add" && ( + + + + + + + + + + + + + + + )} + + ); +}; + +export default CippAddEditUser; diff --git a/src/components/CippFormPages/CippAddGroupForm.jsx b/src/components/CippFormPages/CippAddGroupForm.jsx new file mode 100644 index 000000000000..9745d9858636 --- /dev/null +++ b/src/components/CippFormPages/CippAddGroupForm.jsx @@ -0,0 +1,123 @@ +import React from "react"; +import { Grid } from "@mui/material"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { CippFormCondition } from "/src/components/CippComponents/CippFormCondition"; +import { CippFormDomainSelector } from "../CippComponents/CippFormDomainSelector"; +import { CippFormUserSelector } from "../CippComponents/CippFormUserSelector"; + +const CippAddGroupForm = (props) => { + const { formControl } = props; + + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default CippAddGroupForm; diff --git a/src/components/CippFormPages/CippAddGroupTemplateForm.jsx b/src/components/CippFormPages/CippAddGroupTemplateForm.jsx new file mode 100644 index 000000000000..8e638142c9fe --- /dev/null +++ b/src/components/CippFormPages/CippAddGroupTemplateForm.jsx @@ -0,0 +1,94 @@ +import React from "react"; +import { Grid } from "@mui/material"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { CippFormCondition } from "/src/components/CippComponents/CippFormCondition"; + +const CippAddGroupTemplateForm = (props) => { + const { formControl } = props; + + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default CippAddGroupTemplateForm; diff --git a/src/components/CippFormPages/CippExchangeSettingsForm.jsx b/src/components/CippFormPages/CippExchangeSettingsForm.jsx new file mode 100644 index 000000000000..f528e4a45e94 --- /dev/null +++ b/src/components/CippFormPages/CippExchangeSettingsForm.jsx @@ -0,0 +1,528 @@ +import React, { useState } from "react"; +import { + Box, + Button, + Card, + Collapse, + Divider, + IconButton, + Stack, + SvgIcon, + Typography, +} from "@mui/material"; +import ExpandMoreIcon from "@mui/icons-material/ExpandMore"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { CippFormCondition } from "/src/components/CippComponents/CippFormCondition"; +import { Forward } from "@mui/icons-material"; +import { ApiGetCall, ApiPostCall } from "../../api/ApiCall"; +import { useSettings } from "../../hooks/use-settings"; +import { Grid } from "@mui/system"; +import { CippApiResults } from "../CippComponents/CippApiResults"; + +const CippExchangeSettingsForm = (props) => { + const userSettingsDefaults = useSettings(); + const { formControl, currentSettings, userId, calPermissions, isFetching } = props; + // State to manage the expanded panels + const [expandedPanel, setExpandedPanel] = useState(null); + const [relatedQueryKeys, setRelatedQueryKeys] = useState([]); + + const handleExpand = (panel) => { + setExpandedPanel((prev) => (prev === panel ? null : panel)); + }; + + const usersList = ApiGetCall({ + url: "/api/ListGraphRequest", + data: { + Endpoint: `users`, + tenantFilter: userSettingsDefaults.currentTenant, + $select: "id,displayName,userPrincipalName,mail", + noPagination: true, + $top: 999, + }, + queryKey: `UserNames-${userSettingsDefaults.currentTenant}`, + }); + + const postRequest = ApiPostCall({ + datafromUrl: true, + relatedQueryKeys: relatedQueryKeys, + }); + + const handleSubmit = (type) => { + if (type === "permissions") { + setRelatedQueryKeys([`Mailbox-${userId}`]); + } else if (type === "calendar") { + setRelatedQueryKeys([`CalendarPermissions-${userId}`]); + } else if (type === "forwarding") { + setRelatedQueryKeys([`Mailbox-${userId}`]); + } else if (type === "ooo") { + setRelatedQueryKeys([`ooo-${userId}`]); + } + + const values = formControl.getValues(); + const data = { + tenantFilter: userSettingsDefaults.currentTenant, + userid: currentSettings.Mailbox[0].UserPrincipalName, + ...values[type], + }; + + //remove all nulls and undefined values + Object.keys(data).forEach((key) => { + if (data[key] === "" || data[key] === null) { + delete data[key]; + } + }); + const url = { + permissions: "/api/ExecEditMailboxPermissions", + calendar: "/api/ExecEditCalendarPermissions", + forwarding: "/api/ExecEmailForward", + ooo: "/api/ExecSetOoO", + }; + postRequest.mutate({ + url: url[type], + data: data, + queryKey: "MailboxPermissions", + }); + + // Reset the form + formControl.reset(); + }; + + // Data for each section + const sections = [ + { + id: "mailboxPermissions", + cardLabelBox: "-", // This can be an icon or text label + text: "Mailbox Permissions", + subtext: "Manage mailbox permissions for users", + formContent: ( + + + currentSettings?.Permissions?.some( + (perm) => + perm.AccessRights === "FullAccess" && perm.User === user.userPrincipalName + ) + ).map((user) => ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + + currentSettings?.Permissions?.some( + (perm) => perm.AccessRights === "SendAs" && perm.User === user.userPrincipalName + ) + ).map((user) => ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + + currentSettings?.Permissions?.some( + (perm) => + perm.AccessRights === "SendOnBehalf" && perm.User === user.userPrincipalName + ) + ).map((user) => ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + + + + + + + + ), + }, + { + id: "calendarPermissions", + cardLabelBox: "-", + text: "Calendar Permissions", + subtext: "Adjust calendar sharing settings", + formContent: ( + + + calPermissions?.some((perm) => perm.User === user.displayName) + ).map((user) => ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + multiple={false} + formControl={formControl} + /> + + + + value ? true : "Select the permission level for the calendar", + }} + isFetching={isFetching || usersList.isFetching} + options={[ + { value: "Author", label: "Author" }, + { value: "Contributor", label: "Contributor" }, + { value: "Editor", label: "Editor" }, + { value: "Owner", label: "Owner" }, + { value: "NonEditingAuthor", label: "Non Editing Author" }, + { value: "PublishingAuthor", label: "Publishing Author" }, + { value: "PublishingEditor", label: "Publishing Editor" }, + { value: "Reviewer", label: "Reviewer" }, + { value: "LimitedDetails", label: "Limited Details" }, + { value: "AvailabilityOnly", label: "Availability Only" }, + ]} + multiple={false} + formControl={formControl} + /> + + + + + + + + + ), + }, + { + id: "mailboxForwarding", + cardLabelBox: currentSettings?.ForwardAndDeliver ? : "-", + text: "Mailbox Forwarding", + subtext: "Configure email forwarding options", + formContent: ( + + + + + ({ + value: user.userPrincipalName, + label: `${user.displayName} (${user.userPrincipalName})`, + })) || [] + } + formControl={formControl} + /> + + + + + + + + + + + + + + + ), + }, + { + id: "outOfOffice", + cardLabelBox: "OOO", + text: "Out Of Office", + subtext: "Set automatic replies for when you are away", + formContent: ( + + + + + + + + + + + + + + + + + + + + + + + + + + ), + }, + ]; + + return ( + + {sections.map((section) => { + const isExpanded = expandedPanel === section.id; + return ( + + + {/* Left Side: cardLabelBox, text, subtext */} + + {/* cardLabelBox */} + + {section.cardLabelBox} + + + {/* Main Text and Subtext */} + + + {section.text} + + + {section.subtext} + + + + + {/* Expand Icon */} + handleExpand(section.id)}> + + + + + + + + {section.formContent} + + + ); + })} + + ); +}; + +export default CippExchangeSettingsForm; diff --git a/src/components/CippFormPages/CippFormPage.jsx b/src/components/CippFormPages/CippFormPage.jsx new file mode 100644 index 000000000000..585975b073bb --- /dev/null +++ b/src/components/CippFormPages/CippFormPage.jsx @@ -0,0 +1,155 @@ +import { useRouter } from "next/router"; +import { + Box, + Container, + Stack, + Button, + SvgIcon, + Typography, + Card, + CardContent, + CardActions, +} from "@mui/material"; +import ArrowLeftIcon from "@mui/icons-material/ArrowLeft"; +import Head from "next/head"; +import { ApiPostCall } from "../../api/ApiCall"; +import { CippApiResults } from "../CippComponents/CippApiResults"; +import { useEffect } from "react"; +import { useFormState } from "react-hook-form"; + +const CippFormPage = (props) => { + const { + title, + backButtonTitle, + formPageType = "Add", + children, + queryKey, + formControl, + postUrl, + customDataformatter, + resetForm = true, + hideBackButton = false, + hidePageType = false, + hideTitle = false, + hideSubmit = false, + addedButtons, + ...other + } = props; + const router = useRouter(); + + //check if there are + const postCall = ApiPostCall({ + datafromUrl: true, + relatedQueryKeys: queryKey, + }); + + const { isValid } = useFormState({ control: formControl.control }); + + useEffect(() => { + delete router.query.tenantFilter; + + if (router.query) { + const resetValues = { + ...formControl.getValues(), + ...router.query, + }; + formControl.reset(resetValues); + } + }, [router]); + + const handleBackClick = () => { + router.back(); // Navigate to the previous page when the button is clicked + }; + + useEffect(() => { + if (postCall.isSuccess) { + if (resetForm) { + formControl.reset(); + } + } + }, [postCall.isSuccess]); + + const handleSubmit = () => { + const values = customDataformatter + ? customDataformatter(formControl.getValues()) + : formControl.getValues(); + //remove all empty values or blanks + Object.keys(values).forEach((key) => { + if (values[key] === "" || values[key] === null) { + delete values[key]; + } + }); + postCall.mutate({ + url: postUrl, + data: values, + }); + }; + return ( + <> + + {title} + + + + + {!hideTitle && ( + + {!hideBackButton && ( +
    + +
    + )} + +
    + + {!hidePageType && <>{formPageType} - } + {title} + +
    +
    + )} + + + + {children} + + + {!hideSubmit && ( + + + {addedButtons && addedButtons} + + + + )} + +
    +
    +
    + + ); +}; + +export default CippFormPage; diff --git a/src/components/CippFormPages/CippFormSection.jsx b/src/components/CippFormPages/CippFormSection.jsx new file mode 100644 index 000000000000..3bd2a7c94b8d --- /dev/null +++ b/src/components/CippFormPages/CippFormSection.jsx @@ -0,0 +1,68 @@ +import { Button, CardContent, CardActions } from "@mui/material"; +import { ApiPostCall } from "../../api/ApiCall"; +import { CippApiResults } from "../CippComponents/CippApiResults"; +import { useEffect } from "react"; +import { useFormState } from "react-hook-form"; + +const CippFormSection = (props) => { + const { + children, + queryKey, + formControl, + postUrl, + customDataformatter, + relatedQueryKeys, + resetForm = true, + } = props; + + const postCall = ApiPostCall({ + datafromUrl: true, + relatedQueryKeys: relatedQueryKeys, + }); + + const { isValid } = useFormState({ control: formControl.control }); + + useEffect(() => { + if (postCall.isSuccess) { + if (resetForm) { + formControl.reset(); + } + } + }, [postCall.isSuccess]); + + const handleSubmit = () => { + if (!isValid) { + return; + } + const values = formControl.getValues(); + if (customDataformatter) { + customDataformatter(values); + } + postCall.mutate({ + url: postUrl, + data: values, + queryKey: queryKey, + }); + }; + return ( + <> + + {children} + + + + + + + + ); +}; + +export default CippFormSection; diff --git a/src/components/CippFormPages/CippFormSkeleton.jsx b/src/components/CippFormPages/CippFormSkeleton.jsx new file mode 100644 index 000000000000..086b6b09c378 --- /dev/null +++ b/src/components/CippFormPages/CippFormSkeleton.jsx @@ -0,0 +1,19 @@ +import { Box, Grid, Skeleton } from "@mui/material"; + +const CippFormSkeleton = ({ layout }) => { + return ( + + {layout.map((columns, rowIndex) => ( + + {Array.from({ length: columns }).map((_, columnIndex) => ( + + + + ))} + + ))} + + ); +}; + +export default CippFormSkeleton; diff --git a/src/components/CippFormPages/CippInviteGuest.jsx b/src/components/CippFormPages/CippInviteGuest.jsx new file mode 100644 index 000000000000..4c687c811083 --- /dev/null +++ b/src/components/CippFormPages/CippInviteGuest.jsx @@ -0,0 +1,49 @@ +import { Grid } from "@mui/material"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +const CippInviteUser = (props) => { + const { formControl, userSettingsDefaults } = props; + + return ( + + + + + + + + + + + + + + + ); +}; + +export default CippInviteUser; diff --git a/src/components/CippFormPages/CippJSONView.jsx b/src/components/CippFormPages/CippJSONView.jsx new file mode 100644 index 000000000000..8fa0d5532484 --- /dev/null +++ b/src/components/CippFormPages/CippJSONView.jsx @@ -0,0 +1,257 @@ +import React, { useState, useEffect } from "react"; +import { + Accordion, + AccordionSummary, + AccordionDetails, + IconButton, + Grid, + Typography, + Button, +} from "@mui/material"; +import ExpandMoreIcon from "@mui/icons-material/ExpandMore"; +import VisibilityIcon from "@mui/icons-material/Visibility"; +import VisibilityOffIcon from "@mui/icons-material/VisibilityOff"; +import { PropertyListItem } from "../property-list-item"; +import { PropertyList } from "../property-list"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; +import { CippCodeBlock } from "../CippComponents/CippCodeBlock"; +import intuneCollection from "/src/data/intuneCollection.json"; + +const cleanObject = (obj) => { + if (Array.isArray(obj)) { + return obj + .map((item) => cleanObject(item)) + .filter((item) => item !== null && item !== undefined && item !== ""); + } else if (typeof obj === "object" && obj !== null) { + const cleanedObj = {}; + Object.entries(obj).forEach(([key, value]) => { + const cleanedValue = cleanObject(value); + if (cleanedValue !== null && cleanedValue !== undefined && cleanedValue !== "") { + cleanedObj[key] = cleanedValue; + } + }); + return Object.keys(cleanedObj).length > 0 ? cleanedObj : null; + } else { + return obj; + } +}; + +const renderListItems = (data, onItemClick) => { + return Object.entries(data).map(([key, value]) => { + if (Array.isArray(value)) { + return ( + onItemClick(value)}> + {value.length} item{value.length > 1 ? "s" : ""} + + } + /> + ); + } else if (typeof value === "object" && value !== null) { + return ( + onItemClick(value)}> + View Details + + } + /> + ); + } else { + return ( + + ); + } + }); +}; + +function CippJsonView({ object = { "No Data Selected": "No Data Selected" }, type }) { + const [viewJson, setViewJson] = useState(false); + const [drilldownData, setDrilldownData] = useState([]); + + const renderIntuneItems = (data) => { + const items = []; + const policyNameKey = ["Name", "DisplayName", "displayName", "name"].find((key) => key in data); + if (policyNameKey) { + items.push( + + ); + } + + if (data.omaSettings) { + data.omaSettings.forEach((omaSetting, index) => { + items.push( + + ); + }); + } else if (data.settings) { + data.settings.forEach((setting, index) => { + const settingInstance = setting.settingInstance; + const intuneObj = intuneCollection.find( + (item) => item.id === settingInstance.settingDefinitionId + ); + + // Handle groupSettingCollectionInstance + if ( + settingInstance["@odata.type"] === + "#microsoft.graph.deviceManagementConfigurationGroupSettingCollectionInstance" && + settingInstance.groupSettingCollectionValue + ) { + settingInstance.groupSettingCollectionValue.forEach((groupValue, gIndex) => { + if (groupValue.children && Array.isArray(groupValue.children)) { + groupValue.children.forEach((child, cIndex) => { + const childIntuneObj = intuneCollection.find( + (item) => item.id === child.settingDefinitionId + ); + const label = childIntuneObj?.displayName || child.settingDefinitionId; + let value; + if (child.choiceSettingValue && child.choiceSettingValue.value) { + value = + childIntuneObj?.options?.find( + (option) => option.id === child.choiceSettingValue.value + )?.displayName || child.choiceSettingValue.value; + } + items.push( + + ); + }); + } + }); + } else if (settingInstance?.simpleSettingValue?.value) { + const label = intuneObj?.displayName || settingInstance.settingDefinitionId; + const value = settingInstance.simpleSettingValue.value; + items.push(); + } else if (settingInstance?.choiceSettingValue?.value) { + const label = intuneObj?.displayName || settingInstance.settingDefinitionId; + const optionValue = + intuneObj?.options?.find( + (option) => option.id === settingInstance.choiceSettingValue.value + )?.displayName || settingInstance.choiceSettingValue.value; + items.push( + + ); + } else { + const label = intuneObj?.displayName || settingInstance.settingDefinitionId; + items.push( + + ); + } + }); + } else if (data.added) { + items.push( + + ); + } else { + Object.entries(data).forEach(([key, value]) => { + items.push( + + ); + }); + } + + return items; + }; + + useEffect(() => { + const blacklist = [ + "selectedOption", + "GUID", + "ID", + "id", + "noSubmitButton", + "createdDateTime", + "modifiedDateTime", + ]; + const cleanedObj = cleanObject(object); + const filteredObj = Object.fromEntries( + Object.entries(cleanedObj).filter(([key]) => !blacklist.includes(key)) + ); + setDrilldownData([filteredObj]); + }, [object]); + + const toggleView = () => setViewJson(!viewJson); + + const handleItemClick = (itemData, level) => { + const updatedData = drilldownData.slice(0, level + 1); + updatedData[level + 1] = itemData; + setDrilldownData(updatedData); + }; + + return ( + + } + sx={{ display: "flex", alignItems: "center" }} + > + + Policy Details + + + + + {viewJson ? : } + + {viewJson ? ( + + ) : ( + + {drilldownData.slice(0, 4).map((data, index) => ( + + {type !== "intune" && ( + + {renderListItems(data, (itemData) => handleItemClick(itemData, index))} + + )} + {type === "intune" && {renderIntuneItems(data)}} + + ))} + + )} + + + ); +} + +export default CippJsonView; diff --git a/src/components/CippFormPages/CippSchedulerForm.jsx b/src/components/CippFormPages/CippSchedulerForm.jsx new file mode 100644 index 000000000000..3049dba77660 --- /dev/null +++ b/src/components/CippFormPages/CippSchedulerForm.jsx @@ -0,0 +1,297 @@ +import React from "react"; +import { Box, Button, Grid, Skeleton, SvgIcon, Typography } from "@mui/material"; +import { useWatch } from "react-hook-form"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { CippFormTenantSelector } from "/src/components/CippComponents/CippFormTenantSelector"; +import { CippFormCondition } from "/src/components/CippComponents/CippFormCondition"; +import { getCippValidator } from "/src/utils/get-cipp-validator"; +import { useRouter } from "next/router"; +import { ApiGetCall, ApiPostCall } from "/src/api/ApiCall"; +import { useEffect } from "react"; +import CippFormInputArray from "../CippComponents/CippFormInputArray"; +import { CippApiResults } from "../CippComponents/CippApiResults"; +import { CalendarDaysIcon } from "@heroicons/react/24/outline"; + +const CippSchedulerForm = (props) => { + const { formControl, fullWidth = false } = props; // Added fullWidth prop + const selectedCommand = useWatch({ control: formControl.control, name: "command" }); + + const fieldRequired = (field) => { + if (field?.Required) { + return { + required: { value: true, message: "This field is required" }, + }; + } else { + return {}; + } + }; + + const postCall = ApiPostCall({ + datafromUrl: true, + relatedQueryKeys: [ + "ListScheduledItems-Edit", + "ListScheduledItems-hidden", + "ListScheduledItems", + ], + }); + + const handleSubmit = () => { + const values = formControl.getValues(); + //remove all empty values or blanks + Object.keys(values).forEach((key) => { + if (values[key] === "" || values[key] === null) { + delete values[key]; + } + }); + + postCall.mutate({ + url: "/api/AddScheduledItem", + data: values, + }); + }; + + const recurrenceOptions = [ + { value: "0", label: "Only once" }, + { value: "1d", label: "Every 1 day" }, + { value: "7d", label: "Every 7 days" }, + { value: "30d", label: "Every 30 days" }, + { value: "365d", label: "Every 365 days" }, + ]; + const commands = ApiGetCall({ + url: "/api/ListFunctionParameters?Module=CIPPCore", + queryKey: "ListCommands", + }); + + const router = useRouter(); + const scheduledTaskList = ApiGetCall({ + url: "/api/ListScheduledItems", + queryKey: "ListScheduledItems-Edit", + }); + + const tenantList = ApiGetCall({ + url: "/api/ListTenants", + queryKey: "ListTenants", + }); + useEffect(() => { + if (scheduledTaskList.isSuccess && router.query.id) { + const task = scheduledTaskList.data.find((task) => task.RowKey === router.query.id); + const postExecution = task?.postExecution?.split(",").map((item) => { + return { label: item, value: item }; + }); + + // Find tenantFilter in tenantList, and create a label/value pair for the autocomplete + if (tenantList.isSuccess) { + const tenantFilter = tenantList.data.find( + (tenant) => tenant.defaultDomainName === task?.Tenant + ); + if (commands.isSuccess) { + const command = commands.data.find((command) => command.Function === task.Command); + const ResetParams = { + tenantFilter: { + value: tenantFilter?.defaultDomainName, + label: tenantFilter?.defaultDomainName, + }, + RowKey: router.query.Clone ? null : task.RowKey, + Name: router.query.Clone ? `${task.Name} (Clone)` : task?.Name, + command: { label: task.Command, value: task.Command, addedFields: command }, + ScheduledTime: task.ScheduledTime, + Recurrence: task.Recurrence, + parameters: task.Parameters, + postExecution: postExecution, + advancedParameters: task.RawJsonParameters ? true : false, + }; + formControl.reset(ResetParams); + } + } + } + }, [ + router.query.id, + scheduledTaskList.isSuccess, + tenantList.isSuccess, + router.query.Clone, + commands.isSuccess, + ]); + + const gridSize = fullWidth ? 12 : 4; // Adjust size based on fullWidth prop + + return ( + + {(scheduledTaskList.isFetching || tenantList.isLoading || commands.isLoading) && ( + + )} + + + + + + + + + + { + return { + label: command.Function, + value: command.Function, + addedFields: command, + }; + }) || [] + } + validators={{ + validate: (value) => { + if (!value) { + return "Please select a Command"; + } + return true; + }, + }} + /> + + + + + + + + {selectedCommand?.addedFields?.Synopsis && ( + + + PowerShell Command: + + {selectedCommand.addedFields.Synopsis} + + + + )} + + {selectedCommand?.addedFields?.Parameters?.map((param, idx) => ( + + + {param.Type === "System.Boolean" ? ( + + ) : param.Type === "System.Collections.Hashtable" ? ( + + ) : param.Type?.startsWith("System.String") ? ( + + ) : null} + + + ))} + + + + + + getCippValidator(value, "json"), + }} + formControl={formControl} + multiline + rows={4} + placeholder={`Enter a JSON object`} + /> + + + + + + + + + + ); +}; + +export default CippSchedulerForm; diff --git a/src/components/CippIntegrations/CippIntegrationFieldMapping.jsx b/src/components/CippIntegrations/CippIntegrationFieldMapping.jsx new file mode 100644 index 000000000000..9157364fe66b --- /dev/null +++ b/src/components/CippIntegrations/CippIntegrationFieldMapping.jsx @@ -0,0 +1,196 @@ +import { + Box, + Grid, + CardContent, + Skeleton, + Typography, + Divider, + Tooltip, + IconButton, + Button, + Alert, +} from "@mui/material"; +import CippFormSection from "/src/components/CippFormPages/CippFormSection"; +import { useForm } from "react-hook-form"; +import { ApiGetCall } from "/src/api/ApiCall"; +import { useRouter } from "next/router"; +import extensions from "/src/data/Extensions.json"; +import React, { useEffect, useState } from "react"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { Sync } from "@mui/icons-material"; +import { Stack } from "@mui/system"; + +const CippIntegrationFieldMapping = () => { + const router = useRouter(); + + const fieldMapping = ApiGetCall({ + url: "/api/ExecExtensionMapping", + data: { + List: `${router.query.id}Fields`, + }, + queryKey: `IntegrationFieldMapping-${router.query.id}`, + }); + + const formControl = useForm({ + mode: "onChange", + }); + + const extension = extensions.find((extension) => extension.id === router.query.id); + const [missingMappings, setMissingMappings] = useState([]); + + useEffect(() => { + if (fieldMapping.isSuccess) { + var newMappings = {}; + var missingMappings = []; + fieldMapping?.data?.Mappings?.forEach((mapping) => { + const exists = fieldMapping?.data?.IntegrationFields?.some( + (integrationField) => integrationField.value === mapping.IntegrationId + ); + if (exists) { + newMappings[mapping.RowKey] = { + label: mapping?.IntegrationName, + value: mapping?.IntegrationId, + }; + } else if (mapping.IntegrationId === "") { + newMappings[mapping.RowKey] = { + label: "--- Do not synchronize ---", + value: null, + }; + } else { + const missingField = fieldMapping?.data?.CIPPFields?.find( + (field) => field.FieldName === mapping.RowKey + ); + if (missingField) { + missingMappings.push(missingField.FieldLabel); + } + } + }); + + setMissingMappings(missingMappings); + + formControl.reset({ + ...newMappings, + }); + formControl.trigger(); + } + }, [fieldMapping.isSuccess, fieldMapping?.data]); + + return ( + <> + {fieldMapping.isSuccess && extension ? ( + + <> + {fieldMapping?.data?.CIPPFieldHeaders?.map((header, headerIndex) => ( + + + + {header.Title} + + {header.Description} + + + {headerIndex === 0 && ( + + + + + + )} + + + + {fieldMapping?.data?.CIPPFields?.filter( + (field) => field.FieldType === header.FieldType + ).map((field, fieldIndex) => ( + + + + (integrationField?.type === field.Type && + integrationField?.FieldType === field.FieldType) || + integrationField?.type === "unset" + )?.map((integrationField) => { + return { + label: integrationField?.name, + value: integrationField?.value, + }; + })} + formControl={formControl} + multiple={false} + creatable={false} + fullWidth + isFetching={fieldMapping.isFetching} + disableClearable={true} + required={true} + validators={{ + validate: (value) => { + return value ? true : "Please select a value"; + }, + }} + /> + + + ))} + + + ))} + {missingMappings.length > 0 && ( + + The following mappings are missing: {missingMappings.join(", ")} + + )} + + + ) : ( + + {fieldMapping.isLoading && ( + + + + + + + + + + + + + + + )} + {fieldMapping.isSuccess && !extension && ( + + + + Extension not found + + + + )} + + )} + + ); +}; + +export default CippIntegrationFieldMapping; diff --git a/src/components/CippIntegrations/CippIntegrationSettings.jsx b/src/components/CippIntegrations/CippIntegrationSettings.jsx new file mode 100644 index 000000000000..53334b6ada59 --- /dev/null +++ b/src/components/CippIntegrations/CippIntegrationSettings.jsx @@ -0,0 +1,93 @@ +import { Box, Grid } from "@mui/material"; +import CippFormSection from "/src/components/CippFormPages/CippFormSection"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { useForm } from "react-hook-form"; +import { useSettings } from "/src/hooks/use-settings"; +import { ApiGetCall } from "/src/api/ApiCall"; +import { useRouter } from "next/router"; +import extensions from "/src/data/Extensions.json"; +import { useEffect } from "react"; + +const CippIntegrationSettings = ({ children }) => { + const router = useRouter(); + const settings = useSettings(); + const preferredTheme = settings.currentTheme?.value; + + const integrations = ApiGetCall({ + url: "/api/ListExtensionsConfig", + queryKey: "Integrations", + }); + + const formControl = useForm({ + mode: "onChange", + defaultValues: integrations?.data, + }); + + const extension = extensions.find((extension) => extension.id === router.query.id); + + var logo = extension?.logo; + if (preferredTheme === "dark" && extension?.logoDark) { + logo = extension.logoDark; + } + + useEffect(() => { + if (integrations.isSuccess) { + formControl.reset({ + ...integrations.data, + }); + formControl.trigger(); + } + }, [integrations.isSuccess]); + + return ( + <> + {integrations.isSuccess && extension ? ( + + {children} + + + {extension.SettingOptions.map((setting, index) => ( + + + + + + ))} + + + ) : ( + + {integrations.isLoading && Loading...} + {integrations.isSuccess && !extension && ( + + + + Extension not found + + + + )} + + )} + + ); +}; + +export default CippIntegrationSettings; diff --git a/src/components/CippIntegrations/CippIntegrationTenantMapping.jsx b/src/components/CippIntegrations/CippIntegrationTenantMapping.jsx new file mode 100644 index 000000000000..8c3c9fd15aff --- /dev/null +++ b/src/components/CippIntegrations/CippIntegrationTenantMapping.jsx @@ -0,0 +1,293 @@ +import { + Box, + Button, + CardActions, + CardContent, + Grid, + Stack, + Skeleton, + SvgIcon, + Tooltip, + Typography, +} from "@mui/material"; +import { useState } from "react"; +import { useForm } from "react-hook-form"; +import { ApiGetCall, ApiPostCall } from "/src/api/ApiCall"; +import { useRouter } from "next/router"; +import extensions from "/src/data/Extensions.json"; +import { useEffect } from "react"; +import { CippDataTable } from "../CippTable/CippDataTable"; +import { PlusSmallIcon, SparklesIcon, TrashIcon } from "@heroicons/react/24/outline"; +import { CippFormTenantSelector } from "../CippComponents/CippFormTenantSelector"; +import { Sync, SyncAlt } from "@mui/icons-material"; +import { CippFormComponent } from "../CippComponents/CippFormComponent"; +import { CippApiResults } from "../CippComponents/CippApiResults"; + +const CippIntegrationSettings = ({ children }) => { + const router = useRouter(); + const [tableData, setTableData] = useState([]); + + const mappings = ApiGetCall({ + url: "/api/ExecExtensionMapping", + data: { + List: router.query.id, + }, + queryKey: `IntegrationTenantMapping-${router.query.id}`, + }); + + const tenantList = ApiGetCall({ + url: "/api/ListTenants", + data: { AllTenantSelector: false }, + queryKey: "ListTenants-notAllTenants", + }); + + const formControl = useForm({ + mode: "onChange", + defaultValues: mappings?.data, + }); + + const automapPostCall = ApiPostCall({ + datafromUrl: true, + }); + + const postCall = ApiPostCall({ + datafromUrl: true, + relatedQueryKeys: [`IntegrationTenantMapping-${router.query.id}`], + }); + + const handleSubmit = () => { + postCall.mutate({ + url: `/api/ExecExtensionMapping?AddMapping=${router.query.id}`, + data: tableData, + }); + }; + + const handleRemoveItem = (rows) => { + if (rows === undefined) return false; + const newTableData = [...tableData]; + if (Array.isArray(rows)) { + rows.forEach((row) => { + const index = newTableData.findIndex((item) => item === row); + if (index !== -1) newTableData.splice(index, 1); + }); + } else { + const index = newTableData.findIndex((item) => item === rows); + if (index !== -1) newTableData.splice(index, 1); + } + setTableData(newTableData); + }; + + const handleAddItem = () => { + const selectedTenant = formControl.getValues("tenantFilter"); + const selectedCompany = formControl.getValues("integrationCompany"); + if (!selectedTenant || !selectedCompany) return; + if (tableData?.find((item) => item.TenantId === selectedTenant.value)) return; + + const newRowData = { + TenantId: selectedTenant.value, + Tenant: selectedTenant.label, + IntegrationName: selectedCompany.label, + IntegrationId: selectedCompany.value, + }; + + setTableData([...tableData, newRowData]); + }; + + const handleAutoMap = () => { + const newTableData = []; + tenantList.data.forEach((tenant) => { + const matchingCompany = mappings.data.Companies.find( + (company) => company.name === tenant.displayName + ); + if ( + Array.isArray(tableData) && + tableData?.find((item) => item.TenantId === tenant.customerId) + ) + return; + if (matchingCompany) { + newTableData.push({ + TenantId: tenant.customerId, + Tenant: tenant.displayName, + IntegrationName: matchingCompany.name, + IntegrationId: matchingCompany.value, + }); + } + }); + if (Array.isArray(tableData)) { + setTableData([...tableData, ...newTableData]); + } else { + setTableData(newTableData); + } + if (extension.autoMapSyncApi) { + automapPostCall.mutate({ + url: `/api/ExecExtensionMapping?AutoMapping=${router.query.id}`, + queryKey: `IntegrationTenantMapping-${router.query.id}`, + }); + } + }; + + const actions = [ + { + label: "Delete Mapping", + icon: , + confirmText: "Are you sure you want to delete this mapping?", + customFunction: handleRemoveItem, + }, + ]; + + const extension = extensions.find((extension) => extension.id === router.query.id); + + useEffect(() => { + if (mappings.isSuccess) { + setTableData(mappings.data.Mappings); + } + }, [mappings.isSuccess]); + + return ( + <> + {mappings.isSuccess && extension ? ( + <> + + + Add a Tenant Mapping + + + + + + + + + + + + + + + + { + return { + label: company.name, + value: company.value, + }; + })} + creatable={false} + multiple={false} + isFetching={mappings.isFetching} + /> + + + + + + + + + + + + + + + + + + mappings.refetch()} + /> + + + + + + + + ) : ( + + {mappings.isLoading && ( + + + + + + + + + + + + + + + + + + + + )} + {mappings.isSuccess && !extension && ( + + + + Extension not found + + + + )} + + )} + + ); +}; + +export default CippIntegrationSettings; diff --git a/src/components/CippSettings/CippBackendCard.jsx b/src/components/CippSettings/CippBackendCard.jsx new file mode 100644 index 000000000000..4438f0b813a8 --- /dev/null +++ b/src/components/CippSettings/CippBackendCard.jsx @@ -0,0 +1,79 @@ +import { OpenInNew } from "@mui/icons-material"; +import CippButtonCard from "/src/components/CippCards/CippButtonCard"; +import { Button, Stack, SvgIcon, Typography } from "@mui/material"; +import { CippOffCanvas } from "../CippComponents/CippOffCanvas"; +import { useState } from "react"; +import { getCippTranslation } from "/src/utils/get-cipp-translation"; + +export const CippBackendCard = ({ backendComponents, item }) => { + const [open, setOpen] = useState(false); + + const BackendButton = () => { + return ( + + + {item.offcanvas && ( + + )} + + ); + }; + + return ( + <> + } + > + {item.description} + + {item.offcanvas && ( + setOpen(false)} size="md"> + {Object.keys(item?.offcanvasData).length > 0 && ( + <> + + {item.offcanvasTitle} + + {Object.keys(item.offcanvasData).length > 0 && ( + <> + {Object.keys(item.offcanvasData).map((key) => ( + <> + + {getCippTranslation(key)} + + {item.offcanvasData[key]} + + ))} + + )} + + )} + + )} + + ); +}; diff --git a/src/components/CippSettings/CippBackupSettings.jsx b/src/components/CippSettings/CippBackupSettings.jsx new file mode 100644 index 000000000000..d45bf6385a85 --- /dev/null +++ b/src/components/CippSettings/CippBackupSettings.jsx @@ -0,0 +1,46 @@ +import { Button, SvgIcon, Typography } from "@mui/material"; +import CippButtonCard from "/src/components/CippCards/CippButtonCard"; +import { ApiPostCall } from "/src/api/ApiCall"; +import { useDialog } from "/src/hooks/use-dialog"; +import { SettingsBackupRestore } from "@mui/icons-material"; +import Link from "next/link"; + +const CippBackupSettings = () => { + const createDialog = useDialog(); + const backupAction = ApiPostCall({ + datafromUrl: true, + }); + + const BackupButtons = () => { + return ( + <> + + + ); + }; + + return ( + <> + }> + + Manage the system configuration backups for CIPP. This will not include authentication + information or extension configuration. You can also set an automated daily backup + schedule. + + + + ); +}; + +export default CippBackupSettings; diff --git a/src/components/CippSettings/CippCacheSettings.jsx b/src/components/CippSettings/CippCacheSettings.jsx new file mode 100644 index 000000000000..5a2e97622056 --- /dev/null +++ b/src/components/CippSettings/CippCacheSettings.jsx @@ -0,0 +1,82 @@ +import { Button, SvgIcon, Typography } from "@mui/material"; +import CippButtonCard from "/src/components/CippCards/CippButtonCard"; +import { ApiPostCall } from "/src/api/ApiCall"; +import { CippApiDialog } from "../CippComponents/CippApiDialog"; +import { useDialog } from "/src/hooks/use-dialog"; +import { TrashIcon } from "@heroicons/react/24/outline"; + +const CippCacheSettings = () => { + const createDialog = useDialog(); + const resolverChange = ApiPostCall({ + datafromUrl: true, + }); + + const handleCacheClear = (type) => { + var data = { + ClearCache: true, + }; + if (type === "Tenant") { + data.TenantsOnly = true; + } + + resolverChange.mutate({ + url: "/api/ListTenants", + data: data, + }); + }; + + const CacheButtons = () => { + return ( + <> + + + ); + }; + + return ( + <> + } + > + + Use this button to clear the caches used by CIPP. This will slow down some aspects of the + application, and should only be used when instructed to do so by support. + + + + + ); +}; + +export default CippCacheSettings; diff --git a/src/components/CippSettings/CippCustomRoles.jsx b/src/components/CippSettings/CippCustomRoles.jsx new file mode 100644 index 000000000000..2f8ddd517dcc --- /dev/null +++ b/src/components/CippSettings/CippCustomRoles.jsx @@ -0,0 +1,487 @@ +import React, { useEffect, useRef, useState } from "react"; + +import { + Box, + Button, + Alert, + Typography, + Accordion, + AccordionSummary, + AccordionDetails, + Stack, + SvgIcon, + Skeleton, +} from "@mui/material"; + +import Grid from "@mui/material/Grid2"; +import { ApiGetCall, ApiPostCall } from "../../api/ApiCall"; +import { CippOffCanvas } from "/src/components/CippComponents/CippOffCanvas"; +import { CippFormTenantSelector } from "/src/components/CippComponents/CippFormTenantSelector"; +import { Save } from "@mui/icons-material"; +import ExpandMoreIcon from "@mui/icons-material/ExpandMore"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import { useForm, useWatch } from "react-hook-form"; +import { InformationCircleIcon, TrashIcon } from "@heroicons/react/24/outline"; +import { CippApiDialog } from "../CippComponents/CippApiDialog"; +import { useDialog } from "../../hooks/use-dialog"; +import { CippApiResults } from "../CippComponents/CippApiResults"; + +export const CippCustomRoles = () => { + const updatePermissions = ApiPostCall({ + urlFromData: true, + relatedQueryKeys: ["customRoleList"], + }); + + const [allTenantSelected, setAllTenantSelected] = useState(false); + const [cippApiRoleSelected, setCippApiRoleSelected] = useState(false); + const [selectedRole, setSelectedRole] = useState(null); + const [updateDefaults, setUpdateDefaults] = useState(false); + + const formControl = useForm({ + mode: "onBlur", + }); + + const createDialog = useDialog(); + const currentRole = useWatch({ control: formControl.control, name: "RoleName" }); + const selectedTenant = useWatch({ control: formControl.control, name: "allowedTenants" }); + const blockedTenants = useWatch({ control: formControl.control, name: "blockedTenants" }); + const setDefaults = useWatch({ control: formControl.control, name: "Defaults" }); + const selectedPermissions = useWatch({ control: formControl.control, name: "Permissions" }); + + const { + data: apiPermissions = [], + isFetching: apiPermissionFetching, + isSuccess: apiPermissionSuccess, + } = ApiGetCall({ + url: "/api/ExecAPIPermissionList", + queryKey: "apiPermissions", + }); + + const { + data: customRoleList = [], + isFetching: customRoleListFetching, + isSuccess: customRoleListSuccess, + refetch: refetchCustomRoleList, + } = ApiGetCall({ + url: "/api/ExecCustomRole", + queryKey: "customRoleList", + }); + + const { data: tenants = [], isSuccess: tenantsSuccess } = ApiGetCall({ + url: "/api/ListTenants?AllTenantSelector=true", + queryKey: "ListTenants-AllTenantSelector", + }); + + useEffect(() => { + if (customRoleListSuccess && tenantsSuccess && selectedRole !== currentRole?.value) { + setSelectedRole(currentRole?.value); + if (currentRole?.value === "cipp-api") { + setCippApiRoleSelected(true); + } else { + setCippApiRoleSelected(false); + } + + var currentPermissions = customRoleList.find((role) => role.RowKey === currentRole?.value); + + var newAllowedTenants = []; + currentPermissions?.AllowedTenants.map((tenant) => { + var tenantInfo = tenants.find((t) => t.customerId === tenant); + var label = `${tenantInfo?.displayName} (${tenantInfo?.defaultDomainName})`; + if (tenantInfo?.displayName) { + newAllowedTenants.push({ + label: label, + value: tenantInfo.defaultDomainName, + }); + } + }); + + var newBlockedTenants = []; + currentPermissions?.BlockedTenants.map((tenant) => { + var tenantInfo = tenants.find((t) => t.customerId === tenant); + var label = `${tenantInfo?.displayName} (${tenantInfo?.defaultDomainName})`; + if (tenantInfo?.displayName) { + newBlockedTenants.push({ + label: label, + value: tenantInfo.defaultDomainName, + }); + } + }); + + formControl.reset({ + Permissions: currentPermissions?.Permissions, + RoleName: currentRole, + allowedTenants: newAllowedTenants, + blockedTenants: newBlockedTenants, + }); + } + }, [currentRole, customRoleList, customRoleListSuccess, tenantsSuccess]); + + useEffect(() => { + if (updateDefaults !== setDefaults) { + setUpdateDefaults(setDefaults); + var newPermissions = {}; + Object.keys(apiPermissions).forEach((cat) => { + Object.keys(apiPermissions[cat]).forEach((obj) => { + var newval = ""; + if (cat == "CIPP" && obj == "Core" && setDefaults == "None") { + newval = "Read"; + } else { + newval = setDefaults; + } + newPermissions[`${cat}${obj}`] = `${cat}.${obj}.${newval}`; + }); + }); + formControl.setValue("Permissions", newPermissions); + } + }, [setDefaults, updateDefaults]); + + useEffect(() => { + var alltenant = false; + selectedTenant?.map((tenant) => { + if (tenant?.value === "AllTenants") { + alltenant = true; + } + }); + if (alltenant) { + setAllTenantSelected(true); + } else { + setAllTenantSelected(false); + } + }, [selectedTenant, blockedTenants]); + + const handleSubmit = () => { + var allowedTenantIds = []; + selectedTenant.map((tenant) => { + var tenant = tenants.find((t) => t.defaultDomainName === tenant?.value); + if (tenant?.customerId) { + allowedTenantIds.push(tenant.customerId); + } + }); + + var blockedTenantIds = []; + blockedTenants.map((tenant) => { + var tenant = tenants.find((t) => t.defaultDomainName === tenant?.value); + if (tenant?.customerId) { + blockedTenantIds.push(tenant.customerId); + } + }); + + updatePermissions.mutate({ + url: "/api/ExecCustomRole?Action=AddUpdate", + data: { + RoleName: currentRole.value, + Permissions: selectedPermissions, + AllowedTenants: allowedTenantIds, + BlockedTenants: blockedTenantIds, + }, + }); + }; + + const ApiPermissionRow = ({ obj, cat }) => { + const [offcanvasVisible, setOffcanvasVisible] = useState(false); + + var items = []; + for (var key in apiPermissions[cat][obj]) + for (var key2 in apiPermissions[cat][obj][key]) { + items.push({ heading: "", content: apiPermissions[cat][obj][key][key2] }); + } + var group = [{ items: items }]; + + return ( + + {obj} + + + + + + { + setOffcanvasVisible(false); + }} + > + + + {`${cat}.${obj}`} + + + Listed below are the available API endpoints based on permission level, ReadWrite + level includes endpoints under Read. + + {[apiPermissions[cat][obj]].map((permissions, key) => { + var sections = Object.keys(permissions).map((type) => { + var items = []; + for (var api in permissions[type]) { + items.push({ heading: "", content: permissions[type][api] }); + } + return ( + + {type} + + {items.map((item, idx) => ( + + {item.content} + + ))} + + + ); + }); + return sections; + })} + + + + ); + }; + + return ( + <> + + + + ({ + label: role.RowKey, + value: role.RowKey, + }))} + isLoading={customRoleListFetching} + refreshFunction={() => refetchCustomRoleList()} + creatable={true} + formControl={formControl} + multiple={false} + fullWidth={true} + /> + {cippApiRoleSelected && ( + + This role will limit access for the CIPP-API integration. It is not intended to be + used for users. + + )} + + + + {allTenantSelected && blockedTenants?.length == 0 && ( + + All tenants selected, no tenant restrictions will be applied unless blocked tenants + are specified. + + )} + + {allTenantSelected && ( + + + + )} + + {currentRole && ( + <> + {apiPermissionFetching && } + {apiPermissionSuccess && ( + <> + API Permissions + + Set All Permissions + + + + + + + <> + {Object.keys(apiPermissions) + .sort() + .map((cat, catIndex) => ( + + }> + {cat} + + + {Object.keys(apiPermissions[cat]) + .sort() + .map((obj, index) => { + return ( + + + + ); + })} + + + ))} + + + + )} + + )} + + + + {selectedRole && selectedTenant?.length > 0 && ( + <> +
    Allowed Tenants
    +
      + {selectedTenant.map((tenant, idx) => ( +
    • {tenant?.label}
    • + ))} +
    + + )} + {selectedRole && blockedTenants?.length > 0 && ( + <> +
    Blocked Tenants
    +
      + {blockedTenants.map((tenant, idx) => ( +
    • {tenant?.label}
    • + ))} +
    + + )} + {selectedRole && selectedPermissions && ( + <> +
    Selected Permissions
    +
      + {selectedPermissions && + Object.keys(selectedPermissions) + ?.sort() + .map((cat, idx) => ( + <> + {selectedPermissions?.[cat] && + !selectedPermissions?.[cat]?.includes("None") && ( +
    • {selectedPermissions[cat]}
    • + )} + + ))} +
    + + )} +
    +
    + + + + + {currentRole && ( + + )} + + + + ); +}; + +export default CippCustomRoles; diff --git a/src/components/CippSettings/CippDnsSettings.jsx b/src/components/CippSettings/CippDnsSettings.jsx new file mode 100644 index 000000000000..525fde070cca --- /dev/null +++ b/src/components/CippSettings/CippDnsSettings.jsx @@ -0,0 +1,65 @@ +import { Button, ButtonGroup, SvgIcon, Typography } from "@mui/material"; +import CippButtonCard from "/src/components/CippCards/CippButtonCard"; +import { ApiGetCall, ApiPostCall } from "/src/api/ApiCall"; +import { Dns } from "@mui/icons-material"; + +const CippDnsSettings = () => { + const dnsSetting = ApiGetCall({ + url: "/api/ExecDnsConfig?Action=GetConfig", + queryKey: "DNSSettings", + }); + + const resolverChange = ApiPostCall({ + datafromUrl: true, + relatedQueryKeys: "DNSSettings", + }); + + const handleResolverChange = (resolver) => { + resolverChange.mutate({ + url: "/api/ExecDnsConfig?Action=SetConfig", + data: { Resolver: resolver }, + queryKey: "DNSResolverPost", + }); + }; + + const DnsButtons = () => { + const resolvers = ["Google", "Cloudflare", "Quad9"]; + return resolvers.map((resolver) => ( + + )); + }; + + return ( + + + + + + + } + > + + Select your DNS Resolver. The DNS resolver is used for the domain analyser and the + individual domain check only, not for generic DNS resolution. + + + ); +}; + +export default CippDnsSettings; diff --git a/src/components/CippSettings/CippGDAPResults.jsx b/src/components/CippSettings/CippGDAPResults.jsx new file mode 100644 index 000000000000..99820ad401eb --- /dev/null +++ b/src/components/CippSettings/CippGDAPResults.jsx @@ -0,0 +1,216 @@ +import { List, ListItem, Skeleton, SvgIcon, Typography } from "@mui/material"; +import { Cancel, CheckCircle, Warning } from "@mui/icons-material"; +import { CippPropertyList } from "/src/components/CippComponents/CippPropertyList"; +import { XMarkIcon } from "@heroicons/react/24/outline"; +import { CippOffCanvas } from "../CippComponents/CippOffCanvas"; +import { CippDataTable } from "/src/components/CippTable/CippDataTable"; +import { useEffect, useState } from "react"; + +export const CippGDAPResults = (props) => { + const { executeCheck, offcanvasVisible, setOffcanvasVisible, importReport, setCardIcon } = props; + const [results, setResults] = useState({}); + + useEffect(() => { + if (importReport) { + setResults(importReport); + } else { + setResults(executeCheck?.data); + } + }, [executeCheck, importReport]); + + useEffect(() => { + if (results?.Results?.GDAPIssues?.length > 0 || results?.Results?.MissingGroups?.length > 0) { + setCardIcon(); + } else { + setCardIcon(); + } + }, [results]); + + const GdapIssueValue = ({ results, type, match }) => { + var issues = []; + if (type) issues = results?.Results?.GDAPIssues.filter((issue) => issue.Type === type)?.length; + if (match) + issues = results?.Results?.GDAPIssues.filter((issue) => + new RegExp(match).test(issue.Issue) + )?.length; + return ( + <> + + {type && <>{type === "Warning" ? : }} + {match && <>{issues > 0 ? : }} + + {issues} + + ); + }; + + const gdapTests = [ + { + resultProperty: "Memberships", + matchProperty: "displayName", + match: "AdminAgents", + count: 1, + successMessage: "User is a member of the AdminAgents group", + failureMessage: "User is not a member of the AdminAgents group", + }, + { + resultProperty: "Memberships", + matchProperty: "displayName", + match: "^M365 GDAP.+", + count: 12, + successMessage: "User is a member of the 12 CIPP Recommended GDAP groups", + failureMessage: "User is not a member of the 12 CIPP Recommended GDAP groups", + }, + { + resultProperty: "GDAPIssues", + matchProperty: "Issue", + match: ".+Microsoft Led Transition.+$", + count: 0, + successMessage: "No Microsoft Led Transition relationships found", + failureMessage: "Microsoft Led Transition relationships found", + }, + { + resultProperty: "GDAPIssues", + matchProperty: "Issue", + match: ".+global administrator.+$", + count: 0, + successMessage: "No Global Admin relationships found", + failureMessage: "Global Admin relationships found", + }, + ]; + + const propertyItems = [ + { + label: "Warnings", + value: , + }, + { + label: "Errors", + value: , + }, + { + label: "Microsoft Led Transition Relationships", + value: , + }, + { + label: "Global Admin Relationships", + value: , + }, + ]; + + return ( + <> + {propertyItems.length > 0 && ( + + )} + + {executeCheck.isFetching ? ( + + ) : ( + <> + + {gdapTests.map((test) => { + var matchedResults = results?.Results?.[test.resultProperty]?.filter((item) => + new RegExp(test.match)?.test(item?.[test.matchProperty]) + ); + + var testResult = false; + if (test.count > 1) { + testResult = matchedResults?.length >= test.count; + } else { + testResult = matchedResults?.length === test.count; + } + + return ( + + + + {testResult ? : } + + {testResult ? test.successMessage : test.failureMessage} + + + ); + })} + + + { + setOffcanvasVisible(false); + }} + extendedInfo={[]} + > + + GDAP Details + + + {results?.Results?.GDAPIssues?.length > 0 && ( + <> + + + )} + + {results?.Results?.MissingGroups?.length > 0 && ( + <> + + + )} + + {results?.Results?.Memberships?.filter( + (membership) => membership?.["@odata.type"] === "#microsoft.graph.group" + ).length > 0 && ( + <> + membership?.["@odata.type"] === "#microsoft.graph.group" + )} + simpleColumns={["displayName"]} + /> + + )} + + {results?.Results?.Memberships?.filter( + (membership) => membership?.["@odata.type"] === "#microsoft.graph.directoryRole" + ).length > 0 && ( + <> + membership?.["@odata.type"] === "#microsoft.graph.directoryRole" + )} + simpleColumns={["displayName"]} + /> + + )} + + + )} + + ); +}; diff --git a/src/components/CippSettings/CippPasswordSettings.jsx b/src/components/CippSettings/CippPasswordSettings.jsx new file mode 100644 index 000000000000..c0210a6cdd47 --- /dev/null +++ b/src/components/CippSettings/CippPasswordSettings.jsx @@ -0,0 +1,65 @@ +import { Button, ButtonGroup, SvgIcon, Typography } from "@mui/material"; +import CippButtonCard from "/src/components/CippCards/CippButtonCard"; +import { ApiGetCall, ApiPostCall } from "/src/api/ApiCall"; +import { KeyIcon } from "@heroicons/react/24/outline"; + +const CippPasswordSettings = () => { + const passwordSetting = ApiGetCall({ + url: "/api/ExecPasswordConfig?list=true", + queryKey: "PasswordSettings", + }); + + const passwordChange = ApiPostCall({ + datafromUrl: true, + relatedQueryKeys: "PasswordSettings", + }); + + const handlePasswordTypeChange = (type) => { + passwordChange.mutate({ + url: "/api/ExecPasswordConfig", + data: { passwordType: type }, + queryKey: "PasswordSettingsPost", + }); + }; + + const PasswordTypeButtons = () => { + const passwordTypes = ["Classic", "Correct-Battery-Horse"]; + return passwordTypes.map((type) => ( + + )); + }; + return ( + + + + + + + } + > + + Choose your password style. Classic passwords are a combination of letters and symbols. + Correct-Battery-Horse style is a passphrase, which is easier to remember and more secure + than classic passwords. + + + ); +}; + +export default CippPasswordSettings; diff --git a/src/components/CippSettings/CippPermissionCheck.jsx b/src/components/CippSettings/CippPermissionCheck.jsx new file mode 100644 index 000000000000..553712441188 --- /dev/null +++ b/src/components/CippSettings/CippPermissionCheck.jsx @@ -0,0 +1,160 @@ +import { Box, Button, Chip, Stack, SvgIcon, Typography } from "@mui/material"; +import CippButtonCard from "/src/components/CippCards/CippButtonCard"; +import { ApiGetCall } from "/src/api/ApiCall"; +import { useEffect, useState } from "react"; +import { CippPermissionResults } from "./CippPermissionResults"; +import { CippGDAPResults } from "./CippGDAPResults"; +import { Sync } from "@mui/icons-material"; +import { CippTenantResults } from "./CippTenantResults"; +import { CippTimeAgo } from "../CippComponents/CippTimeAgo"; +import { Description } from "@mui/icons-material"; + +const CippPermissionCheck = (props) => { + const { type, importReport = false, variant } = props; + const [skipCache, setSkipCache] = useState(false); + const [cardIcon, setCardIcon] = useState(null); + const [offcanvasVisible, setOffcanvasVisible] = useState(false); + var showDetails = true; + + if (type === "Tenants") { + showDetails = false; + } + + const executeCheck = ApiGetCall({ + url: "/api/ExecAccessChecks", + data: { Type: type, SkipCache: skipCache }, + waiting: importReport ? false : true, + queryKey: `ExecAccessChecks-${type}`, + }); + + const handlePermissionCheck = () => { + setSkipCache(true); + if (skipCache) { + executeCheck.refetch(); + } + }; + + useEffect(() => { + if (skipCache) { + executeCheck.refetch(); + } + }, [skipCache]); + + const CheckButton = () => { + return ( + <> + + + + {showDetails && ( + + )} + + + {executeCheck.isSuccess && ( + <> + Last run{" "} + + + )} + + + + ); + }; + + return ( + <> + + {type} Check + + {importReport?.[type] && } + {cardIcon && {cardIcon}} + + + } + cardSx={{ + display: "flex", + flexDirection: "column", + height: "100%", + p: 0, + marginBottom: "auto", + }} + CardButton={} + > + {(executeCheck.isSuccess || executeCheck.isLoading) && ( + <> + {type === "Permissions" && ( + + )} + {type === "GDAP" && ( + + )} + {type === "Tenants" && } + + )} + + + ); +}; + +export default CippPermissionCheck; diff --git a/src/components/CippSettings/CippPermissionReport.jsx b/src/components/CippSettings/CippPermissionReport.jsx new file mode 100644 index 000000000000..0228445140b4 --- /dev/null +++ b/src/components/CippSettings/CippPermissionReport.jsx @@ -0,0 +1,241 @@ +import { Button, Stack, SvgIcon, Tooltip } from "@mui/material"; +import { Close, FileDownload, FileUpload } from "@mui/icons-material"; +import { ApiGetCall } from "../../api/ApiCall"; +import { useDialog } from "../../hooks/use-dialog"; +import { CippApiDialog } from "../CippComponents/CippApiDialog"; +import { useState } from "react"; + +export const CippPermissionReport = (props) => { + const { importReport, setImportReport } = props; + const [importError, setImportError] = useState(false); + const [currentFile, setCurrentFile] = useState(null); + const createDialog = useDialog(); + const permissionReport = ApiGetCall({ + url: "/api/ExecAccessChecks", + data: { Type: "Permissions" }, + queryKey: "ExecAccessChecks-Permissions", + waiting: false, + }); + + const gdapReport = ApiGetCall({ + url: "/api/ExecAccessChecks", + data: { Type: "GDAP" }, + queryKey: "ExecAccessChecks-GDAP", + waiting: false, + }); + + const tenantReport = ApiGetCall({ + url: "/api/ExecAccessChecks", + data: { Type: "Tenants" }, + queryKey: "ExecAccessChecks-Tenants", + waiting: false, + }); + + const redactString = (str) => { + const isGuid = + /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.test(str); + if (isGuid) { + const parts = str.split("-"); + return parts + .map((part, index) => (index === parts.length - 1 ? part : "*".repeat(part.length))) + .join("-"); + } else { + if (typeof str !== "string") return str; + if (str.length <= 9) return "*".repeat(str.length); + const start = str.slice(0, 3); + const end = str.slice(-3); + const middle = "*".repeat(6); + return `${start}${middle}${end}`; + } + }; + + const handleExportReport = (row, action, formData) => { + permissionReport.waiting = true; + gdapReport.waiting = true; + tenantReport.waiting = true; + const report = { + Permissions: permissionReport.data, + GDAP: gdapReport.data, + Tenants: tenantReport.data, + }; + + const customerProps = [ + "AppId", + "CustomerId", + "Tenant", + "TenantName", + "TenantId", + "DisplayName", + "DefaultDomainName", + "UserPrincipalName", + "IPAddress", + "GDAPRoles", + ]; + + if (formData.redactCustomerData) { + report.Tenants.Results = report?.Tenants?.Results?.map((tenant) => { + customerProps.forEach((prop) => { + if (tenant[prop]) { + if (prop === "GDAPRoles") { + tenant[prop] = tenant[prop].map((role) => { + if (Array.isArray(role.Group)) { + role.Group = role.Group.map((group) => group.split("@")[0]); + } else { + role.Group = role.Group.split("@")[0]; + } + return role; + }); + } else { + tenant[prop] = redactString(tenant[prop]); + } + } + }); + return tenant; + }); + + report?.GDAP?.Results?.GDAPIssues?.map((issue) => { + customerProps.forEach((prop) => { + if (issue[prop]) { + issue[prop] = redactString(issue[prop]); + } + }); + return issue; + }); + + report?.Permissions?.Results?.CPVRefreshList?.map((cpv) => { + customerProps.forEach((prop) => { + if (cpv[prop]) { + cpv[prop] = redactString(cpv[prop]); + } + }); + return cpv; + }); + + customerProps.forEach((prop) => { + if (report?.Permissions?.Results?.AccessTokenDetails?.[prop]) { + report.Permissions.Results.AccessTokenDetails[prop] = redactString( + report.Permissions.Results.AccessTokenDetails[prop] + ); + } + }); + } + + const json = JSON.stringify(report); + const blob = new Blob([json], { type: "application/json" }); + const url = URL.createObjectURL(blob); + const a = document.createElement("a"); + a.href = url; + a.download = "cipp-permission-report.json"; + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + URL.revokeObjectURL(url); + }; + + const handleImportReport = (e) => { + const file = e.target.files[0]; + + const reader = new FileReader(); + reader.onload = (e) => { + const report = JSON.parse(e.target.result); + + if (!report.Permissions || !report.GDAP || !report.Tenants) { + setImportError("Invalid report format"); + return; + } + setCurrentFile(file); + setImportReport(report); + setImportError(false); + }; + reader.readAsText(file); + e.target.value = null; + }; + + return ( + <> + + + + {importReport && ( + + + + )} + {importError && ( + + )} + + + + ); +}; diff --git a/src/components/CippSettings/CippPermissionResults.jsx b/src/components/CippSettings/CippPermissionResults.jsx new file mode 100644 index 000000000000..57745d6d6760 --- /dev/null +++ b/src/components/CippSettings/CippPermissionResults.jsx @@ -0,0 +1,239 @@ +import { Button, Link, List, ListItem, Skeleton, SvgIcon, Typography } from "@mui/material"; +import { Cancel, CheckCircle } from "@mui/icons-material"; +import { CippPropertyList } from "/src/components/CippComponents/CippPropertyList"; +import { WrenchIcon, XMarkIcon } from "@heroicons/react/24/outline"; +import { CippOffCanvas } from "../CippComponents/CippOffCanvas"; +import { CippPropertyListCard } from "../CippCards/CippPropertyListCard"; +import { CippDataTable } from "/src/components/CippTable/CippDataTable"; +import { ApiPostCall } from "../../api/ApiCall"; +import { CippApiResults } from "../CippComponents/CippApiResults"; +import { useEffect, useState } from "react"; + +export const CippPermissionResults = (props) => { + const { + executeCheck, + setSkipCache, + offcanvasVisible, + setOffcanvasVisible, + importReport, + setCardIcon, + } = props; + const [results, setResults] = useState({}); + + useEffect(() => { + if (importReport) { + setResults(importReport); + } else { + setResults(executeCheck?.data); + } + }, [executeCheck, importReport]); + + useEffect(() => { + if ( + results?.Results?.MissingPermissions?.length > 0 || + results?.Results?.ErrorMessages?.length > 0 + ) { + setCardIcon(); + } else { + setCardIcon(); + } + }, [results]); + + const accessTokenHeaders = ["Name", "UserPrincipalName", "IPAddress"]; + + const addMissingPermissions = ApiPostCall({ + urlFromData: true, + relatedQueryKeys: ["ExecAccessChecks-Permissions"], + }); + + const startCPVRefresh = ApiPostCall({ + urlFromData: true, + relatedQueryKeys: ["ExecAccessChecks-Permissions"], + }); + + const handleAddMissingPermissions = (data) => { + setSkipCache(true); + addMissingPermissions.mutate({ + url: "/api/ExecPermissionRepair", + data: {}, + queryKey: "RepairPermissions", + }); + }; + + const handleStartCPVRefresh = () => { + startCPVRefresh.mutate({ + url: "/api/ExecCPVRefresh", + data: {}, + queryKey: "CPVRefresh", + }); + }; + + var propertyItems = []; + accessTokenHeaders.forEach((header) => { + propertyItems.push({ + label: header, + value: results?.Results?.AccessTokenDetails?.[header], + }); + }); + propertyItems.push({ + label: "App Registration", + value: ( + + {results?.Results?.AccessTokenDetails?.AppName} + + ), + }); + + return ( + <> + {propertyItems.length > 0 && ( + + )} + {executeCheck.isFetching ? ( + + ) : ( + <> + + {results?.Results?.Messages.map((message, index) => ( + + + + + + {message} + + + ))} + {results?.Results?.ErrorMessages.map((error, index) => ( + + + + + + {error} + + + ))} + {results?.Results?.MissingPermissions.length > 0 && ( + + + + + + There are new permissions to apply. + + + )} + + + { + setOffcanvasVisible(false); + }} + extendedInfo={[]} + > + + Permission Details + + {results?.Results?.Links.length > 0 && ( + { + return { + value: ( + + {link.Href} + + ), + label: link.Text, + }; + })} + /> + )} + + {results?.Results?.MissingPermissions.length > 0 && ( + <> + + + + } + > + Repair Permissions + + } + data={results?.Results?.MissingPermissions} + simpleColumns={["Application", "Type", "Permission"]} + /> + + )} + + {results?.Results?.CPVRefreshList?.length > 0 && ( + + + + } + > + Refresh CPV + + } + isFetching={executeCheck.isFetching} + refreshFunction={executeCheck} + data={results?.Results?.CPVRefreshList} + simpleColumns={["DisplayName", "DefaultDomainName", "LastRefresh"]} + /> + )} + + {results?.Results?.AccessTokenDetails?.Scope.length > 0 && ( + <> + { + return { + Scope: scope, + }; + })} + simpleColumns={["Scope"]} + /> + + )} + + + )} + + ); +}; diff --git a/src/components/CippSettings/CippTenantResults.jsx b/src/components/CippSettings/CippTenantResults.jsx new file mode 100644 index 000000000000..9483a07f7a2e --- /dev/null +++ b/src/components/CippSettings/CippTenantResults.jsx @@ -0,0 +1,80 @@ +import { CippDataTable } from "../CippTable/CippDataTable"; +import { Sync } from "@mui/icons-material"; + +export const CippTenantResults = (props) => { + const { importReport = false } = props; + return ( + <> + {importReport?.Results?.length > 0 && ( + <> + + + )} + {!importReport && ( + , + confirmText: "Execute the access check for the selected tenant(s)?", + relatedQueryKeys: "ExecAccessChecks-Tenants", + multiPost: false, + }, + ]} + simpleColumns={[ + "TenantName", + "LastRun", + "GraphStatus", + "ExchangeStatus", + "MissingRoles", + "GDAPRoles", + ]} + offCanvas={{ + extendedInfoFields: [ + "TenantName", + "TenantId", + "DefaultDomainName", + "LastRun", + "GraphTest", + "ExchangeTest", + ], + }} + /> + )} + + ); +}; diff --git a/src/components/CippSettings/CippVersionProperties.jsx b/src/components/CippSettings/CippVersionProperties.jsx new file mode 100644 index 000000000000..dca288ede4dd --- /dev/null +++ b/src/components/CippSettings/CippVersionProperties.jsx @@ -0,0 +1,81 @@ +import { Box, Button, Skeleton, SvgIcon } from "@mui/material"; +import { CippPropertyListCard } from "/src/components/CippCards/CippPropertyListCard"; +import { CheckCircle, SystemUpdateAlt, Warning } from "@mui/icons-material"; +import { ApiGetCall } from "/src/api/ApiCall"; +import { useEffect } from "react"; + +const CippVersionProperties = () => { + const version = ApiGetCall({ + url: "/version.json", + queryKey: "LocalVersion", + }); + + const cippVersion = ApiGetCall({ + url: `/api/GetVersion?LocalVersion=${version?.data?.version}`, + queryKey: "CippVersion", + waiting: false, + }); + + useEffect(() => { + if (version.isFetched && !cippVersion.isFetched) { + cippVersion.waiting = true; + cippVersion.refetch(); + } + }, [version, cippVersion]); + + const CippVersionComponent = (version, availableVersion, outOfDate) => { + return ( + + + {outOfDate === true ? : } + + v{version}{" "} + {outOfDate === true ? `(v${availableVersion} is available)` : ""} + + ); + }; + return ( + { + version.refetch(); + cippVersion.refetch(); + }} + > + + + + Check For Updates + + } + title="Version" + isFetching={cippVersion.isFetching} + cardSx={{ display: "flex", flexDirection: "column", height: "100%", width: "100%" }} + propertyItems={[ + { + label: "Frontend", + value: CippVersionComponent( + version?.data?.version, + cippVersion?.data?.RemoteCIPPVersion, + cippVersion?.data?.OutOfDateCIPP + ), + }, + { + label: "Backend", + value: CippVersionComponent( + cippVersion?.data?.LocalCIPPAPIVersion, + cippVersion?.data?.RemoteCIPPAPIVersion, + cippVersion?.data?.OutOfDateCIPPAPI + ), + }, + ]} + /> + ); +}; + +export default CippVersionProperties; diff --git a/src/components/CippStandards/CippStandardAccordion.jsx b/src/components/CippStandards/CippStandardAccordion.jsx new file mode 100644 index 000000000000..c0e8589212e2 --- /dev/null +++ b/src/components/CippStandards/CippStandardAccordion.jsx @@ -0,0 +1,244 @@ +import React, { useEffect, useState, useMemo } from "react"; +import { + Card, + Stack, + Avatar, + Box, + Typography, + IconButton, + SvgIcon, + Collapse, + Divider, + Grid, + Tooltip, + Chip, +} from "@mui/material"; +import { ExpandMore as ExpandMoreIcon, Delete, Add, Public, TableChart } from "@mui/icons-material"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { useWatch } from "react-hook-form"; +import _ from "lodash"; +import Microsoft from "../../icons/iconly/bulk/microsoft"; +import Azure from "../../icons/iconly/bulk/azure"; +import Exchange from "../../icons/iconly/bulk/exchange"; +import Defender from "../../icons/iconly/bulk/defender"; +import Intune from "../../icons/iconly/bulk/intune"; +import GDAPRoles from "/src/data/GDAPRoles"; +import timezoneList from "/src/data/timezoneList"; + +const getAvailableActions = (disabledFeatures) => { + const allActions = [ + { label: "Report", value: "Report" }, + { label: "Alert", value: "warn" }, + { label: "Remediate", value: "Remediate" }, + ]; + return allActions.filter((action) => !disabledFeatures?.[action.value.toLowerCase()]); +}; + +const CippAddedComponent = React.memo(({ standardName, component, formControl }) => { + const updatedComponent = { ...component }; + + if (component.type === "AdminRolesMultiSelect") { + updatedComponent.type = "autoComplete"; + updatedComponent.options = GDAPRoles.map((role) => ({ + label: role.Name, + value: role.ObjectId, + })); + } else if (component.type === "TimezoneSelect") { + updatedComponent.type = "autoComplete"; + updatedComponent.options = timezoneList.map((tz) => ({ + label: tz.timezone, + value: tz.timezone, + })); + } else { + updatedComponent.type = component.type; + } + + return ( + + + + ); +}); +CippAddedComponent.displayName = "CippAddedComponent"; + +const CippStandardAccordion = ({ + standards, + selectedStandards, + expanded, + handleAccordionToggle, + handleRemoveStandard, + handleAddMultipleStandard, + formControl, +}) => { + const [configuredState, setConfiguredState] = useState({}); + + const watchedValues = useWatch({ + control: formControl.control, + }); + + useEffect(() => { + const newConfiguredState = { ...configuredState }; + + Object.keys(selectedStandards).forEach((standardName) => { + const standard = standards.find((s) => s.name === standardName.split("[")[0]); + if (standard) { + const actionFilled = !!_.get(watchedValues, `${standardName}.action`, false); + + const addedComponentsFilled = + standard.addedComponent?.every((component) => { + const isRequired = component.required !== false && component.type !== "switch"; + if (!isRequired) return true; + return !!_.get(watchedValues, `${standardName}.${component.name}`); + }) ?? true; + + const isConfigured = actionFilled && addedComponentsFilled; + + // Only update state if there's a change to reduce unnecessary re-renders. + if (newConfiguredState[standardName] !== isConfigured) { + newConfiguredState[standardName] = isConfigured; + } + } + }); + + if (!_.isEqual(newConfiguredState, configuredState)) { + setConfiguredState(newConfiguredState); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [watchedValues, standards, selectedStandards]); + + return Object.keys(selectedStandards)?.map((standardName) => { + const standard = standards.find((s) => s.name === standardName.split("[")[0]); + if (!standard) return null; + + const isExpanded = expanded === standardName; + const hasAddedComponents = standard.addedComponent && standard.addedComponent.length > 0; + const isConfigured = configuredState[standardName]; + const disabledFeatures = standard.disabledFeatures || {}; + + let selectedActions = _.get(watchedValues, `${standardName}.action`); + //if selectedActions is not an array, convert it to an array + if (selectedActions && !Array.isArray(selectedActions)) { + selectedActions = [selectedActions]; + } + + const selectedTemplateName = standard.multiple + ? _.get(watchedValues, `${standardName}.${standard.addedComponent?.[0]?.name}`) + : ""; + const accordionTitle = selectedTemplateName + ? `${standard.label} - ${selectedTemplateName.label}` + : standard.label; + + return ( + + + + + {standard.cat === "Global Standards" ? ( + + ) : standard.cat === "Entra (AAD) Standards" ? ( + + ) : standard.cat === "Exchange Standards" ? ( + + ) : standard.cat === "Defender Standards" ? ( + + ) : standard.cat === "Intune Standards" ? ( + + ) : ( + + )} + + + {accordionTitle} + {selectedActions && selectedActions?.length > 0 && ( + + {selectedActions?.map((action, index) => ( + + ))} + + )} + + {standard.helpText} + + + + + {standard.multiple && ( + + handleAddMultipleStandard(standardName)}> + + + + )} + + {isConfigured ? "Configured" : "Unconfigured"} + handleRemoveStandard(standardName)}> + + + + handleAccordionToggle(standardName)}> + + + + + + + + + + + + + + {hasAddedComponents && ( + + + {standard.addedComponent?.map((component, idx) => ( + + ))} + + + )} + + + + + ); + }); +}; + +export default CippStandardAccordion; diff --git a/src/components/CippStandards/CippStandardDialog.jsx b/src/components/CippStandards/CippStandardDialog.jsx new file mode 100644 index 000000000000..2fb081155944 --- /dev/null +++ b/src/components/CippStandards/CippStandardDialog.jsx @@ -0,0 +1,177 @@ +import { + Dialog, + DialogActions, + DialogContent, + DialogTitle, + TextField, + Grid, + Card, + CardContent, + Typography, + Chip, + Box, + FormControlLabel, + Switch, + Button, + IconButton, +} from "@mui/material"; +import { Add } from "@mui/icons-material"; +import { useState, useCallback } from "react"; +import { debounce } from "lodash"; + +const CippStandardDialog = ({ + dialogOpen, + handleCloseDialog, + setSearchQuery, + categories, + filterStandards, + selectedStandards, + handleToggleSingleStandard, + handleAddMultipleStandard, +}) => { + const [isButtonDisabled, setButtonDisabled] = useState(false); + + const handleAddClick = (standardName) => { + setButtonDisabled(true); + handleAddMultipleStandard(standardName); + + setTimeout(() => { + setButtonDisabled(false); + }, 100); + }; + + const handleSearchQueryChange = useCallback( + debounce((query) => { + setSearchQuery(query); + }, 50), + [] + ); + + return ( + + Select a Standard to Add + + handleSearchQueryChange(e.target.value.toLowerCase())} + /> + + {Object.keys(categories).map((category) => + filterStandards(categories[category]).map((standard) => ( + + + + + {standard.label} + + {standard.helpText && ( + <> + + Description: + + + {standard.helpText} + + + )} + + Category: + + + {standard.tag?.filter((tag) => !tag.toLowerCase().includes("impact")).length > + 0 && ( + <> + + Tags: + + + {standard.tag + .filter((tag) => !tag.toLowerCase().includes("impact")) + .map((tag, idx) => ( + + ))} + + + )} + + Impact: + + + {standard.recommendedBy?.length > 0 && ( + <> + + Recommended By: + + + {standard.recommendedBy.join(", ")} + + + )} + + + + {standard.multiple ? ( + handleAddClick(standard.name)} + > + + + ) : ( + handleToggleSingleStandard(standard.name)} + /> + } + label="Add this standard to the template" + /> + )} + + + + )) + )} + + + + + + + ); +}; + +export default CippStandardDialog; diff --git a/src/components/CippStandards/CippStandardsSideBar.jsx b/src/components/CippStandards/CippStandardsSideBar.jsx new file mode 100644 index 000000000000..43a827138a09 --- /dev/null +++ b/src/components/CippStandards/CippStandardsSideBar.jsx @@ -0,0 +1,252 @@ +import PropTypes from "prop-types"; +import { + Card, + CardContent, + CardHeader, + Divider, + formControlLabelClasses, + Stack, + SvgIcon, + Typography, +} from "@mui/material"; +import { styled } from "@mui/material/styles"; +import { + Timeline, + TimelineConnector, + TimelineContent, + TimelineDot, + TimelineItem, + timelineItemClasses, + TimelineSeparator, +} from "@mui/lab"; +import { ActionList } from "/src/components/action-list"; +import { ActionListItem } from "/src/components/action-list-item"; +import CheckIcon from "@heroicons/react/24/outline/CheckIcon"; +import CloseIcon from "@mui/icons-material/Close"; +import { useWatch } from "react-hook-form"; +import { useEffect, useState } from "react"; +import _ from "lodash"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { CippFormTenantSelector } from "../CippComponents/CippFormTenantSelector"; +import { CippApiDialog } from "../CippComponents/CippApiDialog"; +import ReactTimeAgo from "react-time-ago"; + +const StyledTimelineDot = (props) => { + const { complete } = props; + + return ( + + {complete ? : } + + ); +}; + +const StyledTimelineConnector = styled(TimelineConnector)(({ theme }) => ({ + backgroundColor: + theme.palette.mode === "dark" ? theme.palette.neutral[800] : theme.palette.neutral[200], + height: 24, +})); + +const StyledTimelineContent = styled(TimelineContent)(({ theme }) => ({ + padding: "14px 16px", + ...theme.typography.overline, +})); + +const CippStandardsSideBar = ({ + title, + selectedStandards, + steps, + actions, + updatedAt, + formControl, + createDialog, + edit, +}) => { + const [currentStep, setCurrentStep] = useState(0); + + const watchForm = useWatch({ control: formControl.control }); + + useEffect(() => { + const stepsStatus = { + step1: !!watchForm.templateName, + step2: watchForm.tenantFilter && watchForm.tenantFilter.length > 0, + step3: Object.keys(selectedStandards).length > 0, + step4: + watchForm.standards && + Object.keys(selectedStandards).length > 0 && + Object.keys(selectedStandards).every((standardName) => { + const standardValues = _.get(watchForm, `${standardName}`, {}); + return standardValues.action; + }), + }; + + const completedSteps = Object.values(stepsStatus).filter(Boolean).length; + setCurrentStep(completedSteps); + }, [selectedStandards, watchForm]); + + const stepsStatus = { + step1: !!watchForm.templateName, + step2: watchForm.tenantFilter && watchForm.tenantFilter.length > 0, + step3: Object.keys(selectedStandards).length > 0, + step4: + watchForm.standards && + Object.keys(selectedStandards).length > 0 && + Object.keys(selectedStandards).every((standardName) => { + const standardValues = _.get(watchForm, `${standardName}`, {}); + return standardValues.action; + }), + }; + return ( + + + + + + + + + {watchForm.tenantFilter?.some((tenant) => tenant.value === "AllTenants") && ( + <> + + + + )} + {updatedAt.date && ( + <> + + Last Updated by {updatedAt?.user} + + + )} + + + This setting allows you to create this template and run it only by using "Run Now". + + + + + + + {steps.map((step, index) => ( + + + + {index < steps.length - 1 && } + + {step} + + ))} + + + + + {actions.map((action, index) => ( + {action.icon}} + label={action.label} + onClick={action.handler} + disabled={ + !(watchForm.tenantFilter && watchForm.tenantFilter.length > 0) || currentStep < 3 + } + /> + ))} + + + + + ); +}; + +CippStandardsSideBar.propTypes = { + title: PropTypes.string.isRequired, + subtitle: PropTypes.string, + steps: PropTypes.arrayOf(PropTypes.string).isRequired, + actions: PropTypes.arrayOf( + PropTypes.shape({ + label: PropTypes.string.isRequired, + handler: PropTypes.func.isRequired, + icon: PropTypes.element.isRequired, + }) + ).isRequired, + updatedAt: PropTypes.string, + formControl: PropTypes.object.isRequired, +}; + +export default CippStandardsSideBar; diff --git a/src/components/CippTable/CIPPTableToptoolbar.js b/src/components/CippTable/CIPPTableToptoolbar.js new file mode 100644 index 000000000000..92ee885a364c --- /dev/null +++ b/src/components/CippTable/CIPPTableToptoolbar.js @@ -0,0 +1,527 @@ +import { DeveloperMode, Sync, Tune, ViewColumn } from "@mui/icons-material"; +import { + Button, + Checkbox, + Divider, + IconButton, + ListItemText, + Menu, + MenuItem, + SvgIcon, + Tooltip, + Typography, +} from "@mui/material"; +import { Box, Stack } from "@mui/system"; +import { MRT_GlobalFilterTextField, MRT_ToggleFiltersButton } from "material-react-table"; +import { PDFExportButton } from "../pdfExportButton"; +import { ChevronDownIcon, ExclamationCircleIcon } from "@heroicons/react/24/outline"; +import { usePopover } from "../../hooks/use-popover"; +import { CSVExportButton } from "../csvExportButton"; +import { useDialog } from "../../hooks/use-dialog"; +import { useEffect, useState } from "react"; +import { CippApiDialog } from "../CippComponents/CippApiDialog"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; +import { useSettings } from "../../hooks/use-settings"; +import { useRouter } from "next/router"; +import { CippOffCanvas } from "../CippComponents/CippOffCanvas"; +import { CippCodeBlock } from "../CippComponents/CippCodeBlock"; +import { ApiGetCall } from "../../api/ApiCall"; +import GraphExplorerPresets from "/src/data/GraphExplorerPresets.json"; +import CippGraphExplorerFilter from "./CippGraphExplorerFilter"; + +export const CIPPTableToptoolbar = ({ + api, + simpleColumns, + queryKey, + table, + getRequestData, + usedColumns, + usedData, + columnVisibility, + setColumnVisibility, + title, + actions, + filters = [], + exportEnabled, + refreshFunction, + queryKeys, + data, + setGraphFilterData, + setConfiguredSimpleColumns, +}) => { + const popover = usePopover(); + const columnPopover = usePopover(); + const filterPopover = usePopover(); + + const settings = useSettings(); + const router = useRouter(); + const createDialog = useDialog(); + const [actionData, setActionData] = useState({ data: {}, action: {}, ready: false }); + const [offcanvasVisible, setOffcanvasVisible] = useState(false); + const [filterList, setFilterList] = useState(filters); + const [originalSimpleColumns, setOriginalSimpleColumns] = useState(simpleColumns); + const [filterCanvasVisible, setFilterCanvasVisible] = useState(false); + const pageName = router.pathname.split("/").slice(1).join("/"); + const currentTenant = useSettings()?.currentTenant; + + //if the currentTenant Switches, remove Graph filters + useEffect(() => { + if (currentTenant) { + setGraphFilterData({}); + } + }, [currentTenant]); + + //useEffect to set the column visibility to the preferred columns if they exist + useEffect(() => { + if (settings?.columnDefaults?.[pageName]) { + setColumnVisibility(settings?.columnDefaults?.[pageName]); + } + }, [settings?.columnDefaults?.[pageName], router, usedColumns]); + + const presetList = ApiGetCall({ + url: "/api/ListGraphExplorerPresets", + queryKey: `ListGraphExplorerPresets${api?.data?.Endpoint ?? ""}`, + data: { + Endpoint: api?.data?.Endpoint ?? "", + }, + waiting: api?.data?.Endpoint ? true : false, + }); + + const resetToDefaultVisibility = () => { + setColumnVisibility({}); + settings.handleUpdate({ + columnDefaults: { + ...settings?.columnDefaults, + [pageName]: {}, + }, + }); + }; + + const resetToPreferedVisibility = () => { + if (settings?.columnDefaults?.[pageName]) { + setColumnVisibility(settings?.columnDefaults?.[pageName]); + } else { + setColumnVisibility((prevVisibility) => { + const updatedVisibility = {}; + for (const col in prevVisibility) { + updatedVisibility[col] = originalSimpleColumns.includes(col); + } + return updatedVisibility; + }); + } + }; + + const saveAsPreferedColumns = () => { + settings.handleUpdate({ + columnDefaults: { + ...settings?.columnDefaults, + [pageName]: columnVisibility, + }, + }); + }; + + const mergeCaseInsensitive = (obj1, obj2) => { + const merged = { ...obj1 }; + for (const key in obj2) { + const lowerCaseKey = key.toLowerCase(); + const existingKey = Object.keys(merged).find((k) => k.toLowerCase() === lowerCaseKey); + if (existingKey) { + merged[existingKey] = obj2[key]; + } else { + merged[key] = obj2[key]; + } + } + return merged; + }; + + const setTableFilter = (filter, filterType, filterName) => { + if (filterType === "global" || filterType === undefined) { + table.setGlobalFilter(filter); + } + if (filterType === "column") { + table.setShowColumnFilters(true); + table.setColumnFilters(filter); + } + if (filterType === "reset") { + table.resetGlobalFilter(); + table.resetColumnFilters(); + if (api?.data) { + setGraphFilterData({}); + resetToDefaultVisibility(); + } + } + if (filterType === "graph") { + const filterProps = [ + "$filter", + "$select", + "$expand", + "$orderby", + "$count", + "$search", + "ReverseTenantLookup", + "ReverseTenantLookupProperty", + "AsApp", + ]; + const graphFilter = filterProps.reduce((acc, prop) => { + if (filter[prop]) { + acc[prop] = filter[prop]; + } + return acc; + }, {}); + table.resetGlobalFilter(); + table.resetColumnFilters(); + //get api.data, merge with graphFilter, set api.data + setGraphFilterData({ + data: { ...mergeCaseInsensitive(api.data, graphFilter) }, + queryKey: `${queryKey ? queryKey : title}-${filterName}`, + }); + if (filter?.$select) { + let selectedColumns = []; + if (Array.isArray(filter?.$select)) { + selectedColumns = filter?.$select; + } else { + selectedColumns = filter?.$select.split(","); + } + const setNestedVisibility = (col) => { + if (typeof col === "object" && col !== null) { + Object.keys(col).forEach((key) => { + if (usedColumns.includes(key.trim())) { + setColumnVisibility((prev) => ({ ...prev, [key.trim()]: true })); + setNestedVisibility(col[key]); + } + }); + } else { + if (usedColumns.includes(col.trim())) { + setColumnVisibility((prev) => ({ ...prev, [col.trim()]: true })); + } + } + }; + if (selectedColumns.length > 0) { + setConfiguredSimpleColumns(selectedColumns); + selectedColumns.forEach((col) => { + setNestedVisibility(col); + }); + } + } + } + }; + + useEffect(() => { + if (api?.url === "/api/ListGraphRequest" && presetList.isSuccess) { + var endpoint = api?.data?.Endpoint?.replace(/^\//, ""); + var graphPresetList = []; + GraphExplorerPresets.map((preset) => { + var presetEndpoint = preset?.params?.endpoint?.replace(/^\//, ""); + if (presetEndpoint === endpoint) { + graphPresetList.push({ + filterName: preset?.name, + value: preset?.params, + type: "graph", + }); + } + }); + + presetList?.data?.Results?.map((preset) => { + var customPresetEndpoint = preset?.params?.endpoint?.replace(/^\//, ""); + if (customPresetEndpoint === endpoint) { + graphPresetList.push({ + filterName: preset?.name, + value: preset?.params, + type: "graph", + }); + } + }); + + // update filters to include graph explorer presets + setFilterList([...filters, ...graphPresetList]); + } + }, [presetList?.isSuccess]); + + return ( + <> + ({ + display: "flex", + gap: "0.5rem", + p: "8px", + justifyContent: "space-between", + })} + > + + <> + +
    { + if (typeof refreshFunction === "object") { + refreshFunction.refetch(); + } else if (typeof refreshFunction === "function") { + refreshFunction(); + } else if (data && !getRequestData.isFetched) { + //do nothing because data was sent native. + } else if (getRequestData) { + console.log(getRequestData); + getRequestData.refetch(); + } + }} + > + + + {getRequestData?.isFetchNextPageError ? ( + + ) : ( + + )} + + +
    +
    + + + + + + + + + + + setTableFilter("", "reset", "")}> + + + {api?.url === "/api/ListGraphRequest" && ( + { + filterPopover.handleClose(); + setFilterCanvasVisible(true); + }} + > + + + )} + + {filterList?.map((filter) => ( + { + filterPopover.handleClose(); + setTableFilter(filter.value, filter.type, filter.filterName); + }} + > + + + ))} + + + + + + + + + + + + + + + + + + {table + .getAllColumns() + .filter((column) => !column.id.startsWith("mrt-")) + .map((column) => ( + + setColumnVisibility({ + ...columnVisibility, + [column.id]: !column.getIsVisible(), + }) + } + > + + + + ))} + + {exportEnabled && ( + <> + + + + )} + + setOffcanvasVisible(true)}> + + + + { + setOffcanvasVisible(false); + }} + > + + API Response + + + + +
    + + + {actions && (table.getIsSomeRowsSelected() || table.getIsAllRowsSelected()) && ( + <> + + + {actions + ?.filter((action) => !action.link) + .map((action, index) => ( + { + setActionData({ + data: table.getSelectedRowModel().rows.map((row) => row.original), + action: action, + ready: true, + }); + + if (action?.noConfirm && action.customFunction) { + table + .getSelectedRowModel() + .rows.map((row) => + action.customFunction(row.original.original, action, {}) + ); + } else { + createDialog.handleOpen(); + popover.handleClose(); + } + }} + > + + {action.icon} + + {action.label} + + ))} + + + )} + + +
    + + {actionData.ready && ( + + )} + + setFilterCanvasVisible(false)} + > + { + setTableFilter(filter, "graph", "Custom Filter"); + setFilterCanvasVisible(false); + }} + component="card" + /> + + + ); +}; diff --git a/src/components/CippTable/CippDataTable.js b/src/components/CippTable/CippDataTable.js new file mode 100644 index 000000000000..64663b55d5eb --- /dev/null +++ b/src/components/CippTable/CippDataTable.js @@ -0,0 +1,346 @@ +import { MaterialReactTable, useMaterialReactTable } from "material-react-table"; +import { + Card, + CardContent, + CardHeader, + Divider, + ListItemIcon, + ListItemText, + MenuItem, + SvgIcon, +} from "@mui/material"; +import { ResourceUnavailable } from "../resource-unavailable"; +import { ResourceError } from "../resource-error"; +import { Scrollbar } from "../scrollbar"; +import React, { useEffect, useMemo, useState } from "react"; +import { ApiGetCallWithPagination } from "../../api/ApiCall"; +import { utilTableMode } from "./util-tablemode"; +import { utilColumnsFromAPI } from "./util-columnsFromAPI"; +import { CIPPTableToptoolbar } from "./CIPPTableToptoolbar"; +import { More, MoreHoriz } from "@mui/icons-material"; +import { CippOffCanvas } from "../CippComponents/CippOffCanvas"; +import { useDialog } from "../../hooks/use-dialog"; +import { CippApiDialog } from "../CippComponents/CippApiDialog"; +import { getCippError } from "../../utils/get-cipp-error"; + +export const CippDataTable = (props) => { + const { + queryKey, + data = [], + columns = [], + api = {}, + isFetching = false, + columnVisibility: initialColumnVisibility = { + id: false, + RowKey: false, + ETag: false, + PartitionKey: false, + Timestamp: false, + TableTimestamp: false, + }, + exportEnabled = true, + simpleColumns = [], + actions, + title = "Report", + simple = false, + cardButton, + offCanvas = false, + noCard = false, + refreshFunction, + incorrectDataMessage = "Data not in correct format", + onChange, + filters, + } = props; + const [columnVisibility, setColumnVisibility] = useState(initialColumnVisibility); + const [configuredSimpleColumns, setConfiguredSimpleColumns] = useState(simpleColumns); + const [usedData, setUsedData] = useState(data); + const [usedColumns, setUsedColumns] = useState([]); + const [offcanvasVisible, setOffcanvasVisible] = useState(false); + const [offCanvasData, setOffCanvasData] = useState({}); + const [actionData, setActionData] = useState({ data: {}, action: {}, ready: false }); + const [graphFilterData, setGraphFilterData] = useState({}); + const waitingBool = api?.url ? true : false; + const getRequestData = ApiGetCallWithPagination({ + url: api.url, + data: { ...api.data }, + queryKey: queryKey ? queryKey : title, + waiting: waitingBool, + ...graphFilterData, + }); + + useEffect(() => { + if (Array.isArray(data) && !api?.url) { + setUsedData(data); + } + }, [data, api?.url]); + + useEffect(() => { + if (getRequestData.isSuccess && !getRequestData.isFetching) { + const lastPage = getRequestData.data?.pages[getRequestData.data.pages.length - 1]; + const nextLinkExists = lastPage?.Metadata?.nextLink; + if (nextLinkExists) { + getRequestData.fetchNextPage(); + } + } + }, [getRequestData.data?.pages?.length, getRequestData.isFetching, queryKey]); + + useEffect(() => { + if (getRequestData.isSuccess) { + const allPages = getRequestData.data.pages; + const getNestedValue = (obj, path) => { + if (!path) { + return obj; + } + + const keys = path.split("."); + let result = obj; + for (const key of keys) { + if (result && typeof result === "object" && key in result) { + result = result[key]; + } else { + return undefined; + } + } + return result; + }; + + const combinedResults = allPages.flatMap((page) => { + const nestedData = getNestedValue(page, api.dataKey); + return nestedData !== undefined ? nestedData : []; + }); + setUsedData(combinedResults); + } + }, [ + getRequestData.isSuccess, + getRequestData.data, + api.dataKey, + getRequestData.isFetching, + queryKey, + ]); + useEffect(() => { + if (!Array.isArray(usedData) || usedData.length === 0 || typeof usedData[0] !== "object") { + return; + } + const apiColumns = utilColumnsFromAPI(usedData); + let finalColumns = []; + let newVisibility = { ...columnVisibility }; + + if (columns.length === 0 && configuredSimpleColumns.length === 0) { + finalColumns = apiColumns; + apiColumns.forEach((col) => { + newVisibility[col.id] = true; + }); + } else if (configuredSimpleColumns.length > 0) { + finalColumns = apiColumns.map((col) => { + newVisibility[col.id] = configuredSimpleColumns.includes(col.id); + return col; + }); + } else { + const providedColumnKeys = new Set(columns.map((col) => col.id || col.header)); + finalColumns = [...columns, ...apiColumns.filter((col) => !providedColumnKeys.has(col.id))]; + finalColumns.forEach((col) => { + newVisibility[col.accessorKey] = providedColumnKeys.has(col.id); + }); + } + setUsedColumns(finalColumns); + setColumnVisibility(newVisibility); + }, [columns.length, usedData.length, queryKey]); + + const createDialog = useDialog(); + + // Apply the modeInfo directly + const [modeInfo] = useState( + utilTableMode(columnVisibility, simple, actions, configuredSimpleColumns, offCanvas, onChange) + ); + //create memoized version of usedColumns, and usedData + const memoizedColumns = useMemo(() => usedColumns, [usedColumns]); + const memoizedData = useMemo(() => usedData, [usedData]); + + const table = useMaterialReactTable({ + mrtTheme: (theme) => ({ + baseBackgroundColor: theme.palette.background.paper, + }), + + columns: memoizedColumns, + data: memoizedData, + state: { + columnVisibility, + showSkeletons: getRequestData.isFetching ? getRequestData.isFetching : isFetching, + }, + renderEmptyRowsFallback: ({ table }) => + getRequestData.data?.pages?.[0].Metadata?.QueueMessage ? ( +
    {getRequestData.data?.pages?.[0].Metadata?.QueueMessage}
    + ) : undefined, + onColumnVisibilityChange: setColumnVisibility, + ...modeInfo, + + renderRowActionMenuItems: actions + ? ({ closeMenu, row }) => [ + actions.map((action, index) => ( + { + setActionData({ + data: row.original, + action: action, + ready: true, + }); + if (action.noConfirm && action.customFunction) { + action.customFunction(row.original, action, {}); + closeMenu(); + return; + } else { + createDialog.handleOpen(); + closeMenu(); + } + }} + > + + {action.icon} + + {action.label} + + )), + offCanvas && ( + { + closeMenu(); + setOffCanvasData(row.original); + setOffcanvasVisible(true); + }} + > + + + + More Info + + ), + ] + : offCanvas && ( + { + closeMenu(); + setOffCanvasData(row.original); + setOffcanvasVisible(true); + }} + > + + + + More Info + + ), + renderTopToolbar: ({ table }) => { + return ( + <> + {!simple && ( + + )} + + ); + }, + }); + + useEffect(() => { + if (onChange && table.getSelectedRowModel().rows) { + onChange(table.getSelectedRowModel().rows.map((row) => row.original)); + } + }, [table.getSelectedRowModel().rows]); + + return ( + <> + {noCard ? ( + + {!Array.isArray(usedData) && usedData ? ( + + ) : ( + <> + {(getRequestData.isSuccess || getRequestData.data?.pages.length >= 0 || data) && ( + + )} + + )} + {getRequestData.isError && !getRequestData.isFetchNextPageError && ( + getRequestData.refetch()} + message={`Error Loading data: ${getCippError(getRequestData.error)}`} + /> + )} + + ) : ( + // Render the table inside a Card + + + + + + {!Array.isArray(usedData) && usedData ? ( + + ) : ( + <> + {(getRequestData.isSuccess || + getRequestData.data?.pages.length >= 0 || + (data && !getRequestData.isError)) && ( + + )} + + )} + {getRequestData.isError && !getRequestData.isFetchNextPageError && ( + getRequestData.refetch()} + message={`Error Loading data: ${getCippError(getRequestData.error)}`} + /> + )} + + + + )} + setOffcanvasVisible(false)} + extendedData={offCanvasData} + extendedInfoFields={offCanvas?.extendedInfoFields} + actions={actions} + children={offCanvas?.children} + customComponent={offCanvas?.customComponent} + {...offCanvas} + /> + {actionData.ready && ( + + )} + + ); +}; diff --git a/src/components/CippTable/CippDataTableButton.jsx b/src/components/CippTable/CippDataTableButton.jsx new file mode 100644 index 000000000000..f0b1dc345551 --- /dev/null +++ b/src/components/CippTable/CippDataTableButton.jsx @@ -0,0 +1,70 @@ +import React, { useState } from "react"; +import { Dialog, DialogContent, Button } from "@mui/material"; +import { CippDataTable } from "./CippDataTable"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; +const CippDataTableButton = ({ data, title, tableTitle = "Data" }) => { + const [openDialogs, setOpenDialogs] = useState([]); + + const handleOpenDialog = () => { + let dataArray; + + if (Array.isArray(data)) { + dataArray = data; + } else if (typeof data === "object" && data !== null) { + dataArray = Object.keys(data).map((key) => ({ + key: getCippTranslation(key), + value: data[key], + })); + } else { + dataArray = [data]; + } + setOpenDialogs([...openDialogs, dataArray]); + }; + + const handleCloseDialog = (index) => { + setOpenDialogs(openDialogs.filter((_, i) => i !== index)); + }; + const dataIsNotANullArray = + !Array.isArray(data) && + (typeof data !== "object" || data === null || Object.keys(data).length === 0); + const dataLength = Array.isArray(data) + ? data.length + : typeof data === "object" && data !== null + ? Object.keys(data).length + : 0; + + return ( + <> + + + {openDialogs.map((dialogData, index) => ( + handleCloseDialog(index)} + fullWidth + maxWidth="lg" + > + + + + + ))} + + ); +}; + +export default CippDataTableButton; diff --git a/src/components/CippTable/CippGraphExplorerFilter.js b/src/components/CippTable/CippGraphExplorerFilter.js new file mode 100644 index 000000000000..47a2646587b5 --- /dev/null +++ b/src/components/CippTable/CippGraphExplorerFilter.js @@ -0,0 +1,736 @@ +import React, { useState, useEffect, useCallback } from "react"; +import { Button, Typography } from "@mui/material"; +import { + Save as SaveIcon, + Delete, + CalendarMonthTwoTone, + CopyAll, + ImportExport, + PlayCircle, +} from "@mui/icons-material"; +import { useForm, useWatch } from "react-hook-form"; +import { debounce } from "lodash"; +import CippButtonCard from "/src/components/CippCards/CippButtonCard"; +import CippFormComponent from "/src/components/CippComponents/CippFormComponent"; +import { ApiGetCall, ApiPostCall } from "../../api/ApiCall"; +import { useSettings } from "../../hooks/use-settings"; +import { CippApiResults } from "../CippComponents/CippApiResults"; +import { CippFormCondition } from "../CippComponents/CippFormCondition"; +import { CippOffCanvas } from "../CippComponents/CippOffCanvas"; +import { CippCodeBlock } from "../CippComponents/CippCodeBlock"; +import CippSchedulerForm from "../CippFormPages/CippSchedulerForm"; +import defaultPresets from "../../data/GraphExplorerPresets"; +import { lighten, darken, styled, Grid, Stack } from "@mui/system"; + +const GroupHeader = styled("div")(({ theme }) => ({ + position: "sticky", + top: "-8px", + padding: "4px 10px", + color: theme.palette.primary.main, + backgroundColor: lighten(theme.palette.primary.light, 0.85), + ...theme.applyStyles("dark", { + backgroundColor: darken(theme.palette.primary.main, 0.8), + }), +})); + +const GroupItems = styled("ul")({ + padding: 0, +}); + +const CippGraphExplorerFilter = ({ + endpointFilter, + onSubmitFilter, + onPresetChange, + component = "accordion", +}) => { + const [offCanvasOpen, setOffCanvasOpen] = useState(false); + const [cardExpanded, setCardExpanded] = useState(true); + const [offCanvasContent, setOffCanvasContent] = useState(null); + const [selectedPresetState, setSelectedPreset] = useState(null); + const [presetOwner, setPresetOwner] = useState(false); + const [lastPresetTitle, setLastPresetTitle] = useState(null); + const [presetOptions, setPresetOptions] = useState([]); + const formControl = useForm({ + mode: "onChange", + defaultValues: { + endpoint: "", + $select: [], + $filter: "", + $expand: "", + $top: "", + $search: "", + $format: "", + NoPagination: false, + ReverseTenantLookup: false, + ReverseTenantLookupProperty: "tenantId", + $count: false, + manualPagination: false, + IsShared: false, + }, + }); + + const defaultGraphExplorerTitle = "Graph Explorer"; + + var gridItemSize = 6; + if (component !== "accordion") { + gridItemSize = 12; + } + + var gridSwitchSize = 3; + if (component !== "accordion") { + gridSwitchSize = 12; + } + + const { control, handleSubmit } = formControl; + const tenant = useSettings().currentTenant; + const endpoint = useWatch({ control, name: "endpoint" }); + + // API call for available properties + const propertyList = ApiGetCall({ + url: "/api/ListGraphRequest", + queryKey: `graph-properties-${endpoint}`, + data: { + Endpoint: endpoint, + ListProperties: true, + TenantFilter: tenant, + IgnoreErrors: true, + }, + waiting: false, + }); + + var presetFilter = {}; + if (endpointFilter) { + if (formControl.getValues("endpoint") !== endpointFilter) { + formControl.setValue("endpoint", endpointFilter); + } + presetFilter = { Endpoint: endpointFilter }; + } + + // API call for available presets + const presetList = ApiGetCall({ + url: "/api/ListGraphExplorerPresets", + queryKey: "ListGraphExplorerPresets", + data: presetFilter, + }); + + useEffect(() => { + var presetOptionList = []; + const normalizeEndpoint = (endpoint) => endpoint.replace(/^\//, ""); + defaultPresets + .filter( + (item) => + !endpointFilter || + normalizeEndpoint(item.params.endpoint) === normalizeEndpoint(endpointFilter) + ) + .forEach((item) => { + presetOptionList.push({ + label: item.name, + value: item.id, + addedFields: item, + type: "Built-In", + }); + }); + if (presetList.isSuccess && presetList.data?.Results.length > 0) { + presetList.data.Results.forEach((item) => { + presetOptionList.push({ + label: item.name, + value: item.id, + addedFields: item, + type: "Custom", + }); + }); + } + setPresetOptions(presetOptionList); + }, [defaultPresets, presetList.isSuccess]); + + // Debounced refetch when endpoint, put in in a useEffect dependand on endpoint + const debouncedRefetch = useCallback( + debounce(() => { + if (endpoint) { + propertyList.refetch(); + } + }, 1000), + [endpoint] // Dependencies that the debounce function depends on + ); + + useEffect(() => { + debouncedRefetch(); + // Clean up the debounce on unmount + return () => { + debouncedRefetch.cancel(); + }; + }, [endpoint, debouncedRefetch]); + + const savePresetApi = ApiPostCall({ + relatedQueryKeys: "ListGraphExplorerPresets", + }); + + // Save preset function + const handleSavePreset = () => { + const currentTemplate = formControl.getValues(); + if (!presetOwner && currentTemplate?.id) { + delete currentTemplate.id; + } + savePresetApi.mutate({ + url: "/api/ExecGraphExplorerPreset", + data: { action: presetOwner ? "Save" : "Copy", preset: currentTemplate }, + }); + }; + + const selectedPresets = useWatch({ control, name: "reportTemplate" }); + useEffect(() => { + if (selectedPresets?.addedFields?.params) { + setPresetOwner(selectedPresets?.addedFields?.IsMyPreset ?? false); + Object.keys(selectedPresets.addedFields.params).forEach( + (key) => + selectedPresets.addedFields.params[key] == null && + delete selectedPresets.addedFields.params[key] + ); + //if $select is a blank array, set it to a string. + if ( + selectedPresets.addedFields.params.$select && + selectedPresets.addedFields.params.$select.length === 0 + ) { + selectedPresets.addedFields.params.$select = ""; + } + + // if $select is an array, extract the values and comma separate + if ( + Array.isArray(selectedPresets.addedFields.params.$select) && + selectedPresets.addedFields.params.$select.length > 0 + ) { + selectedPresets.addedFields.params.$select = selectedPresets.addedFields.params.$select + .map((item) => item.value) + .join(","); + } + selectedPresets.addedFields.params.$select !== "" + ? (selectedPresets.addedFields.params.$select = selectedPresets.addedFields.params?.$select + ?.split(",") + .map((item) => ({ label: item, value: item }))) + : (selectedPresets.addedFields.params.$select = []); + selectedPresets.addedFields.params.id = selectedPresets.value; + setSelectedPreset(selectedPresets.value); + selectedPresets.addedFields.params.name = selectedPresets.label; + + // save last preset title + setLastPresetTitle(selectedPresets.label); + formControl.reset(selectedPresets?.addedFields?.params, { keepDefaultValues: true }); + } + }, [selectedPresets]); + + const schedulerForm = useForm({ + mode: "onChange", + }); + + const schedulerCommand = { + Function: "Get-GraphRequestList", + Synopsis: "Execute a Graph query", + Parameters: [ + { + Name: "Endpoint", + Type: "System.String", + Description: "Graph API endpoint", + Required: true, + }, + { + Name: "Parameters", + Type: "System.Collections.Hashtable", + Description: "API Parameters", + Required: false, + }, + { + Name: "queueId", + Type: "System.String", + Description: "Queue Id", + Required: false, + }, + { + Name: "NoPagination", + Type: "System.Management.Automation.SwitchParameter", + Description: "Disable pagination", + Required: false, + }, + { + Name: "CountOnly", + Type: "System.Management.Automation.SwitchParameter", + Description: "Only return count of results", + Required: false, + }, + { + Name: "ReverseTenantLookup", + Type: "System.Management.Automation.SwitchParameter", + Description: "Perform reverse tenant lookup", + Required: false, + }, + { + Name: "ReverseTenantLookupProperty", + Type: "System.String", + Description: "Property to perform reverse tenant lookup", + Required: false, + }, + { + Name: "AsApp", + Type: "System.Boolean", + Description: null, + Required: false, + }, + ], + }; + // Schedule report function + const handleScheduleReport = () => { + const formParameters = formControl.getValues(); + const selectString = formParameters.$select + ? formParameters.$select?.map((item) => item.value).join(",") + : null; + + //compose the parameters for the form based on what is available + const Parameters = [ + { + Key: "$select", + Value: selectString, + }, + { + Key: "$filter", + Value: formParameters.$filter, + }, + { + Key: "$top", + Value: formParameters.$top, + }, + { + Key: "$search", + Value: formParameters.$search, + }, + { + Key: "$count", + Value: formParameters.$count, + }, + { + Key: "$expand", + Value: formParameters.$expand, + }, + { + Key: "ReverseTenantLookup", + Value: formParameters.ReverseTenantLookup, + }, + { + Key: "ReverseTenantLookupProperty", + Value: formParameters.ReverseTenantLookupProperty, + }, + { + Key: "NoPagination", + Value: formParameters.NoPagination, + }, + { + Key: "AsApp", + Value: formParameters.AsApp, + }, + { + Key: "$format", + Value: formParameters.$format, + }, + ]; + Parameters.forEach((param) => { + if (param.Value == null || param.Value === "") { + //delete the index + Parameters.splice(Parameters.indexOf(param), 1); + } + }); + const resetParams = { + tenantFilter: tenant, + Name: formParameters.name + ? `Graph Explorer - ${formParameters.name}` + : "Graph Explorer Report", + command: { + label: schedulerCommand.Function, + value: schedulerCommand.Function, + addedFields: schedulerCommand, + }, + parameters: { + Endpoint: formParameters.endpoint, + skipCache: true, + NoPagination: formParameters.NoPagination, + Parameters: Parameters, + }, + advancedParameters: false, + Recurrence: { + value: 0, + label: "Only once", + }, + }; + schedulerForm.reset(resetParams); + setOffCanvasContent( + <> + + Schedule Graph Explorer Report + + + + ); + setOffCanvasOpen(true); + }; + + const [editorValues, setEditorValues] = useState({}); + //keep the editor in sync with the form + + function getPresetProps(values) { + var newvals = Object.assign({}, values); + if (newvals?.$select !== undefined && Array.isArray(newvals?.$select)) { + newvals.$select = newvals?.$select.map((p) => p.value).join(","); + } + delete newvals["reportTemplate"]; + delete newvals["tenantFilter"]; + delete newvals["IsShared"]; + if (newvals.ReverseTenantLookup === false) { + delete newvals.ReverseTenantLookup; + } + if (newvals.NoPagination === false) { + delete newvals.NoPagination; + } + if (newvals.$count === false) { + delete newvals.$count; + } + Object.keys(newvals).forEach((key) => { + if (values[key] === "" || values[key] === null) { + delete newvals[key]; + } + }); + return newvals; + } + + useEffect(() => { + var values = getPresetProps(formControl.getValues()); + setOffCanvasContent(() => ( + <> + + Import / Export Graph Explorer Preset + + setEditorValues(JSON.parse(value))} + code={JSON.stringify(values, null, 2)} + /> + + + + )); + }, [editorValues, savePresetApi.isPending, formControl, selectedPresets]); + + const handleImport = () => { + setOffCanvasOpen(true); // Open the offCanvas, the content will be updated by useEffect + }; + // Handle filter form submission + const onSubmit = (values) => { + if (values.$select && Array.isArray(values.$select) && values.$select.length > 0) { + values.$select = values?.$select?.map((item) => item.value)?.join(","); + } + if (values.ReverseTenantLookup === false) { + delete values.ReverseTenantLookup; + } + if (values.NoPagination === false) { + delete values.NoPagination; + } + if (values.$count === false) { + delete values.$count; + } + + Object.keys(values).forEach((key) => { + if (values[key] === null) { + delete values[key]; + } + }); + + if (onPresetChange) { + const presetName = lastPresetTitle ? `Graph Explorer - ${lastPresetTitle}` : null; + if (presetName) onPresetChange(presetName); + } + onSubmitFilter(values); + setCardExpanded(false); + }; + + const deletePreset = (id) => { + savePresetApi.mutate({ + url: "/api/ExecGraphExplorerPreset", + data: { action: "Delete", preset: { id: selectedPresetState } }, + }); + }; + + return ( +
    + + + + + + + + + + {selectedPresetState && ( + + )} + + + + + + + } + > + + + option.type} + renderGroup={(params) => ( +
  • + {params.group} + {params.children} +
  • + )} + placeholder="Select a preset" + /> +
    + + {/* Preset Name Field */} + + + + + + + + + + 0 && + propertyList?.data?.Results?.map((item) => ({ label: item, value: item }))) || [ + { + label: "No properties found, check your endpoint", + value: "", + }, + ] + } + placeholder="Columns to select" + helperText="Comma-separated list of columns to include in the response" + /> + + + {/* Filter Field */} + + + + + {/* Expand Field */} + + + + + {/* Top Field */} + + + + + {/* Search Field */} + + + + + {/* Format Field */} + + + +
    + + {/* Reverse Tenant Lookup Switch */} + + + + + {/* Reverse Tenant Lookup Property Field */} + + + + + {/* No Pagination Switch */} + + + + {/* $count Switch */} + + + + + {/* AsApp switch */} + + + + +
    + + setOffCanvasOpen(false)} + children={offCanvasContent} + /> + + ); +}; + +export default CippGraphExplorerFilter; diff --git a/src/components/CippTable/util-columnsFromAPI.js b/src/components/CippTable/util-columnsFromAPI.js new file mode 100644 index 000000000000..0d04d20d0800 --- /dev/null +++ b/src/components/CippTable/util-columnsFromAPI.js @@ -0,0 +1,69 @@ +import { getCippFilterVariant } from "../../utils/get-cipp-filter-variant"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; + +// Function to merge keys from all objects in the array +const mergeKeys = (dataArray) => { + return dataArray.reduce((acc, item) => { + const mergeRecursive = (obj, base = {}) => { + Object?.keys(obj)?.forEach((key) => { + // If base[key] is a string, it should not be merged as an object + if (typeof base[key] === "string") { + return; // Skip further merging for this key + } + + if (typeof obj[key] === "object" && obj[key] !== null && !Array.isArray(obj[key])) { + base[key] = mergeRecursive(obj[key], base[key] || {}); + } else if (typeof obj[key] === "string" && obj[key].toUpperCase() === "FAILED") { + base[key] = base[key]; // Keep existing value if it's 'FAILED' + } else if (obj[key] !== undefined && obj[key] !== null) { + base[key] = obj[key]; // Assign valid primitive values + } + }); + return base; + }; + + return mergeRecursive(item, acc); + }, {}); +}; + +export const utilColumnsFromAPI = (dataArray) => { + const dataSample = mergeKeys(dataArray); + + const generateColumns = (obj, parentKey = "") => { + return Object.keys(obj) + .map((key) => { + const accessorKey = parentKey ? `${parentKey}.${key}` : key; + if (typeof obj[key] === "object" && obj[key] !== null && !Array.isArray(obj[key])) { + return generateColumns(obj[key], accessorKey); + } + + return { + header: getCippTranslation(accessorKey), + id: accessorKey, + accessorFn: (row) => { + let value; + if (accessorKey.includes("@odata")) { + value = row[accessorKey]; + } else { + value = accessorKey.split(".").reduce((acc, part) => acc && acc[part], row); + } + return getCippFormatting(value, accessorKey, "text"); + }, + ...getCippFilterVariant(key), + Cell: ({ row }) => { + let value; + if (accessorKey.includes("@odata")) { + value = row.original[accessorKey]; + } else { + value = accessorKey.split(".").reduce((acc, part) => acc && acc[part], row.original); + } + return getCippFormatting(value, accessorKey); + }, + }; + }) + .flat(); + }; + + return generateColumns(dataSample); +}; diff --git a/src/components/CippTable/util-handleActionsList.js b/src/components/CippTable/util-handleActionsList.js new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/src/components/CippTable/util-tablemode.js b/src/components/CippTable/util-tablemode.js new file mode 100644 index 000000000000..7c3fb5cb8078 --- /dev/null +++ b/src/components/CippTable/util-tablemode.js @@ -0,0 +1,88 @@ +import { useSettings } from "../../hooks/use-settings"; + +export const utilTableMode = ( + columnVisibility, + mode, + actions, + simpleColumns, + offCanvas, + onChange +) => { + const settings = useSettings(); + if (mode === true) { + return { + enableRowSelection: false, + enableRowActions: false, + enableSelectAll: false, + enableColumnPinning: false, + enableStickyHeader: false, + muiPaginationProps: { + rowsPerPageOptions: [25, 50, 100, 250, 500], + }, + muiTableContainerProps: { + sx: { maxHeight: `calc(100vh - 380px)` }, + }, + initialState: { + columnOrder: [...simpleColumns], + columnVisibility: { ...columnVisibility }, + density: "compact", + pagination: { + pageSize: settings?.tablePageSize?.value + ? parseInt(settings?.tablePageSize?.value, 10) + : 25, + pageIndex: 0, + }, + }, + displayColumnDefOptions: { + "mrt-row-actions": { + visibleInShowHideMenu: false, + }, + "mrt-row-select": { + visibleInShowHideMenu: false, + }, + }, + }; + } else { + return { + enableRowSelection: actions || onChange ? true : false, + enableRowActions: actions ? true : false, + enableSelectAll: true, + enableFacetedValues: true, + enableColumnFilterModes: true, + enableStickyHeader: true, + selectAllMode: "all", + enableColumnPinning: true, + enableStickyHeader: true, + muiPaginationProps: { + rowsPerPageOptions: [25, 50, 100, 250, 500], + }, + muiTableContainerProps: { + sx: { maxHeight: `calc(100vh - 380px)` }, + }, + displayColumnDefOptions: { + "mrt-row-actions": { + visibleInShowHideMenu: false, + }, + "mrt-row-select": { + visibleInShowHideMenu: false, + }, + }, + initialState: { + columnOrder: [...simpleColumns], + columnVisibility: { ...columnVisibility }, + showGlobalFilter: true, + density: "compact", + pagination: { + pageSize: settings?.tablePageSize?.value + ? parseInt(settings?.tablePageSize?.value, 10) + : 25, + pageIndex: 0, + }, + columnPinning: { + left: ["mrt-row-select"], + right: ["mrt-row-actions"], + }, + }, + }; + } +}; diff --git a/src/components/CippWizard/CIPPDeploymentStep.js b/src/components/CippWizard/CIPPDeploymentStep.js new file mode 100644 index 000000000000..d0b17d45f13c --- /dev/null +++ b/src/components/CippWizard/CIPPDeploymentStep.js @@ -0,0 +1,322 @@ +import { useEffect, useState } from "react"; +import { + Alert, + Button, + Grid, + Link, + Stack, + Typography, + Skeleton, + Box, + CircularProgress, + SvgIcon, +} from "@mui/material"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import { CippWizardStepButtons } from "./CippWizardStepButtons"; +import { ApiGetCall } from "../../api/ApiCall"; +import CippButtonCard from "../CippCards/CippButtonCard"; +import { CippCopyToClipBoard } from "../CippComponents/CippCopyToClipboard"; +import { CheckCircle } from "@mui/icons-material"; +import CippPermissionCheck from "../CippSettings/CippPermissionCheck"; +import { useQueryClient } from "@tanstack/react-query"; +import { CippApiResults } from "../CippComponents/CippApiResults"; + +export const CippDeploymentStep = (props) => { + const queryClient = useQueryClient(); + const { formControl, onPreviousStep, onNextStep, currentStep } = props; + const values = formControl.getValues(); + + const [currentStepState, setCurrentStepState] = useState(1); + const [pollingStep, setPollingStep] = useState(1); + const [approvalUrl, setApprovalUrl] = useState(true); + + const startSetupApi = ApiGetCall({ + url: "/api/ExecSAMSetup?CreateSAM=true&partnersetup=true", + queryKey: "startSAMSetup", + }); + + const checkSetupStatusApi = ApiGetCall({ + url: `/api/ExecSAMSetup?CheckSetupProcess=true&step=${pollingStep}`, + queryKey: `checkSetupStep${pollingStep}`, + waiting: !pollingStep, + }); + const appId = ApiGetCall({ + url: `/api/ExecListAppId`, + queryKey: `ExecListAppId`, + waiting: values.selectedOption !== "UpdateTokens" ? false : true, + }); + useEffect(() => { + if ( + startSetupApi.data && + startSetupApi.data.step === 1 && + values.selectedOption === "CreateApp" + ) { + formControl.register("wizardStatus", { + required: true, + }); + formControl.setValue("noSubmitButton", true); + setPollingStep(1); + setCurrentStepState(1); + } + }, [startSetupApi.data]); + + useEffect(() => { + if (pollingStep && values.selectedOption === "CreateApp") { + const intervalId = setInterval(() => { + if (!checkSetupStatusApi.isFetching) { + checkSetupStatusApi.refetch(); + } + }, 5000); + return () => clearInterval(intervalId); + } + }, [pollingStep, checkSetupStatusApi]); + + useEffect(() => { + if (checkSetupStatusApi.data) { + const { step, message, url, code } = checkSetupStatusApi.data; + if (url) { + setApprovalUrl(url); + } + if (step === 2) { + setCurrentStepState(2); + setPollingStep(2); + } else if (step >= 3) { + setCurrentStepState(4); + setPollingStep(null); + formControl.setValue( + "wizardStatus", + "You've executed the Setup Wizard. You may now navigate away from this wizard." + ); + formControl.trigger(); + } + } + }, [checkSetupStatusApi.data, currentStepState]); + + const openPopup = (url) => { + const width = 500; + const height = 500; + const left = window.screen.width / 2 - width / 2; + const top = window.screen.height / 2 - height / 2; + window.open(url, "_blank", `width=${width},height=${height},left=${left},top=${top}`); + }; + return ( + + + {values.selectedOption === "CreateApp" && ( + <> + + To run this setup you will need the following prerequisites: +
  • + A CIPP Service Account. For more information on how to create a service account, + click{" "} + + here + +
  • +
  • (Temporary) Global Administrator permissions for the CIPP Service Account
  • +
  • + Multi-factor authentication enabled for the CIPP Service Account, with no trusted + locations or other exclusions. +
  • +
    + {currentStepState >= 1 && ( + + Step 1: Create Application + + {currentStepState <= 1 ? ( + + ) : ( + + + + )} + +
    + } + variant="outlined" + isFetching={startSetupApi.isLoading} + CardButton={ + + } + > + + Click the button below and enter the provided code. This creates the CIPP + Application Registration in your tenant that allows you to access the Graph API. + Login using your CIPP Service Account. + + {startSetupApi.isLoading ? ( + + ) : ( + + )} + + )} + {currentStepState >= 2 && ( + + Step 2: Approve Permissions + + {currentStepState <= 2 ? ( + + ) : ( + + + + )} + +
    + } + CardButton={ + + } + > + + Step 2: Approvals Required + + + Please open the link below and provide the required approval, this allows the app + specific permissions shown in the next screen. Login using your CIPP Service + Account. + + + )} + + {/* Final Step 4 Card */} + {currentStepState >= 4 && } + + + + + + + + + )} + + {values.selectedOption === "UpdateTokens" && ( + + Update Tokens + + {appId.isLoading ? ( + + ) : ( + + + + )} + + + } + CardButton={ + + } + > + + Click the button below to refresh your token. + + {formControl.setValue("noSubmitButton", true)} + + + )} + + {values.selectedOption === "Manual" && ( + <> + {formControl.setValue("setKeys", true)} + + You may enter your secrets below. Leave fields blank to retain existing values. + + + + + + + )} + + + + ); +}; diff --git a/src/components/CippWizard/CippCAForm.jsx b/src/components/CippWizard/CippCAForm.jsx new file mode 100644 index 000000000000..b99d69c8e55c --- /dev/null +++ b/src/components/CippWizard/CippCAForm.jsx @@ -0,0 +1,96 @@ +import { Grid, Stack } from "@mui/material"; +import { CippWizardStepButtons } from "./CippWizardStepButtons"; +import CippJsonView from "../CippFormPages/CippJSONView"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import { ApiGetCall } from "../../api/ApiCall"; +import { useEffect, useState } from "react"; +import { useWatch } from "react-hook-form"; + +export const CippCAForm = (props) => { + const { formControl, onPreviousStep, onNextStep, currentStep } = props; + const values = formControl.getValues(); + const CATemplates = ApiGetCall({ url: "/api/ListCATemplates" }); + const [JSONData, setJSONData] = useState(); + const watcher = useWatch({ control: formControl.control, name: "TemplateList" }); + useEffect(() => { + if (CATemplates.isSuccess && watcher?.value) { + const template = CATemplates.data.find((template) => template.GUID === watcher.value); + if (template) { + setJSONData(template); + formControl.setValue("rawjson", JSON.stringify(template, null)); + } + } + }, [CATemplates, watcher]); + + return ( + + + ({ + label: template.displayName, + value: template.GUID, + })) + : [] + } + /> + + + + + + + + + + + + + ); +}; diff --git a/src/components/CippWizard/CippIntunePolicy.jsx b/src/components/CippWizard/CippIntunePolicy.jsx new file mode 100644 index 000000000000..6eebe98ee32f --- /dev/null +++ b/src/components/CippWizard/CippIntunePolicy.jsx @@ -0,0 +1,131 @@ +import { Grid, Stack } from "@mui/material"; +import { CippWizardStepButtons } from "./CippWizardStepButtons"; +import CippJsonView from "../CippFormPages/CippJSONView"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import { ApiGetCall } from "../../api/ApiCall"; +import { use, useEffect, useState } from "react"; +import { useWatch } from "react-hook-form"; +import { CippFormCondition } from "../CippComponents/CippFormCondition"; + +export const CippIntunePolicy = (props) => { + const { formControl, onPreviousStep, onNextStep, currentStep } = props; + const values = formControl.getValues(); + const CATemplates = ApiGetCall({ url: "/api/ListIntuneTemplates", queryKey: "IntuneTemplates" }); + const [JSONData, setJSONData] = useState(); + const watcher = useWatch({ control: formControl.control, name: "TemplateList" }); + const jsonWatch = useWatch({ control: formControl.control, name: "RAWJson" }); + const selectedTenants = useWatch({ control: formControl.control, name: "tenantFilter" }); + useEffect(() => { + if (CATemplates.isSuccess && watcher?.value) { + const template = CATemplates.data.find((template) => template.GUID === watcher.value); + if (template) { + const jsonTemplate = template.RAWJson ? JSON.parse(template.RAWJson) : null; + setJSONData(jsonTemplate); + formControl.setValue("RAWJson", template.RAWJson); + formControl.setValue("displayName", template.Displayname); + formControl.setValue("description", template.Description); + formControl.setValue("TemplateType", template.Type); + } + } + }, [watcher]); + + return ( + + + ({ + label: template.Displayname, + value: template.GUID, + })) + : [] + } + /> + + + + + + + + + + + + + + {(() => { + const rawJson = jsonWatch ? jsonWatch : ""; + const placeholderMatches = [...rawJson.matchAll(/%(\w+)%/g)].map((m) => m[1]); + const uniquePlaceholders = Array.from(new Set(placeholderMatches)); + if (uniquePlaceholders.length === 0 || selectedTenants.length === 0) { + return null; + } + return uniquePlaceholders.map((placeholder) => ( + + {selectedTenants.map((tenant, idx) => ( + + ))} + + )); + })()} + + + + + ); +}; diff --git a/src/components/CippWizard/CippPSACredentialsStep.js b/src/components/CippWizard/CippPSACredentialsStep.js new file mode 100644 index 000000000000..4aa1d946878c --- /dev/null +++ b/src/components/CippWizard/CippPSACredentialsStep.js @@ -0,0 +1,230 @@ +import { useCallback, useEffect, useState } from "react"; +import { + Alert, + Button, + FormHelperText, + Link, + Stack, + SvgIcon, + TextField, + Typography, +} from "@mui/material"; +import CSVReader from "../CSVReader"; +import { LoadingButton } from "@mui/lab"; +import { Quiz } from "@mui/icons-material"; +import { ApiPostCall } from "../../api/ApiCall"; +import { Box } from "@mui/system"; +export const CippPSACredentialsStep = (props) => { + const { values: initialValues, onPreviousStep, onNextStep } = props; + const [values, setValues] = useState(initialValues); + const [error, setError] = useState(null); + + useEffect(() => { + setValues(initialValues); + }, [initialValues]); + + const handleOnDrop = (data) => { + const importdata = data.map((item) => { + Object.keys(item).forEach((key) => { + if (item[key] === null || item[key] === "") { + delete item[key]; + } + }); + return item; + }); + setValues((prevState) => ({ + ...prevState, + bulkDevices: importdata, + url: potentialUrlConfig[values.SyncTool], + })); + }; + const potentialUrlConfig = { + CSV: "/api/import-csv", + CWM: "/api/config-psa", + AT: "/api/config-psa", + Halo: "/api/config-psa", + }; + + const potentialUrlTest = { + CWM: "/api/test-cwm", + AT: "/api/test-at", + Halo: "/api/test-halo", + }; + const PSATest = ApiPostCall({ urlFromData: true }); + const handleChange = useCallback((event) => { + setValues((prevState) => ({ + ...prevState, + [event.target.name]: event.target.value, + url: potentialUrlConfig[values.SyncTool], + })); + }, []); + const handleSubmit = useCallback( + (event) => { + event.preventDefault(); + if (PSATest.data?.data.Success !== true && values.SyncTool !== "CSV") { + setError("You must perform a successful test before proceeding."); + return; + } + + onNextStep?.({ + syncAllClients: true, + ...PSATest.data?.data, + ...values, + }); + }, + [PSATest.data, onNextStep, values] + ); + const fields = ["ClientName", "DeviceSerial", "DeviceProductNumber", "DeviceManufacturer"]; + + return ( +
    + +
    + Step 2. Configure Source + +
    + + {values.SyncTool === "CSV" && ( + <> + + + Example CSV + + + + + Drop CSV file here or click to upload. + + + + )} + {values.SyncTool === "CWM" && ( + <> + + + + + + )} + {values.SyncTool === "AT" && ( + <> + + + + + )} + {values.SyncTool === "Halo" && ( + <> + + + + + + )} + <> + {error && ( + + {error} + + )} + {PSATest.data?.data?.Messages != null && ( + + {PSATest.data?.data?.Messages} + + )} + {PSATest.data?.data?.Success === true && ( + Connected successfully! + )} + {values.SyncTool !== "CSV" && ( + + + PSATest.mutate({ ...values, url: potentialUrlTest[values.SyncTool] }) + } + size="small" + startIcon={ + + + + } + variant="contained" + > + Test + + + )} + + + + + + +
    +
    + ); +}; diff --git a/src/components/CippWizard/CippPSASyncOptions.js b/src/components/CippWizard/CippPSASyncOptions.js new file mode 100644 index 000000000000..146d5b26279e --- /dev/null +++ b/src/components/CippWizard/CippPSASyncOptions.js @@ -0,0 +1,161 @@ +import { useCallback, useEffect, useState } from "react"; +import { + Autocomplete, + Button, + Card, + CardHeader, + Divider, + List, + ListItem, + Stack, + Switch, + TextField, + Typography, +} from "@mui/material"; + +const options = [ + { + label: "Sync Completed", + value: "syncComplete", + }, + { + label: "Sync Failed", + value: "SyncFailed", + }, + { + label: "Warranties Updated", + value: "WarrantyUpdated", + }, +]; + +export const CippPSASyncOptions = (props) => { + const { values: initialValues, onNextStep, onPreviousStep } = props; + const [values, setValues] = useState(initialValues); + + useEffect(() => { + setValues(initialValues); + }, [initialValues]); + + const handleChange = useCallback((event) => { + if (event.target.checked) { + setValues((prevState) => ({ + ...prevState, + [event.target.name]: true, + })); + } else { + setValues((prevState) => ({ + ...prevState, + [event.target.name]: false, + })); + } + }, []); + + const handleSubmit = useCallback( + (event) => { + event.preventDefault(); + const newValues = Object.keys(values).reduce((acc, key) => { + if (key.includes(".")) { + const [parentKey, childKey] = key.split("."); + if (!acc[parentKey]) { + acc[parentKey] = {}; + } + acc[parentKey][childKey] = values[key]; + } else { + acc[key] = values[key]; + } + return acc; + }, {}); + + onNextStep?.(newValues); + }, + [values, onNextStep] + ); + + return ( +
    + +
    + Step 3. Select your Sync Options +
    + + + + + {options.map((option, index) => { + const hasDivider = options.length > index + 1; + return ( + + + {option.label} + + + + ); + })} + + + {values.SyncTool !== "CSV" && ( + <> + + + + + {values.DeviceTypes && + values.DeviceTypes.map((deviceType) => ( + + + {deviceType.name} + + + + ))} + + + + + + + + + Sync all clients + + + + + {values.syncAllClients === false && ( + <> + + Select Clients + + + option.companyName ? option.companyName : option.name + } + renderInput={(params) => } + /> + + )} + + + + + )} + + + + +
    +
    + ); +}; diff --git a/src/components/CippWizard/CippTenantStep.jsx b/src/components/CippWizard/CippTenantStep.jsx new file mode 100644 index 000000000000..4d41b814ce1a --- /dev/null +++ b/src/components/CippWizard/CippTenantStep.jsx @@ -0,0 +1,35 @@ +import { Stack } from "@mui/material"; +import { CippWizardStepButtons } from "./CippWizardStepButtons"; +import { CippFormTenantSelector } from "../CippComponents/CippFormTenantSelector"; + +export const CippTenantStep = (props) => { + const { + allTenants, + type = "single", + valueField = "defaultDomainName", + onNextStep, + formControl, + currentStep, + onPreviousStep, + preText, + } = props; + + return ( + + {preText} + + + + + ); +}; diff --git a/src/components/CippWizard/CippWizard.jsx b/src/components/CippWizard/CippWizard.jsx new file mode 100644 index 000000000000..f0cc5f3013b3 --- /dev/null +++ b/src/components/CippWizard/CippWizard.jsx @@ -0,0 +1,72 @@ +import { useCallback, useMemo, useState } from "react"; +import { Card, CardContent, Container, Stack } from "@mui/material"; +import Grid from "@mui/material/Grid2"; +import { WizardSteps } from "./wizard-steps"; +import { useForm } from "react-hook-form"; + +export const CippWizard = (props) => { + const { postUrl, orientation = "horizontal", steps } = props; + const [activeStep, setActiveStep] = useState(0); + const handleBack = useCallback(() => { + setActiveStep((prevState) => (prevState > 0 ? prevState - 1 : prevState)); + }, []); + + const handleNext = useCallback(() => { + setActiveStep((prevState) => (prevState < steps.length - 1 ? prevState + 1 : prevState)); + }, []); + const formControl = useForm({ mode: "onChange", defaultValues: props.initialState }); + const content = useMemo(() => { + const StepComponent = steps[activeStep].component; + return ( + + ); + }, [activeStep, handleNext, handleBack, steps, formControl]); + + return ( + + {orientation === "vertical" ? ( + + + + + + + {content} + + + + ) : ( + + + +
    + {content} +
    +
    +
    + )} +
    + ); +}; diff --git a/src/components/CippWizard/CippWizardAppApproval.jsx b/src/components/CippWizard/CippWizardAppApproval.jsx new file mode 100644 index 000000000000..a32eef3a32de --- /dev/null +++ b/src/components/CippWizard/CippWizardAppApproval.jsx @@ -0,0 +1,58 @@ +import { Stack } from "@mui/material"; +import CippWizardStepButtons from "./CippWizardStepButtons"; +import { Grid } from "@mui/system"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import { getCippValidator } from "../../utils/get-cipp-validator"; +import { CippFormCondition } from "../CippComponents/CippFormCondition"; + +export const CippWizardAppApproval = (props) => { + const { postUrl, formControl, onPreviousStep, onNextStep, currentStep } = props; + + return ( + + + + getCippValidator(value, "guid"), + }} + name="AppId" + formControl={formControl} + /> + + + + + + + + + ); +}; diff --git a/src/components/CippWizard/CippWizardAutoComplete.jsx b/src/components/CippWizard/CippWizardAutoComplete.jsx new file mode 100644 index 000000000000..a4e8f237f911 --- /dev/null +++ b/src/components/CippWizard/CippWizardAutoComplete.jsx @@ -0,0 +1,48 @@ +import { Stack } from "@mui/material"; +import { CippWizardStepButtons } from "./CippWizardStepButtons"; +import CippFormComponent from "../CippComponents/CippFormComponent"; + +export const CippWizardAutoComplete = (props) => { + const { + title, + type = "single", + name, + placeholder, + api, + onNextStep, + formControl, + currentStep, + onPreviousStep, + } = props; + + const currentTenant = formControl.watch("tenantFilter"); + + return ( + + + + + + ); +}; diff --git a/src/components/CippWizard/CippWizardAutopilotOptions.jsx b/src/components/CippWizard/CippWizardAutopilotOptions.jsx new file mode 100644 index 000000000000..154eebbab74b --- /dev/null +++ b/src/components/CippWizard/CippWizardAutopilotOptions.jsx @@ -0,0 +1,31 @@ +import { Grid, Stack } from "@mui/material"; +import CippWizardStepButtons from "./CippWizardStepButtons"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +export const CippWizardAutopilotOptions = (props) => { + const { postUrl, formControl, onPreviousStep, onNextStep, currentStep } = props; + + return ( + + <> + + + + + + + + + ); +}; diff --git a/src/components/CippWizard/CippWizardBulkOptions.jsx b/src/components/CippWizard/CippWizardBulkOptions.jsx new file mode 100644 index 000000000000..4a01019c3898 --- /dev/null +++ b/src/components/CippWizard/CippWizardBulkOptions.jsx @@ -0,0 +1,47 @@ +import { Grid, Stack } from "@mui/material"; +import CippWizardStepButtons from "./CippWizardStepButtons"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import countryList from "/src/data/countryList.json"; +import { CippFormLicenseSelector } from "../CippComponents/CippFormLicenseSelector"; +export const CippWizardBulkOptions = (props) => { + const { postUrl, formControl, onPreviousStep, onNextStep, currentStep } = props; + + return ( + + <> + + + ({ + label: Name, + value: Code, + }))} + formControl={formControl} + /> + + + + + + + + + ); +}; diff --git a/src/components/CippWizard/CippWizardCSVImport.jsx b/src/components/CippWizard/CippWizardCSVImport.jsx new file mode 100644 index 000000000000..dade62abe5d9 --- /dev/null +++ b/src/components/CippWizard/CippWizardCSVImport.jsx @@ -0,0 +1,154 @@ +import { + Button, + Grid, + Link, + Stack, + Dialog, + DialogActions, + DialogContent, + DialogTitle, +} from "@mui/material"; +import { CippWizardStepButtons } from "./CippWizardStepButtons"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import { CippDataTable } from "../CippTable/CippDataTable"; +import { useWatch } from "react-hook-form"; +import { Delete } from "@mui/icons-material"; +import { useEffect, useState } from "react"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; + +export const CippWizardCSVImport = (props) => { + const { + onNextStep, + formControl, + currentStep, + onPreviousStep, + fields, + name, + manualFields = false, + nameToCSVMapping, + fileName = "BulkUser", + } = props; + const tableData = useWatch({ control: formControl.control, name: name }); + const [newTableData, setTableData] = useState([]); + const [open, setOpen] = useState(false); + + const handleRemoveItem = (row) => { + if (row === undefined) return false; + const index = tableData?.findIndex((item) => item === row); + const newTableData = [...tableData]; + newTableData.splice(index, 1); + setTableData(newTableData); + }; + + const handleAddItem = () => { + const newRowData = formControl.getValues("addrow"); + if (newRowData === undefined) return false; + + const newTableData = [...tableData, newRowData]; + setTableData(newTableData); + setOpen(false); + }; + + useEffect(() => { + formControl.setValue(name, newTableData); + }, [newTableData]); + + const actions = [ + { + icon: , + label: "Delete Row", + confirmText: "Are you sure you want to delete this row?", + customFunction: handleRemoveItem, + noConfirm: true, + }, + ]; + + return ( + + + Download Example CSV + + + {manualFields && ( + + {fields.map((field) => ( + <> + + + + + ))} + + + + + )} + {!manualFields && ( + <> + + + + + + setOpen(false)}> + Add a new row + + + {fields.map((field) => ( + + + + ))} + + + + + + + + + )} + + + + + ); +}; diff --git a/src/components/CippWizard/CippWizardConfirmation.js b/src/components/CippWizard/CippWizardConfirmation.js new file mode 100644 index 000000000000..3e8ae6c78bff --- /dev/null +++ b/src/components/CippWizard/CippWizardConfirmation.js @@ -0,0 +1,85 @@ +import { Card, Stack, Grid } from "@mui/material"; +import { PropertyList } from "../property-list"; +import CippWizardStepButtons from "./CippWizardStepButtons"; +import { PropertyListItem } from "../property-list-item"; +import { getCippTranslation } from "../../utils/get-cipp-translation"; +import { getCippFormatting } from "../../utils/get-cipp-formatting"; + +export const CippWizardConfirmation = (props) => { + const { postUrl, lastStep, formControl, onPreviousStep, onNextStep, currentStep } = props; + const formValues = formControl.getValues(); + const formEntries = Object.entries(formValues); + //remove all entries in "blacklist" from showing on confirmation page + const blacklist = [ + "selectedOption", + "GUID", + "ID", + "noSubmitButton", + "RAWJson", + "TemplateList", + "addrow", + ]; + + const tenantEntry = formEntries.find(([key]) => key === "tenantFilter" || key === "tenant"); + const userEntry = formEntries.find(([key]) => + ["user", "userPrincipalName", "username"].includes(key) + ); + const filteredEntries = formEntries.filter( + ([key]) => + !blacklist.includes(key) && + key !== "tenantFilter" && + key !== "tenant" && + !["user", "userPrincipalName", "username"].includes(key) + ); + + const halfIndex = Math.ceil(filteredEntries.length / 2); + const firstHalf = filteredEntries.slice(0, halfIndex); + const secondHalf = filteredEntries.slice(halfIndex); + + if (tenantEntry) { + firstHalf.unshift(tenantEntry); + } + + if (userEntry) { + secondHalf.unshift(userEntry); + } + + return ( + + + + + + {firstHalf.map(([key, value]) => { + const formattedValue = getCippFormatting(value, key); + const label = getCippTranslation(key); + return ; + })} + + + + + {secondHalf.map(([key, value]) => { + const formattedValue = getCippFormatting(value, key); + const label = getCippTranslation(key); + return ; + })} + + + + + + + + ); +}; + +export default CippWizardConfirmation; diff --git a/src/components/CippWizard/CippWizardGroupTemplates.jsx b/src/components/CippWizard/CippWizardGroupTemplates.jsx new file mode 100644 index 000000000000..215d22a0509f --- /dev/null +++ b/src/components/CippWizard/CippWizardGroupTemplates.jsx @@ -0,0 +1,151 @@ +import { Stack } from "@mui/material"; +import CippWizardStepButtons from "./CippWizardStepButtons"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import { CippFormCondition } from "../CippComponents/CippFormCondition"; +import { Grid } from "@mui/system"; +import { useWatch } from "react-hook-form"; +import { useEffect } from "react"; + +export const CippWizardGroupTemplates = (props) => { + const { postUrl, formControl, onPreviousStep, onNextStep, currentStep } = props; + const watcher = useWatch({ control: formControl.control, name: "TemplateList" }); + const groupOptions = [ + { label: "Dynamic Group", value: "dynamic" }, + { label: "Dynamic Distribution Group", value: "dynamicdistribution" }, + { label: "Security Group", value: "generic" }, + { label: "Distribution Group", value: "distribution" }, + { label: "Azure Role Group", value: "azurerole" }, + { label: "Mail Enabled Security Group", value: "security" }, + ]; + useEffect(() => { + if (watcher?.value) { + formControl.setValue("groupType", watcher.addedFields.groupType); + formControl.setValue("Displayname", watcher.addedFields.Displayname); + formControl.setValue("Description", watcher.addedFields.Description); + formControl.setValue("username", watcher.addedFields.username); + formControl.setValue("allowExternal", watcher.addedFields.allowExternal); + formControl.setValue("MembershipRules", watcher.addedFields.MembershipRules); + } + }, [watcher]); + return ( + + + + `${option.Displayname} (${option.groupType})`, + valueField: "GUID", + addedField: { + groupType: "groupType", + Displayname: "Displayname", + Description: "Description", + username: "username", + allowExternal: "allowExternal", + MembershipRules: "MembershipRules", + }, + }} + /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; diff --git a/src/components/CippWizard/CippWizardOffboarding.jsx b/src/components/CippWizard/CippWizardOffboarding.jsx new file mode 100644 index 000000000000..42b2611a3e15 --- /dev/null +++ b/src/components/CippWizard/CippWizardOffboarding.jsx @@ -0,0 +1,306 @@ +import { Alert, Stack, Typography, Card, CardContent, CardHeader, Divider } from "@mui/material"; +import CippWizardStepButtons from "./CippWizardStepButtons"; +import CippFormComponent from "../CippComponents/CippFormComponent"; +import { CippFormCondition } from "../CippComponents/CippFormCondition"; +import { useWatch } from "react-hook-form"; +import { useEffect, useState } from "react"; +import { Grid } from "@mui/system"; + +export const CippWizardOffboarding = (props) => { + const { postUrl, formControl, onPreviousStep, onNextStep, currentStep } = props; + const currentTenant = formControl.watch("tenantFilter"); + const selectedUsers = useWatch({ control: formControl.control, name: "user" }); + const [showAlert, setShowAlert] = useState(false); + + useEffect(() => { + if (selectedUsers.length >= 4) { + setShowAlert(true); + formControl.setValue("Scheduled.enabled", true); + } + }, [selectedUsers]); + + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mailbox Access + + `${option.displayName} (${option.userPrincipalName})`, + valueField: "id", + data: { + Endpoint: "users", + manualPagination: true, + $select: "id,userPrincipalName,displayName", + $count: true, + $orderby: "displayName", + $top: 999, + }, + }} + /> + `${option.displayName} (${option.userPrincipalName})`, + valueField: "id", + url: "/api/ListGraphRequest", + dataKey: "Results", + tenantFilter: currentTenant ? currentTenant.value : undefined, + data: { + Endpoint: "users", + manualPagination: true, + $select: "id,userPrincipalName,displayName", + $count: true, + $orderby: "displayName", + $top: 999, + }, + }} + /> + `${option.displayName} (${option.userPrincipalName})`, + valueField: "id", + url: "/api/ListGraphRequest", + dataKey: "Results", + data: { + Endpoint: "users", + manualPagination: true, + $select: "id,userPrincipalName,displayName", + $count: true, + $orderby: "displayName", + $top: 999, + }, + }} + /> + + + Email Forwarding + + `${option.displayName} (${option.userPrincipalName})`, + valueField: "id", + url: "/api/ListGraphRequest", + dataKey: "Results", + data: { + Endpoint: "users", + manualPagination: true, + $select: "id,userPrincipalName,displayName", + $count: true, + $orderby: "displayName", + $top: 999, + }, + }} + /> + + + + + + + + + {showAlert && ( + + You have selected more than 3 users. This offboarding must be scheduled. + + )} + + + + + + + + + + + + + Scheduled Offboarding Date + + + + + Send results to: + + + + + + + + + + + + ); +}; diff --git a/src/components/CippWizard/CippWizardOptionsList.jsx b/src/components/CippWizard/CippWizardOptionsList.jsx new file mode 100644 index 000000000000..cea2d3488674 --- /dev/null +++ b/src/components/CippWizard/CippWizardOptionsList.jsx @@ -0,0 +1,89 @@ +import { Avatar, Card, CardContent, Stack, SvgIcon, Typography } from "@mui/material"; +import { useEffect, useState } from "react"; +import { CippWizardStepButtons } from "./CippWizardStepButtons"; + +export const CippWizardOptionsList = (props) => { + const { onNextStep, options, title, subtext, formControl, currentStep, onPreviousStep } = props; + const [selectedOption, setSelectedOption] = useState(null); + // Register the "selectedOption" field in react-hook-form + formControl.register("selectedOption", { + required: true, + }); + + //only perform a reset if the form has more options than 'selectedOption' + useEffect(() => { + //find if we have more properties than just 'selectedOption' + const formValues = formControl.getValues(); + const formEntries = Object.entries(formValues); + const formKeys = formEntries.map(([key]) => key); + const hasMoreThanSelectedOption = formKeys.length > 1; + if (hasMoreThanSelectedOption) { + formControl.reset({ selectedOption: "" }); + } + }, [formControl]); + + const handleOptionClick = (value) => { + setSelectedOption(value); // Visually select the option + formControl.setValue("selectedOption", value); // Update form value in React Hook Form + formControl.trigger(); + }; + + return ( + + + {title} + + {subtext} + + + + {options.map((option) => { + const isSelected = selectedOption === option.value; // Check if the option is selected + + return ( + handleOptionClick(option.value)} // Handle option click + variant="outlined" + sx={{ + cursor: "pointer", + ...(isSelected && { + boxShadow: (theme) => `0px 0px 0px 2px ${theme.palette.primary.main}`, + }), + "&:hover": { + ...(isSelected ? {} : { boxShadow: 8 }), // Hover effect + }, + }} + > + + + + {option.icon} + + + {option.label} + {option.description} + + + + + ); + })} + + + + ); +}; diff --git a/src/components/CippWizard/CippWizardPage.jsx b/src/components/CippWizard/CippWizardPage.jsx new file mode 100644 index 000000000000..e0960bad2a02 --- /dev/null +++ b/src/components/CippWizard/CippWizardPage.jsx @@ -0,0 +1,61 @@ +import Head from "next/head"; +import { Box, Button, Container, Stack, SvgIcon } from "@mui/material"; +import { CippWizard } from "./CippWizard"; +import { useRouter } from "next/router"; +import { ArrowLeftIcon } from "@mui/x-date-pickers"; + +const CippWizardPage = (props) => { + const router = useRouter(); + const { + postUrl, + initialState, + steps, + wizardTitle, + backButton = true, + wizardOrientation = "horizontal", + ...other + } = props; + return ( + <> + + {wizardTitle} + + + + {backButton && ( + + )} + + + + + + + + + + + ); +}; +export default CippWizardPage; diff --git a/src/components/CippWizard/CippWizardStepButtons.jsx b/src/components/CippWizard/CippWizardStepButtons.jsx new file mode 100644 index 000000000000..87915ba3c0c2 --- /dev/null +++ b/src/components/CippWizard/CippWizardStepButtons.jsx @@ -0,0 +1,64 @@ +import { Button, Stack } from "@mui/material"; +import { useFormState } from "react-hook-form"; +import { ApiPostCall } from "../../api/ApiCall"; +import { CippApiResults } from "../CippComponents/CippApiResults"; + +export const CippWizardStepButtons = (props) => { + const { + postUrl, + lastStep, + currentStep, + onPreviousStep, + onNextStep, + formControl, + noNextButton = false, + noSubmitButton = false, + queryKeys, + ...other + } = props; + const { isValid, isSubmitted, isSubmitting } = useFormState({ control: formControl.control }); + const sendForm = ApiPostCall({ relatedQueryKeys: queryKeys }); + const handleSubmit = () => { + const values = formControl.getValues(); + sendForm.mutate({ url: postUrl, data: values }); + }; + + return ( + <> + + + {currentStep > 0 && ( + + )} + {!noNextButton && currentStep !== lastStep && ( + + )} + {!noSubmitButton && currentStep === lastStep && ( +
    + +
    + )} +
    + + ); +}; + +export default CippWizardStepButtons; diff --git a/src/components/CippWizard/wizard-steps.js b/src/components/CippWizard/wizard-steps.js new file mode 100644 index 000000000000..70c2d1e910e2 --- /dev/null +++ b/src/components/CippWizard/wizard-steps.js @@ -0,0 +1,146 @@ +import PropTypes from "prop-types"; +import CheckIcon from "@heroicons/react/24/outline/CheckIcon"; +import { + Box, + Step, + StepConnector, + stepConnectorClasses, + StepLabel, + Stepper, + SvgIcon, + Typography, +} from "@mui/material"; +import { styled } from "@mui/material/styles"; +import { ClearIcon } from "@mui/x-date-pickers"; + +const WizardStepConnector = styled(StepConnector)(({ theme }) => ({ + [`&.${stepConnectorClasses.vertical}`]: { + marginLeft: 16, + }, + [`& .${stepConnectorClasses.lineVertical}`]: { + borderColor: + theme.palette.mode === "dark" ? theme.palette.neutral[800] : theme.palette.neutral[200], + borderLeftWidth: 2, + }, + [`& .${stepConnectorClasses.lineHorizontal}`]: { + borderColor: + theme.palette.mode === "dark" ? theme.palette.neutral[800] : theme.palette.neutral[200], + borderTopWidth: 2, + }, +})); + +const WizardStepIcon = (props) => { + const { active, completed, error } = props; + + if (error) { + return ( + + + + + + ); + } + if (active) { + return ( + + + + ); + } + if (completed) { + return ( + + + + + + ); + } + + return ( + (theme.palette.mode === "dark" ? "neutral.700" : "neutral.300"), + borderRadius: "50%", + borderStyle: "solid", + borderWidth: 2, + height: 36, + width: 36, + }} + /> + ); +}; + +export const WizardSteps = (props) => { + const { activeStep = 1, orientation = "vertical", steps = [] } = props; + + return ( +
    + } + > + {steps.map((step) => ( + + + {step.title} + + {step.description} + + + + ))} + +
    + ); +}; + +WizardSteps.propTypes = { + activeStep: PropTypes.number, + orientation: PropTypes.oneOf(["vertical", "horizontal"]), + steps: PropTypes.array, +}; diff --git a/src/components/PrivateRoute.js b/src/components/PrivateRoute.js new file mode 100644 index 000000000000..65a21fd62452 --- /dev/null +++ b/src/components/PrivateRoute.js @@ -0,0 +1,35 @@ +import { ApiGetCall } from "../api/ApiCall.jsx"; +import UnauthenticatedPage from "../pages/unauthenticated.js"; + +export const PrivateRoute = ({ children, routeType }) => { + const { + data: profile, + error, + isFetching, + } = ApiGetCall({ + url: "/.auth/me", + queryKey: "authmecipp", + }); + + if (isFetching) { + return "Loading..."; + } + + let roles = null; + if (null !== profile?.clientPrincipal) { + roles = profile?.clientPrincipal.userRoles; + } else if (null === profile?.clientPrincipal) { + return ; + } + if (null === roles) { + return ; + } else { + const isAuthenticated = roles.includes("authenticated") && !error; + const isAdmin = roles.includes("admin"); + if (routeType === "admin") { + return !isAdmin ? : children; + } else { + return !isAuthenticated ? : children; + } + } +}; diff --git a/src/components/action-list-item.js b/src/components/action-list-item.js new file mode 100644 index 000000000000..17bcebdc6e3e --- /dev/null +++ b/src/components/action-list-item.js @@ -0,0 +1,18 @@ +import PropTypes from "prop-types"; +import { ListItemButton, ListItemIcon, ListItemText } from "@mui/material"; + +export const ActionListItem = (props) => { + const { icon, label, ...other } = props; + + return ( + + {icon && {icon}} + + + ); +}; + +ActionListItem.propTypes = { + icon: PropTypes.node, + label: PropTypes.string.isRequired, +}; diff --git a/src/components/action-list.js b/src/components/action-list.js new file mode 100644 index 000000000000..693b3d812e38 --- /dev/null +++ b/src/components/action-list.js @@ -0,0 +1,23 @@ +import PropTypes from 'prop-types'; +import { List } from '@mui/material'; + +export const ActionList = (props) => { + const { children } = props; + + return ( + theme.palette.mode === 'dark' + ? 'neutral.900' + : 'neutral.50' + }} + > + {children} + + ); +}; + +ActionList.propTypes = { + children: PropTypes.node +}; diff --git a/src/components/actions-menu.js b/src/components/actions-menu.js new file mode 100644 index 000000000000..92ef2f90f4fd --- /dev/null +++ b/src/components/actions-menu.js @@ -0,0 +1,94 @@ +import ChevronDownIcon from "@heroicons/react/24/outline/ChevronDownIcon"; +import PropTypes from "prop-types"; +import { Button, ListItemText, Menu, MenuItem, SvgIcon } from "@mui/material"; +import { usePopover } from "../hooks/use-popover"; +import { useState } from "react"; +import { useDialog } from "../hooks/use-dialog"; +import { CippApiDialog } from "./CippComponents/CippApiDialog"; + +export const ActionsMenu = (props) => { + const { actions = [], label = "Actions", data, queryKeys, ...other } = props; + const popover = usePopover(); + const [actionData, setActionData] = useState({ data: {}, action: {}, ready: false }); + const createDialog = useDialog(); + + return ( + <> + + + {actions + ?.filter((action) => !action.link) + .map((action, index) => ( + { + setActionData({ + data: data, + action: action, + ready: true, + }); + + if (action?.noConfirm && action.customFunction) { + action.customFunction(data, action, {}); + } else { + createDialog.handleOpen(); + popover.handleClose(); + } + }} + > + + {action.icon} + + {action.label} + + ))} + + {actionData.ready && ( + + )} + + ); +}; + +ActionsMenu.propTypes = { + actions: PropTypes.array, + label: PropTypes.string, +}; diff --git a/src/components/bulk-actions-menu.js b/src/components/bulk-actions-menu.js new file mode 100644 index 000000000000..b4ceba4c48bd --- /dev/null +++ b/src/components/bulk-actions-menu.js @@ -0,0 +1,78 @@ +import PropTypes from "prop-types"; +import ChevronDownIcon from "@heroicons/react/24/outline/ChevronDownIcon"; +import { Button, Link, ListItemText, Menu, MenuItem, SvgIcon } from "@mui/material"; +import { usePopover } from "../hooks/use-popover"; + +export const BulkActionsMenu = (props) => { + const { buttonName, sx, row, actions = [], ...other } = props; + const popover = usePopover(); + + return ( + <> + + + {actions.map((action, index) => { + if (action.link) { + return ( + + + + ); + } else { + return ( + + + + ); + } + })} + + + ); +}; + +BulkActionsMenu.propTypes = { + onArchive: PropTypes.func, + onDelete: PropTypes.func, + selectedCount: PropTypes.number, +}; diff --git a/src/components/buttons/CsvButton.jsx b/src/components/buttons/CsvButton.jsx deleted file mode 100644 index 855ba10ea132..000000000000 --- a/src/components/buttons/CsvButton.jsx +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import { CButton } from '@coreui/react' -import { CSVDownloader } from 'react-papaparse' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faFileCsv } from '@fortawesome/free-solid-svg-icons' - -function ExportCsvButton(props) { - return ( - - - {props.nameText} - - ) -} -export default ExportCsvButton - -ExportCsvButton.propTypes = { - csvData: PropTypes.array.isRequired, - nameText: PropTypes.string, - reportName: PropTypes.oneOfType([PropTypes.element, PropTypes.string, PropTypes.number]), -} diff --git a/src/components/buttons/PdfButton.jsx b/src/components/buttons/PdfButton.jsx deleted file mode 100644 index 38c00ce6124f..000000000000 --- a/src/components/buttons/PdfButton.jsx +++ /dev/null @@ -1,58 +0,0 @@ -import React from 'react' -import { CButton, CDropdownItem } from '@coreui/react' -import jsPDF from 'jspdf' -import 'jspdf-autotable' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faFilePdf } from '@fortawesome/free-solid-svg-icons' -import { useSelector } from 'react-redux' - -function ExportPDFButton(props) { - const base64 = useSelector((state) => state.app.reportImage) - const exportPDF = (pdfData, pdfHeaders, pdfSize = 'A3', reportName = 'report') => { - const unit = 'pt' - const size = pdfSize // Use A1, A2, A3 or A4 - const orientation = 'landscape' // portrait or landscape - const doc = new jsPDF(orientation, unit, size) - - doc.setFontSize(10) - let headerObj = [] - pdfHeaders.forEach((item) => { - if (item.exportSelector) { - let returnobj = { header: item.name, dataKey: item.exportSelector } - headerObj.push(returnobj) - } - }) - - let content = { - startY: 100, - columns: headerObj, - body: pdfData, - theme: 'striped', - headStyles: { fillColor: [247, 127, 0] }, - } - if (base64) { - doc.addImage(base64, 'png', 20, 20, 120, 100) - } - doc.autoTable(content) - doc.save(reportName + '.pdf') - } - - return ( - exportPDF(props.pdfData, props.pdfHeaders, props.pdfSize, props.reportName)} - > - - {props.nameText} - - ) -} -export default ExportPDFButton - -ExportPDFButton.propTypes = { - pdfData: PropTypes.oneOfType([PropTypes.element, PropTypes.string, PropTypes.array]), - pdfHeaders: PropTypes.oneOfType([PropTypes.string, PropTypes.array]), - pdfSize: PropTypes.oneOf(['A1', 'A2', 'A3', 'A4']), - reportName: PropTypes.oneOfType([PropTypes.element, PropTypes.string, PropTypes.number]), - nameText: PropTypes.string, -} diff --git a/src/components/buttons/TableModalButton.jsx b/src/components/buttons/TableModalButton.jsx deleted file mode 100644 index f18dee1afe9f..000000000000 --- a/src/components/buttons/TableModalButton.jsx +++ /dev/null @@ -1,54 +0,0 @@ -import React from 'react' -import { CButton } from '@coreui/react' -import { ModalService } from '../utilities' -import { cellGenericFormatter } from '../tables/CellGenericFormat' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' - -export default function TableModalButton({ - data, - title, - className, - countOnly = false, - icon = '', - ...input -}) { - const handleTable = (data) => { - const QueryColumns = [] - const columns = Object.keys(data[0]).map((key) => { - QueryColumns.push({ - name: key, - selector: (row) => row[key], // Accessing the property using the key - sortable: true, - exportSelector: key, - cell: cellGenericFormatter(), - }) - }) - ModalService.open({ - data: data, - componentType: 'table', - componentProps: { - columns: QueryColumns, - keyField: 'id', - }, - title: title, - size: 'lg', - }) - } - const buttonClass = 'btn ' + className - - return ( - handleTable(data)}> - {icon != '' && } - <>{countOnly === true ? data.length : `${title} (${data.length})`} - - ) -} - -TableModalButton.propTypes = { - data: PropTypes.array, - title: PropTypes.string, - className: PropTypes.string, - countOnly: PropTypes.bool, - icon: PropTypes.string, -} diff --git a/src/components/buttons/TitleButton.jsx b/src/components/buttons/TitleButton.jsx deleted file mode 100644 index 24a6ef4f59b0..000000000000 --- a/src/components/buttons/TitleButton.jsx +++ /dev/null @@ -1,33 +0,0 @@ -import React from 'react' -import { CButton } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faPlus } from '@fortawesome/free-solid-svg-icons' -import PropTypes from 'prop-types' -import { Link } from 'react-router-dom' - -export default function TitleButton({ icon, title, href = null, onClick = null }) { - if (href) { - return ( - - - - {title} - - - ) - } else if (onClick) { - return ( - - - {title} - - ) - } -} - -TitleButton.propTypes = { - icon: PropTypes.object, - title: PropTypes.string.isRequired, - href: PropTypes.string, - onClick: PropTypes.func, -} diff --git a/src/components/buttons/index.js b/src/components/buttons/index.js deleted file mode 100644 index c87617eb1456..000000000000 --- a/src/components/buttons/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import ExportCsvButton from 'src/components/buttons/CsvButton' -import ExportPDFButton from 'src/components/buttons/PdfButton' -import TitleButton from 'src/components/buttons/TitleButton' -import TableModalButton from 'src/components/buttons/TableModalButton' - -export { ExportCsvButton, ExportPDFButton, TitleButton, TableModalButton } diff --git a/src/components/chart.js b/src/components/chart.js new file mode 100644 index 000000000000..a5a71dbbb479 --- /dev/null +++ b/src/components/chart.js @@ -0,0 +1,9 @@ +import dynamic from 'next/dynamic'; +import { styled } from '@mui/material/styles'; + +const ApexChart = dynamic(() => import('react-apexcharts'), { + ssr: false, + loading: () => null +}); + +export const Chart = styled(ApexChart)({}); diff --git a/src/components/confirmation-dialog.js b/src/components/confirmation-dialog.js new file mode 100644 index 000000000000..fcd629bc9224 --- /dev/null +++ b/src/components/confirmation-dialog.js @@ -0,0 +1,104 @@ +import PropTypes from 'prop-types'; +import ExclamationCircleIcon from '@heroicons/react/24/outline/ExclamationCircleIcon'; +import ExclamationTriangleIcon from '@heroicons/react/24/outline/ExclamationTriangleIcon'; +import { + Button, + Dialog, + DialogActions, + DialogContent, + DialogTitle, + Stack, + SvgIcon, + Typography +} from '@mui/material'; + +const iconMap = { + error: ( + + + + ), + warning: ( + + + + ), + info: ( + + + + ) +}; + +export const ConfirmationDialog = (props) => { + const { + message = '', + onCancel, + onConfirm, + open = false, + title, + variant = 'info', + ...other + } = props; + + const icon = iconMap[variant]; + + return ( + + + + {icon} + + {title} + + + + + + {message} + + + + + + + + ); +}; + +ConfirmationDialog.propTypes = { + message: PropTypes.string, + onCancel: PropTypes.func, + onConfirm: PropTypes.func, + open: PropTypes.bool, + title: PropTypes.string, + variant: PropTypes.oneOf(['error', 'warning', 'info']) +}; diff --git a/src/components/contentcards/ActionContentCard.jsx b/src/components/contentcards/ActionContentCard.jsx deleted file mode 100644 index a11d424a86cb..000000000000 --- a/src/components/contentcards/ActionContentCard.jsx +++ /dev/null @@ -1,63 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CippContentCard } from '../layout' -import { CButton, CButtonGroup, CSpinner } from '@coreui/react' - -export default function ActionContentCard({ - title, - icon, - content, - className = null, - isFetching, - error, - errorMessage, -}) { - return ( - - {isFetching && } - {!isFetching && error && <>{errorMessage}} - {!isFetching && !error && ( - - {content.map((item, index) => ( - - - {item.label} - - ))} - - )} - - ) -} - -ActionContentCard.propTypes = { - title: PropTypes.string.isRequired, - icon: PropTypes.object, - content: PropTypes.arrayOf( - PropTypes.shape({ - label: PropTypes.string.isRequired, - link: PropTypes.string.isRequired, - icon: PropTypes.oneOfType([PropTypes.element, PropTypes.object, PropTypes.string]), - color: PropTypes.string, - target: PropTypes.string, - onClick: PropTypes.func, - }), - ).isRequired, - className: PropTypes.string, - isFetching: PropTypes.bool, - error: PropTypes.object, - errorMessage: PropTypes.string, -} diff --git a/src/components/contentcards/CippAccordionItem.jsx b/src/components/contentcards/CippAccordionItem.jsx deleted file mode 100644 index 98090b58c0c7..000000000000 --- a/src/components/contentcards/CippAccordionItem.jsx +++ /dev/null @@ -1,49 +0,0 @@ -import React from 'react' -import { - CAccordionBody, - CAccordionHeader, - CAccordionItem, - CCard, - CCardBody, - CCardFooter, - CCardHeader, - CCardTitle, -} from '@coreui/react' -import Skeleton from 'react-loading-skeleton' -import PropTypes from 'prop-types' - -export default function CippAccordionItem({ - title, - titleType = 'normal', - CardButton, - children, - isFetching, -}) { - return ( - - {title} - - - - - {titleType === 'big' ?

    {title}

    : title} -
    -
    - - {isFetching && } - {children} - - {CardButton} -
    -
    -
    - ) -} - -CippAccordionItem.propTypes = { - title: PropTypes.string.isRequired, - titleType: PropTypes.string, - CardButton: PropTypes.element.isRequired, - children: PropTypes.element.isRequired, - isFetching: PropTypes.bool.isRequired, -} diff --git a/src/components/contentcards/CippButtonCard.jsx b/src/components/contentcards/CippButtonCard.jsx deleted file mode 100644 index a34acbd66142..000000000000 --- a/src/components/contentcards/CippButtonCard.jsx +++ /dev/null @@ -1,37 +0,0 @@ -import React from 'react' -import { CCard, CCardBody, CCardFooter, CCardHeader, CCardTitle } from '@coreui/react' -import Skeleton from 'react-loading-skeleton' -import PropTypes from 'prop-types' - -export default function CippButtonCard({ - title, - titleType = 'normal', - CardButton, - children, - isFetching = false, - className = 'h-100', -}) { - return ( - - - - {titleType === 'big' ?

    {title}

    : title} -
    -
    - - {isFetching && } - {children} - - {CardButton && {CardButton}} -
    - ) -} - -CippButtonCard.propTypes = { - title: PropTypes.string.isRequired, - titleType: PropTypes.string, - CardButton: PropTypes.element, - children: PropTypes.element.isRequired, - isFetching: PropTypes.bool, - className: PropTypes.string, -} diff --git a/src/components/contentcards/CippChartCard.jsx b/src/components/contentcards/CippChartCard.jsx deleted file mode 100644 index c708ef8e51ad..000000000000 --- a/src/components/contentcards/CippChartCard.jsx +++ /dev/null @@ -1,86 +0,0 @@ -import React from 'react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { CButton, CCard, CCardBody, CCardHeader, CCardTitle } from '@coreui/react' -import { CChart } from '@coreui/react-chartjs' -import { getStyle } from '@coreui/utils' -import PropTypes from 'prop-types' - -export default function CippChartCard({ - title, - titleType = 'normal', - ChartData, - ChartLabels, - ChartType = 'pie', - LegendLocation = 'bottom', - isFetching, - refreshFunction, -}) { - return ( - - - - {titleType === 'big' ?

    {title}

    : title} - {refreshFunction ? ( - - - - ) : ( - - - - )} -
    -
    - - {ChartData && ( - - )} - -
    - ) -} -CippChartCard.propTypes = { - title: PropTypes.string.isRequired, - titleType: PropTypes.oneOf(['normal', 'big']), - ChartData: PropTypes.array.isRequired, - ChartLabels: PropTypes.array.isRequired, - ChartType: PropTypes.oneOf(['pie', 'bar', 'line']), - LegendLocation: PropTypes.oneOf(['top', 'bottom', 'left', 'right']), - isFetching: PropTypes.bool, - refreshFunction: PropTypes.func, -} diff --git a/src/components/contentcards/CippPrettyCard.jsx b/src/components/contentcards/CippPrettyCard.jsx deleted file mode 100644 index b97516e3713c..000000000000 --- a/src/components/contentcards/CippPrettyCard.jsx +++ /dev/null @@ -1,46 +0,0 @@ -import React from 'react' -import { CCard, CCardBody, CCardFooter, CCardHeader, CCardTitle, CCol, CRow } from '@coreui/react' -import Skeleton from 'react-loading-skeleton' -import { CircularProgressbar } from 'react-circular-progressbar' -import 'react-circular-progressbar/dist/styles.css' - -export default function CippPrettyCard({ - title, - titleType = 'normal', - percentage, - topLabel, - smallLabel, - ringcolor = '#f89226', - isFetching, -}) { - return ( - - - - {titleType === 'big' ?

    {title}

    : title} -
    -
    - - {isFetching && } - {!isFetching && ( - - -
    - -
    -
    - -

    {topLabel}

    - {smallLabel} -
    -
    - )} -
    -
    - ) -} diff --git a/src/components/contentcards/DatatableContentCard.jsx b/src/components/contentcards/DatatableContentCard.jsx deleted file mode 100644 index 8d36e493d4a0..000000000000 --- a/src/components/contentcards/DatatableContentCard.jsx +++ /dev/null @@ -1,51 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { CippDatatable } from 'src/components/tables' -import { CippContentCard } from 'src/components/layout' -import Skeleton from 'react-loading-skeleton' - -export default function DatatableContentCard({ - title, - icon, - datatable: { reportName, path, columns, params, ...rest }, - className = null, - isFetching, - error, - errorMessage, -}) { - return ( - - {isFetching && } - {!isFetching && error && <>{errorMessage}} - {!isFetching && !error && ( - - )} - - ) -} - -DatatableContentCard.propTypes = { - title: PropTypes.string.isRequired, - icon: PropTypes.object, - datatable: PropTypes.shape({ - reportName: PropTypes.string, - path: PropTypes.string.isRequired, - columns: PropTypes.array.isRequired, - params: PropTypes.object, - }), - className: PropTypes.string, - isFetching: PropTypes.bool, - error: PropTypes.object, - errorMessage: PropTypes.string, -} diff --git a/src/components/contentcards/ListGroupContentCard.jsx b/src/components/contentcards/ListGroupContentCard.jsx deleted file mode 100644 index eb1e20d4ad3f..000000000000 --- a/src/components/contentcards/ListGroupContentCard.jsx +++ /dev/null @@ -1,88 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { CListGroup, CListGroupItem } from '@coreui/react' -import { CippContentCard } from '../layout' -import Skeleton from 'react-loading-skeleton' -import 'react-loading-skeleton/dist/skeleton.css' -import { CellTip } from 'src/components/tables' - -export default function ListGroupContentCard({ - title, - icon, - content, - className = null, - isFetching, - error, - errorMessage, - tooltip = false, -}) { - let bodyClass = '' - if (!isFetching && !error) { - bodyClass = 'p-0' - } - function bodycontent(item) { - // Wrapping fancy objects with tooltip has bad result so we ensure we only do ones - // that produce legible results - if ( - tooltip && - (typeof item.body === 'string' || - typeof item.body === 'number' || - typeof item.body === 'boolean' || - typeof item.body === 'bigint') - ) { - return CellTip(item.body, true) - } - - return item.body - } - function classcontent(item) { - if (item.className !== undefined) { - return {bodycontent(item) ?? null} - } - return bodycontent(item) ?? null - } - return ( - - {isFetching && } - {!isFetching && error && <>{errorMessage}} - {!isFetching && !error && ( - - {content.map((item, index) => ( - - {item.heading ?
    {item.heading}
    : null} - {classcontent(item)} - {item.link ? {item.linkText ?? 'URL'} : null} -
    - ))} -
    - )} -
    - ) -} - -ListGroupContentCard.propTypes = { - title: PropTypes.string.isRequired, - icon: PropTypes.object, - content: PropTypes.arrayOf( - PropTypes.shape({ - heading: PropTypes.string, - body: PropTypes.any, - link: PropTypes.string, - linkText: PropTypes.string, - className: PropTypes.string, - }), - ).isRequired, - className: PropTypes.string, - isFetching: PropTypes.bool, - error: PropTypes.object, - errorMessage: PropTypes.string, - tooltip: PropTypes.bool, -} diff --git a/src/components/contentcards/TableContentCard.jsx b/src/components/contentcards/TableContentCard.jsx deleted file mode 100644 index 4f2d408424af..000000000000 --- a/src/components/contentcards/TableContentCard.jsx +++ /dev/null @@ -1,53 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' -import { CSpinner } from '@coreui/react' -import { CippTable } from 'src/components/tables' -import { CippContentCard } from 'src/components/layout' - -export default function TableContentCard({ - title, - icon, - table: { reportName, columns, data, ...rest }, - className = null, - isFetching, - error, - errorMessage, -}) { - return ( - - {isFetching && } - {!isFetching && error && <>{errorMessage}} - {!isFetching && !error && ( - - )} - - ) -} - -TableContentCard.propTypes = { - title: PropTypes.string.isRequired, - icon: PropTypes.object, - table: PropTypes.shape({ - reportName: PropTypes.string, - columns: PropTypes.array.isRequired, - data: PropTypes.array.isRequired, - }), - className: PropTypes.string, - isFetching: PropTypes.bool, - error: PropTypes.object, - errorMessage: PropTypes.string, -} diff --git a/src/components/contentcards/index.js b/src/components/contentcards/index.js deleted file mode 100644 index 9acf753eaea0..000000000000 --- a/src/components/contentcards/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import ActionContentCard from 'src/components/contentcards/ActionContentCard' -import ListGroupContentCard from 'src/components/contentcards/ListGroupContentCard' -import DatatableContentCard from 'src/components/contentcards/DatatableContentCard' -import TableContentCard from 'src/components/contentcards/TableContentCard' - -export { ActionContentCard, ListGroupContentCard, DatatableContentCard, TableContentCard } diff --git a/src/components/csvExportButton.js b/src/components/csvExportButton.js new file mode 100644 index 000000000000..8f5c80d49a77 --- /dev/null +++ b/src/components/csvExportButton.js @@ -0,0 +1,46 @@ +import { BackupTableTwoTone } from "@mui/icons-material"; +import { IconButton, Tooltip } from "@mui/material"; +import { mkConfig, generateCsv, download } from "export-to-csv"; +import { getCippFormatting } from "../utils/get-cipp-formatting"; +const csvConfig = mkConfig({ + fieldSeparator: ",", + decimalSeparator: ".", + useKeysAsHeaders: true, +}); + +export const CSVExportButton = (props) => { + const { rows, columns, reportName, columnVisibility } = props; + + const handleExportRows = (rows) => { + const rowData = rows.map((row) => row.original); + const columnKeys = columns.filter((c) => columnVisibility[c.id]).map((c) => c.id); + rowData.forEach((row) => { + Object.keys(row).forEach((key) => { + if (!columnKeys.includes(key)) { + delete row[key]; + } + }); + }); + + //for every existing row, get the valid formatting using getCippFormatting. + const formattedData = rowData.map((row) => { + const formattedRow = {}; + Object.keys(row).forEach((key) => { + formattedRow[key] = getCippFormatting(row[key], key, "text", false); + }); + return formattedRow; + }); + const csv = generateCsv(csvConfig)(formattedData); + csvConfig["filename"] = `${reportName}`; + download(csvConfig)(csv); + }; + return ( + + + handleExportRows(rows)}> + + + + + ); +}; diff --git a/src/components/file-dropzone.js b/src/components/file-dropzone.js new file mode 100644 index 000000000000..166f57cce23f --- /dev/null +++ b/src/components/file-dropzone.js @@ -0,0 +1,80 @@ +import PropTypes from 'prop-types'; +import { useDropzone } from 'react-dropzone'; +import ArrowUpOnSquareIcon from '@heroicons/react/24/outline/ArrowUpOnSquareIcon'; +import { Avatar, Box, SvgIcon, Typography } from '@mui/material'; + +export const FileDropzone = (props) => { + const { accept, caption, maxFiles, maxSize, minSize, onDrop, sx } = props; + const { getRootProps, getInputProps, isDragActive } = useDropzone({ + accept, + maxFiles, + maxSize, + minSize, + onDrop + }); + + return ( + theme.palette.mode === 'dark' + ? 'neutral.800' + : 'neutral.200', + borderRadius: 1, + borderStyle: 'dashed', + borderWidth: 1, + cursor: 'pointer', + display: 'flex', + flexDirection: 'column', + flexWrap: 'wrap', + justifyContent: 'center', + outline: 'none', + width: '100%', + py: 2, + ...(isDragActive && { + borderColor: 'primary.main', + backgroundColor: 'action.hover' + }), + '&:hover': { + borderColor: 'primary.main', + backgroundColor: 'action.hover' + }, + ...sx + }} + {...getRootProps()}> + + + + + + {caption && ( + + {caption} + + )} + + + ); +}; + +FileDropzone.propTypes = { + accept: PropTypes.objectOf(PropTypes.arrayOf(PropTypes.string)), + caption: PropTypes.string, + maxFiles: PropTypes.number, + maxSize: PropTypes.number, + minSize: PropTypes.number, + onDrop: PropTypes.func, + sx: PropTypes.object +}; diff --git a/src/components/filter-dialog-item.js b/src/components/filter-dialog-item.js new file mode 100644 index 000000000000..82c1ef3c71b1 --- /dev/null +++ b/src/components/filter-dialog-item.js @@ -0,0 +1,148 @@ +import { useMemo } from 'react'; +import PropTypes from 'prop-types'; +import PlusIcon from '@heroicons/react/24/outline/PlusIcon'; +import { Button, FilledInput, MenuItem, Select, Stack, TextField, Typography } from '@mui/material'; +import { DatePicker } from '@mui/x-date-pickers'; + +export const FilterDialogItem = (props) => { + const { + disableAdd = false, + displayAdd = false, + filter, + index = 0, + onAdd, + onOperatorChange, + onPropertyChange, + onRemoveFilter, + onValueChange, + operators = [], + properties = [] + } = props; + + const property = useMemo(() => { + return properties.find((property) => property.name === filter.property); + }, [filter, properties]); + + const operator = useMemo(() => { + return operators.find((operator) => operator.name === filter.operator); + }, [filter, operators]); + + const operatorOptions = useMemo(() => { + return (property?.operators || []) + .map((name) => operators.find((operator) => operator.name === name)) + .filter((operator) => !!operator); + }, [property, operators]); + + return ( + + + Where + + + + + + + {operator?.field === 'date' && ( + { + if (date) { + onValueChange?.(index, date); + } + }} + renderInput={(inputProps) => ( + + )} + value={filter.value || null} + /> + )} + {operator?.field === 'string' && ( + onValueChange?.(index, event.target.value)} + value={filter.value || ''} + /> + )} + {operator?.field === 'number' && ( + onValueChange?.(index, event.target.value)} + value={filter.value || ''} + /> + )} + + + {displayAdd && ( + + )} + + + + ); +}; + +FilterDialogItem.propTypes = { + disableAdd: PropTypes.bool, + displayAdd: PropTypes.bool, + filter: PropTypes.object.isRequired, + index: PropTypes.number, + onAdd: PropTypes.func, + onOperatorChange: PropTypes.func, + onPropertyChange: PropTypes.func, + onRemoveFilter: PropTypes.func, + onValueChange: PropTypes.func, + operators: PropTypes.array, + properties: PropTypes.array +}; diff --git a/src/components/filter-dialog.js b/src/components/filter-dialog.js new file mode 100644 index 000000000000..8510767fcf23 --- /dev/null +++ b/src/components/filter-dialog.js @@ -0,0 +1,117 @@ +import { useCallback } from "react"; +import PropTypes from "prop-types"; +import XMarkIcon from "@heroicons/react/24/outline/XMarkIcon"; +import { + Button, + Chip, + Dialog, + DialogActions, + DialogContent, + DialogTitle, + Divider, + IconButton, + Stack, + SvgIcon, + Typography, +} from "@mui/material"; +import { useFilters } from "../hooks/use-filters"; +import { FilterDialogItem } from "./filter-dialog-item"; + +export const FilterDialog = (props) => { + const { + filters = [], + onApply, + onClear, + onClose, + open = false, + operators = [], + properties = [], + } = props; + const filtersController = useFilters(operators, properties, filters); + + const handleApply = useCallback(() => { + if (filtersController.valid) { + onApply?.(filtersController.filters); + } + }, [filtersController.filters, filtersController.valid, onApply]); + + const displayClear = filters.length > 0; + + return ( + + + Filter + + + + + + + + + + + } + > + {filtersController.filters.map((filter, index) => { + const displayAdd = filtersController.filters.length === index + 1; + + return ( + + ); + })} + + + + {displayClear && ( + + )} + + + + ); +}; + +FilterDialog.propTypes = { + onApply: PropTypes.func, + onClear: PropTypes.func, + onClose: PropTypes.func, + open: PropTypes.bool, + operators: PropTypes.array, + properties: PropTypes.array, +}; diff --git a/src/components/forms/RFFComponents.jsx b/src/components/forms/RFFComponents.jsx deleted file mode 100644 index 30e096a71aa8..000000000000 --- a/src/components/forms/RFFComponents.jsx +++ /dev/null @@ -1,621 +0,0 @@ -import { - CButton, - CFormCheck, - CFormFeedback, - CFormInput, - CFormLabel, - CFormSelect, - CFormSwitch, - CFormTextarea, - CSpinner, - CTooltip, -} from '@coreui/react' -import Select from 'react-select' -import Creatable, { useCreatable } from 'react-select/creatable' -import { Field } from 'react-final-form' -import { FieldArray } from 'react-final-form-arrays' -import React, { useState, useMemo } from 'react' -import PropTypes from 'prop-types' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { debounce } from 'lodash-es' - -/* - wrapper classes for React Final Form with CoreUI - */ -const sharedPropTypes = { - name: PropTypes.string.isRequired, - className: PropTypes.string, - label: PropTypes.string, - validate: PropTypes.func, - disabled: PropTypes.bool, - input: PropTypes.shape({ - name: PropTypes.string, - value: PropTypes.any, - onChange: PropTypes.func, - meta: PropTypes.shape({ - touched: PropTypes.bool, - error: PropTypes.any, - }), - }), - onClick: PropTypes.func, -} - -export const RFFCFormFeedback = ({ meta }) => { - return ( - - {meta.touched && meta.error} - - ) -} - -RFFCFormFeedback.propTypes = { - meta: PropTypes.shape({ - error: PropTypes.any, - touched: PropTypes.bool, - }), -} - -export const RFFCFormCheck = ({ - name, - label, - className = 'mb-3', - validate, - disabled = false, - onClick, -}) => { - return ( - - {({ input, meta }) => ( -
    - - -
    - )} -
    - ) -} - -RFFCFormCheck.propTypes = { - ...sharedPropTypes, -} - -function ConditionWrapper({ condition, wrapper, children }) { - return condition ? wrapper(children) : children -} - -export const RFFCFormSwitch = ({ - name, - label, - helpText, - sublabel, - className = 'mb-3', - validate, - disabled = false, - initialValue, - onClick, - defaultValue, -}) => { - return ( - - {({ meta, input }) => ( - ( - - {children} - - )} - > -
    - - {input.value && } - {sublabel} -
    -
    - )} -
    - ) -} - -RFFCFormSwitch.propTypes = { - ...sharedPropTypes, - helpText: PropTypes.string, -} - -export const RFFCFormInput = ({ - name, - label, - type = 'text', - placeholder, - className = 'mb-3', - validate, - disabled = false, - spellCheck = true, - autoFocus = false, - hiddenValue, - defaultValue, - onChange, -}) => { - return ( - - {({ input, meta }) => { - const handleChange = onChange - ? (e) => { - input.onChange(e) - onChange(e) - } - : input.onChange - return ( -
    - {label && {label}} - - -
    - ) - }} -
    - ) -} -RFFCFormInput.propTypes = { - ...sharedPropTypes, - type: PropTypes.oneOf(['color', 'file', 'text', 'password', 'number']), - placeholder: PropTypes.string, -} - -export const RFFCFormInputArray = ({ name, label, className = 'mb-3' }) => { - return ( - <> - - {({ fields }) => ( -
    -
    - {label && ( - - {label} - - )} - fields.push({ Key: '', Value: '' })} - className="circular-button" - title={'+'} - > - - -
    - {fields.map((name, index) => ( -
    -
    - - {({ input, meta }) => { - return - }} - - - {({ input, meta }) => { - return - }} - -
    - fields.remove(index)} - className={`circular-button`} - title={'-'} - > - - -
    - ))} -
    - )} -
    - - ) -} -RFFCFormInputArray.propTypes = { - ...sharedPropTypes, -} - -export const RFFCFormInputList = ({ name, label, className = 'mb-3' }) => { - return ( - <> - - {({ fields }) => ( -
    -
    - {label && ( - - {label} - - )} - fields.push({ Key: '', Value: '' })} - className="circular-button" - title={'+'} - > - - -
    - {fields.map((name, index) => ( -
    -
    - - {({ input, meta }) => { - return - }} - -
    - fields.remove(index)} - className={`circular-button`} - title={'-'} - > - - -
    - ))} -
    - )} -
    - - ) -} -RFFCFormInputList.propTypes = { - ...sharedPropTypes, -} - -export const RFFCFormRadio = ({ - name, - label, - value, - className = 'mb-3', - validate, - disabled = false, - onClick, -}) => { - return ( - - {({ meta, input }) => ( -
    - - -
    - )} -
    - ) -} - -RFFCFormRadio.propTypes = { - ...sharedPropTypes, -} - -export const RFFCFormRadioList = ({ - name, - options, - className = 'mb-3', - onClick, - inline = false, -}) => { - return ( - <> -
    - {options?.map((option, key) => { - return ( - - {({ input }) => { - return ( - <> - - - ) - }} - - ) - })} -
    - - ) -} - -RFFCFormRadioList.propTypes = { - ...sharedPropTypes, - inline: PropTypes.bool, -} - -export const RFFCFormTextarea = ({ - name, - label, - value, - placeholder, - className = 'mb-3', - validate, - disabled = false, -}) => { - return ( - - {({ meta, input }) => { - return ( -
    - {label} - - -
    - ) - }} -
    - ) -} - -RFFCFormTextarea.propTypes = { - ...sharedPropTypes, - placeholder: PropTypes.string, -} - -export const RFFCFormSelect = ({ - name, - label, - values = [], - placeholder, - className = 'mb-3', - validate, - disabled = false, - props, -}) => { - // handler for ignoring the first element ('the placeholder') - const selectValidate = (value, allValues, meta) => { - if (validate) { - if (value !== placeholder) { - return validate(value, allValues, meta) - } - return null - } - } - - return ( - - {({ input, meta }) => ( -
    - {label && {label}} - - - {values.map(({ label, value, ...props }, idx) => ( - - ))} - - -
    - )} -
    - ) -} - -RFFCFormSelect.propTypes = { - ...sharedPropTypes, - placeholder: PropTypes.string.isRequired, - values: PropTypes.arrayOf(PropTypes.shape({ label: PropTypes.string, value: PropTypes.any })), -} - -export function Condition({ when, is, children, like, regex }) { - return ( - <> - {is !== undefined && ( - - {({ input: { value } }) => { - return value === is ? children : null - }} - - )} - {like !== undefined && ( - - {({ input: { value } }) => { - return value.includes(like) ? children : null - }} - - )} - {regex !== undefined && ( - - {({ input: { value } }) => { - return value.match(regex) ? children : null - }} - - )} - - ) -} - -Condition.propTypes = { - when: PropTypes.string.isRequired, - is: PropTypes.any, - like: PropTypes.string, - regex: PropTypes.oneOfType([PropTypes.object, PropTypes.string]), - children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]), -} - -export const RFFSelectSearch = ({ - name, - label, - values = [], - placeholder, - validate, - onChange, - onInputChange, - multi, - disabled = false, - retainInput = true, - isLoading = false, - allowCreate = false, - onCreateOption, - refreshFunction, - ...props -}) => { - const [inputText, setInputText] = useState('') - const selectSearchValues = values.map((val) => ({ - value: val.value, - label: val.name, - ...val.props, - })) - - const debounceOnInputChange = useMemo(() => { - if (onInputChange) { - return debounce(onInputChange, 1000) - } - }, [onInputChange]) - - const setOnInputChange = (e, action) => { - if (retainInput && action.action !== 'set-value') { - setInputText(e) - } - if (onInputChange && action.action === 'input-change') { - debounceOnInputChange(e) - } - } - - return ( - - {({ meta, input }) => { - const handleChange = (e) => { - if (onChange) { - onChange(e) - } - input.onChange(e) - } - - const selectProps = { - classNamePrefix: 'react-select', - ...input, - name, - id: name, - disabled, - options: selectSearchValues, - placeholder, - isMulti: multi, - inputValue: inputText, - isLoading, - onChange: handleChange, - onInputChange: setOnInputChange, - ...props, - //merge className from props into the default className - className: props.className - ? `${props.className} react-select-container` - : 'react-select-container', - } - - return ( -
    - - {label} - {refreshFunction && ( - - - - - - )} - - {allowCreate ? ( - - ) : ( - Switchusage(e)} - /> - - - - ) -} - -export default ReportImage diff --git a/src/components/utilities/SharedModal.jsx b/src/components/utilities/SharedModal.jsx deleted file mode 100644 index 9167b7a2073b..000000000000 --- a/src/components/utilities/SharedModal.jsx +++ /dev/null @@ -1,138 +0,0 @@ -import React from 'react' -import { CButton, CModal, CModalBody, CModalFooter, CModalHeader, CModalTitle } from '@coreui/react' -import PropTypes from 'prop-types' -import { CippTable } from 'src/components/tables' -import CippCodeBlock from 'src/components/utilities/CippCodeBlock' - -/** - * - * @param componentType - * @param {string|array} data - * @param componentProps - * @returns {JSX.Element|string} - */ -function mapBodyComponent({ componentType, data, componentProps }) { - switch (componentType) { - case 'table': - return - case 'list': - return
    {Array.isArray(data) && data.map((el, idx) =>
    {el}
    )}
    - case 'text': - return String(data) - case 'codeblock': - return ( - - ) - default: - return String(data) - } -} - -const sharedProps = { - componentType: PropTypes.oneOf(['table', 'list', 'text', 'confirm', 'codeblock']), - componentProps: PropTypes.object, - body: PropTypes.oneOfType([PropTypes.node, PropTypes.element]), - data: PropTypes.any, - title: PropTypes.string, - visible: PropTypes.bool, - size: PropTypes.oneOf(['sm', 'lg', 'xl']), - onClose: PropTypes.func, -} - -export default function SharedModal(props) { - const { - componentType = 'text', - componentProps = {}, - body = false, - data, - title, - visible = true, - size, - onClose = () => {}, - close, - ...rest - } = props - - const handleClose = () => { - onClose() - close() - } - //console.log('show modal', { props }, { rest }) - - if (componentType === 'confirm') { - return - } - - return ( - - - {title} - - - {!body && mapBodyComponent({ componentType, data, componentProps })} - {body} - - - - Close - - - - ) -} - -SharedModal.propTypes = { - ...sharedProps, -} - -export const ConfirmModal = ({ - componentType = 'text', - componentProps = {}, - body = false, - data, - title, - visible, - size, - close, - onClose = () => {}, - onConfirm = () => {}, - confirmLabel = 'Continue', - cancelLabel = 'Cancel', -}) => { - const handleClose = () => { - onClose() - close() - } - - const handleConfirm = () => { - onConfirm() - close() - } - - return ( - - - {title} - - - {!body && mapBodyComponent({ componentType, data, componentProps })} - {body} - - - - {confirmLabel} - - - {cancelLabel} - - - - ) -} - -ConfirmModal.propTypes = { - ...sharedProps, - onConfirm: PropTypes.func, - confirmLabel: PropTypes.string, - cancelLabel: PropTypes.string, -} diff --git a/src/components/utilities/StatusIcon.jsx b/src/components/utilities/StatusIcon.jsx deleted file mode 100644 index 990d2ec8a21a..000000000000 --- a/src/components/utilities/StatusIcon.jsx +++ /dev/null @@ -1,55 +0,0 @@ -import React from 'react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { - faCheckCircle, - faExclamationTriangle, - faTimesCircle, -} from '@fortawesome/free-solid-svg-icons' -import PropTypes from 'prop-types' - -const IconGreenCheck = () => -const IconRedX = () => -const IconWarning = () => ( - -) - -function StatusIcon(props) { - if (props.type === 'finalstate') { - const finalState = props.finalState - if (finalState === 'Pass') { - return - } else if (finalState === 'Fail') { - return - } else if (finalState === 'Warn') { - return - } else { - return '' - } - } else if (props.type === 'boolean') { - const status = props.status - if (status === true) { - return - } else if (status === false) { - return - } else { - return '' - } - } else if (props.type === 'negatedboolean') { - const status = props.status - if (status === false) { - return - } else if (status === true) { - return - } else { - return '' - } - } -} - -export default StatusIcon - -StatusIcon.propTypes = { - finalState: PropTypes.string, - status: PropTypes.bool, - type: PropTypes.string, -} diff --git a/src/components/utilities/TenantListSelector.jsx b/src/components/utilities/TenantListSelector.jsx deleted file mode 100644 index f9c23e1a0330..000000000000 --- a/src/components/utilities/TenantListSelector.jsx +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react' -import { CFormSwitch, CRow, CCol } from '@coreui/react' -import { useDispatch, useSelector } from 'react-redux' -import { setTenantList } from 'src/store/features/app' - -const TenantListSelector = () => { - const dispatch = useDispatch() - const TenantListSelector = useSelector((state) => state.app.TenantListSelector) - - const SwitchPageSize = (value) => { - dispatch(setTenantList({ TenantListSelector: value })) - } - - return ( - - - SwitchPageSize(e.target.checked)} - initialValue={TenantListSelector} - name="TenantListSelector" - label="Show compressed tenant list" - /> - - - ) -} - -export default TenantListSelector diff --git a/src/components/utilities/TenantSelector.jsx b/src/components/utilities/TenantSelector.jsx deleted file mode 100644 index 36a9bd8764e7..000000000000 --- a/src/components/utilities/TenantSelector.jsx +++ /dev/null @@ -1,146 +0,0 @@ -import React, { useCallback, useEffect } from 'react' -import SelectSearch, { fuzzySearch } from 'react-select-search' -import { useDispatch, useSelector } from 'react-redux' -import PropTypes from 'prop-types' -import { useListTenantsQuery } from 'src/store/api/tenants' -import { setCurrentTenant } from 'src/store/features/app' -import { CButton } from '@coreui/react' -import { useNavigate, useSearchParams } from 'react-router-dom' -import { queryString } from 'src/helpers' -import { faBuilding } from '@fortawesome/free-solid-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import CippTenantOffcanvas from './CippTenantOffcanvas' -import CippfuzzySearch from './CippFuzzySearch' - -const TenantSelector = ({ action, showAllTenantSelector = true, NavSelector = false }) => { - const [refreshState, setRefreshState] = React.useState(false) - const currentTenant = useSelector((state) => state.app.currentTenant) - const { - data: tenants = [ - { - defaultDomainName: '', - customerId: '', - displayName: 'Did not retrieve tenants. Perform a permissions check', - }, - ], - isLoading, - isFetching, - isSuccess, - error, - } = useListTenantsQuery({ showAllTenantSelector, Refresh: refreshState }) - - const dispatch = useDispatch() - const navigate = useNavigate() - const [searchParams, setSearchParams] = useSearchParams() - - const updateSearchParams = useCallback( - (params) => { - navigate(`${queryString(params)}`, { replace: true }) - }, - [navigate], - ) - - useEffect(() => { - const Paramcount = Array.from(searchParams).length - if (Paramcount <= 1) { - const customerId = searchParams.get('customerId') - const tableFilter = searchParams.get('tableFilter') - var newSearchParams = {} - if (tableFilter) { - newSearchParams.tableFilter = tableFilter - } - if (customerId && isSuccess) { - const currentTenant = tenants.filter((tenant) => tenant.customerId === customerId) - if (currentTenant.length > 0) { - dispatch(setCurrentTenant({ tenant: currentTenant[0] })) - } - } - if (!customerId && Object.keys(currentTenant).length > 0) { - newSearchParams.customerId = currentTenant?.customerId - updateSearchParams(newSearchParams) - } - } - }, [dispatch, isSuccess, searchParams, currentTenant, tenants, updateSearchParams]) - - const activated = (customerId) => { - const selectedTenant = tenants.filter((t) => { - return t.customerId === customerId - }) - dispatch(setCurrentTenant({ tenant: selectedTenant[0] })) - if (typeof action === 'function') { - action(selectedTenant[0]) - } else { - setSearchParams({ customerId: customerId }) - } - } - - let placeholder = 'Select Tenant' - if (isLoading) { - placeholder = 'Loading...' - } else if (error) { - placeholder = 'Error loading tenants' - } - - return ( - <> - {NavSelector && ( - <> - {currentTenant?.customerId !== 'AllTenants' ? ( - - ) : ( - - - - )} -
    - ({ - value: customerId, - name: `${displayName} (${defaultDomainName})`, - }))} - /> - - //set a random number to force a refresh - setRefreshState(Math.random()) - } - variant="ghost" - className="ml-2" - > - - -
    - - )} - {!NavSelector && ( - ({ - value: customerId, - name: [displayName] + [` (${defaultDomainName})`], - }))} - /> - )} - - ) -} - -TenantSelector.propTypes = { - action: PropTypes.func, - NavSelector: PropTypes.bool, - showAllTenantSelector: PropTypes.bool, -} - -export default TenantSelector diff --git a/src/components/utilities/TenantSelectorMultiple.jsx b/src/components/utilities/TenantSelectorMultiple.jsx deleted file mode 100644 index 63f560f7f4a0..000000000000 --- a/src/components/utilities/TenantSelectorMultiple.jsx +++ /dev/null @@ -1,58 +0,0 @@ -import React from 'react' -import { useListTenantsQuery } from 'src/store/api/tenants' -import Select from 'react-select' -import PropTypes from 'prop-types' - -const TenantSelectorMultiple = React.forwardRef( - ( - { values = [], onChange = () => {}, AllTenants = false, valueIsDomain = false, ...rest }, - ref, - ) => { - const { - data: tenants = [], - isLoading, - error, - } = useListTenantsQuery({ showAllTenantSelector: AllTenants }) - - let placeholder = 'Select Tenants' - if (isLoading) { - placeholder = 'Loading...' - } else if (error) { - placeholder = 'Error loading tenants' - } - const mappedValue = values.map((val) => val.value) - return ( - ({ - value: Code, - label: Name, - }))} - isClearable={true} - name="usageLocation" - value={usagelocation} - placeholder="Type to search..." - label="Usage Location" - onChange={(value) => Switchusage(value)} - /> - - ) -} - -export default UsageLocation diff --git a/src/components/utilities/index.js b/src/components/utilities/index.js deleted file mode 100644 index 24fed1e5aecb..000000000000 --- a/src/components/utilities/index.js +++ /dev/null @@ -1,48 +0,0 @@ -import CippActionsOffcanvas from 'src/components/utilities/CippActionsOffcanvas' -import CippCodeOffCanvas from 'src/components/utilities/CippCodeOffcanvas.jsx' -import CippCodeBlock from 'src/components/utilities/CippCodeBlock' -import { CippLazy } from 'src/components/utilities/CippLazy' -import CippOffcanvas from 'src/components/utilities/CippOffcanvas' -import CippProfile from 'src/components/utilities/CippProfile' -import ErrorBoundary from 'src/components/utilities/ErrorBoundary' -import { FastSwitcher, FastSwitcherModal } from 'src/components/utilities/FastSwitcher' -import Loading, { FullScreenLoading } from 'src/components/utilities/Loading' -import { ModalRoot, ModalService } from 'src/components/utilities/ModalRoot' -import { PrivateRoute } from 'src/components/utilities/PrivateRoute' -import SharedModal from 'src/components/utilities/SharedModal' -import StatusIcon from 'src/components/utilities/StatusIcon' -import TenantSelector from 'src/components/utilities/TenantSelector' -import TenantSelectorMultiple from 'src/components/utilities/TenantSelectorMultiple' -import ThemeSwitcher from 'src/components/utilities/ThemeSwitcher' -import PageSizeSwitcher from 'src/components/utilities/PageSizeSwitcher' -import Toasts from 'src/components/utilities/Toasts' -import UsageLocation from 'src/components/utilities/UsageLocation' -import CippTableOffcanvas from './CippTableOffcanvas' -import validateAlphabeticalSort from './validateAlphabeticalSort' - -export { - CippActionsOffcanvas, - CippCodeBlock, - CippCodeOffCanvas, - CippTableOffcanvas, - CippLazy, - CippOffcanvas, - CippProfile, - ErrorBoundary, - FastSwitcher, - FastSwitcherModal, - Loading, - FullScreenLoading, - ModalRoot, - ModalService, - PrivateRoute, - SharedModal, - StatusIcon, - TenantSelector, - TenantSelectorMultiple, - ThemeSwitcher, - PageSizeSwitcher, - Toasts, - UsageLocation, - validateAlphabeticalSort, -} diff --git a/src/components/utilities/validateAlphabeticalSort.jsx b/src/components/utilities/validateAlphabeticalSort.jsx deleted file mode 100644 index ff19bc21023e..000000000000 --- a/src/components/utilities/validateAlphabeticalSort.jsx +++ /dev/null @@ -1,23 +0,0 @@ -export default function validateAlphabeticalSort(data, sortKeys) { - if (!sortKeys || sortKeys.length === 0) return data - try { - if (!data) return data - const newList = data.filter((element) => { - return sortKeys.every((key) => { - return (element) => element[key] != null && element[key] != undefined - }) - }) - return newList.sort((a, b) => { - try { - return sortKeys.reduce((acc, key) => { - if (acc !== 0) return acc - return (a[key] ?? '').toString().localeCompare(b[key] ?? '') - }, 0) - } catch (error) { - return 0 - } - }) - } catch (error) { - return data - } -} diff --git a/src/components/widget-previewer.js b/src/components/widget-previewer.js new file mode 100644 index 000000000000..396fa976f765 --- /dev/null +++ b/src/components/widget-previewer.js @@ -0,0 +1,41 @@ +import PropTypes from 'prop-types'; +import { Card, Stack, Typography } from '@mui/material'; + +export const WidgetPreviewer = (props) => { + const { title, description, children, ...other } = props; + + return ( + + + {typeof title === 'string' + ? ( + + {title} + + ) + : title} + {typeof description === 'string' + ? ( + + {description} + + ) + : description} + + + {children} + + + ); +}; + +WidgetPreviewer.propTypes = { + children: PropTypes.node.isRequired, + description: PropTypes.oneOfType([PropTypes.string, PropTypes.node]), + title: PropTypes.oneOfType([PropTypes.string, PropTypes.node]) +}; diff --git a/src/contexts/settings-context.js b/src/contexts/settings-context.js new file mode 100644 index 000000000000..76a29de26948 --- /dev/null +++ b/src/contexts/settings-context.js @@ -0,0 +1,153 @@ +import { createContext, useCallback, useEffect, useMemo, useState } from "react"; +import PropTypes from "prop-types"; +import isEqual from "lodash.isequal"; + +const STORAGE_KEY = "app.settings"; + +let storage; + +class MemoryStorage { + get length() { + return this.store.size; + } + + store = new Map(); + + clear() { + this.store.clear(); + } + + getItem(key) { + return this.store.get(key); + } + + removeItem(key) { + this.store.delete(key); + } + + setItem(key, value) { + this.store.set(key, value); + } + + key(index) { + return Array.from(this.store.values())[index] || null; + } +} + +try { + storage = globalThis.localStorage; +} catch (err) { + console.error("[Settings Context] Local storage is not available", err); + storage = new MemoryStorage(); +} + +const restoreSettings = () => { + let value = null; + + try { + const restored = storage.getItem(STORAGE_KEY); + + if (restored) { + value = JSON.parse(restored); + } + } catch (err) { + console.error(err); + // If stored data is not a strigified JSON this will fail, + // that's why we catch the error + } + + return value; +}; + +const deleteSettings = () => { + storage.removeItem(STORAGE_KEY); +}; + +const storeSettings = (value) => { + storage.setItem(STORAGE_KEY, JSON.stringify(value)); +}; + +const initialSettings = { + direction: "ltr", + paletteMode: "light", + pinNav: true, + currentTenant: null, +}; + +const initialState = { + ...initialSettings, + isInitialized: false, +}; + +export const SettingsContext = createContext({ + ...initialState, + handleReset: () => {}, + handleUpdate: () => {}, + isCustom: false, +}); + +export const SettingsProvider = (props) => { + const { children } = props; + const [state, setState] = useState(initialState); + + useEffect(() => { + const restored = restoreSettings(); + + if (restored) { + setState((prevState) => ({ + ...prevState, + ...restored, + isInitialized: true, + })); + } + }, []); + + const handleReset = useCallback(() => { + deleteSettings(); + setState((prevState) => ({ + ...prevState, + ...initialSettings, + })); + }, []); + + const handleUpdate = useCallback((settings) => { + setState((prevState) => { + storeSettings({ + ...prevState, + ...settings, + }); + + return { + ...prevState, + ...settings, + }; + }); + }, []); + + const isCustom = useMemo(() => { + return !isEqual(initialSettings, { + direction: state.direction, + paletteMode: state.paletteMode, + pinNav: state.pinNav, + }); + }, [state]); + + return ( + + {children} + + ); +}; + +SettingsProvider.propTypes = { + children: PropTypes.node.isRequired, +}; + +export const SettingsConsumer = SettingsContext.Consumer; diff --git a/src/data/AuditLogSchema.json b/src/data/AuditLogSchema.json index 35530d0fb583..4ed181f46654 100644 --- a/src/data/AuditLogSchema.json +++ b/src/data/AuditLogSchema.json @@ -71,904 +71,904 @@ "LogonError": "String" }, "List:Operation": [ - { "value": "UserLoggedIn", "name": "A user logged in" }, - { "value": "mailitemsaccessed", "name": "accessed mailbox items" }, - { "value": "add delegation entry.", "name": "added delegation entry" }, - { "value": "add domain to company.", "name": "added domain to company" }, - { "value": "add group.", "name": "added group" }, - { "value": "add member to group.", "name": "added member to group" }, - { "value": "add-mailboxpermission", "name": "added delegate mailbox permissions" }, - { "value": "add member to role.", "name": "added member to role" }, - { "value": "add partner to company.", "name": "added a partner to the directory" }, - { "value": "add service principal.", "name": "added service principal" }, + { "value": "UserLoggedIn", "label": "A user logged in" }, + { "value": "mailitemsaccessed", "label": "accessed mailbox items" }, + { "value": "add delegation entry.", "label": "added delegation entry" }, + { "value": "add domain to company.", "label": "added domain to company" }, + { "value": "add group.", "label": "added group" }, + { "value": "add member to group.", "label": "added member to group" }, + { "value": "add-mailboxpermission", "label": "added delegate mailbox permissions" }, + { "value": "add member to role.", "label": "added member to role" }, + { "value": "add partner to company.", "label": "added a partner to the directory" }, + { "value": "add service principal.", "label": "added service principal" }, { "value": "add service principal credentials.", - "name": "added credentials to a service principal" - }, - { "value": "add user.", "name": "added user" }, - { "value": "addfolderpermissions", "name": "added permissions to folder" }, - { "value": "applyrecordlabel", "name": "labeled message as a record" }, - { "value": "change user license.", "name": "changed user license" }, - { "value": "change user password.", "name": "changed user password" }, - { "value": "copy", "name": "copied messages to another folder" }, - { "value": "create", "name": "created mailbox item" }, - { "value": "delete group.", "name": "deleted group" }, - { "value": "delete user.", "name": "deleted user" }, - { "value": "harddelete", "name": "purged messages from the mailbox" }, - { "value": "mailboxlogin", "name": "user signed in to mailbox" }, - { "value": "move", "name": "moved messages to another folder" }, - { "value": "movetodeleteditems", "name": "moved messages to deleted items folder" }, - { "value": "new-inboxrule", "name": "created new inbox rule in outlook web app" }, - { "value": "remove delegation entry.", "name": "removed delegation entry" }, - { "value": "remove domain from company.", "name": "removed domain from company" }, - { "value": "remove member from group.", "name": "removed member from group" }, - { "value": "remove member from a role.", "name": "remove member from a role" }, - { "value": "Disable Strong Authentication.", "name": "Disable Strong Authentication." }, + "label": "added credentials to a service principal" + }, + { "value": "add user.", "label": "added user" }, + { "value": "addfolderpermissions", "label": "added permissions to folder" }, + { "value": "applyrecordlabel", "label": "labeled message as a record" }, + { "value": "change user license.", "label": "changed user license" }, + { "value": "change user password.", "label": "changed user password" }, + { "value": "copy", "label": "copied messages to another folder" }, + { "value": "create", "label": "created mailbox item" }, + { "value": "delete group.", "label": "deleted group" }, + { "value": "delete user.", "label": "deleted user" }, + { "value": "harddelete", "label": "purged messages from the mailbox" }, + { "value": "mailboxlogin", "label": "user signed in to mailbox" }, + { "value": "move", "label": "moved messages to another folder" }, + { "value": "movetodeleteditems", "label": "moved messages to deleted items folder" }, + { "value": "new-inboxrule", "label": "created new inbox rule in outlook web app" }, + { "value": "remove delegation entry.", "label": "removed delegation entry" }, + { "value": "remove domain from company.", "label": "removed domain from company" }, + { "value": "remove member from group.", "label": "removed member from group" }, + { "value": "remove member from a role.", "label": "remove member from a role" }, + { "value": "Disable Strong Authentication.", "label": "Disable Strong Authentication." }, { "value": "remove service principal.", - "name": "removed a service principal from the directory" + "label": "removed a service principal from the directory" }, { "value": "remove service principal credentials.", - "name": "removed credentials from a service principal" - }, - { "value": "remove-mailboxpermission", "name": "removed delegate mailbox permissions" }, - { "value": "remove member from role.", "name": "removed a user from a directory role" }, - { "value": "remove partner from company.", "name": "removed a partner from the directory" }, - { "value": "removefolderpermissions", "name": "removed permissions from folder" }, - { "value": "reset user password.", "name": "reset user password" }, - { "value": "send", "name": "sent message" }, - { "value": "sendas", "name": "sent message using send as permissions" }, - { "value": "sendonbehalf", "name": "sent message using send on behalf permissions" }, - { "value": "set company contact information.", "name": "set company contact information" }, - { "value": "set company information.", "name": "set company information" }, - { "value": "set delegation entry.", "name": "set delegation entry" }, - { "value": "set dirsyncenabled flag.", "name": "turned on azure ad sync" }, - { "value": "set domain authentication.", "name": "set domain authentication" }, + "label": "removed credentials from a service principal" + }, + { "value": "remove-mailboxpermission", "label": "removed delegate mailbox permissions" }, + { "value": "remove member from role.", "label": "removed a user from a directory role" }, + { "value": "remove partner from company.", "label": "removed a partner from the directory" }, + { "value": "removefolderpermissions", "label": "removed permissions from folder" }, + { "value": "reset user password.", "label": "reset user password" }, + { "value": "send", "label": "sent message" }, + { "value": "sendas", "label": "sent message using send as permissions" }, + { "value": "sendonbehalf", "label": "sent message using send on behalf permissions" }, + { "value": "set company contact information.", "label": "set company contact information" }, + { "value": "set company information.", "label": "set company information" }, + { "value": "set delegation entry.", "label": "set delegation entry" }, + { "value": "set dirsyncenabled flag.", "label": "turned on azure ad sync" }, + { "value": "set domain authentication.", "label": "set domain authentication" }, { "value": "set federation settings on domain.", - "name": "updated the federation settings for a domain" + "label": "updated the federation settings for a domain" }, { "value": "set force change user password.", - "name": "set property that forces user to change password" + "label": "set property that forces user to change password" }, - { "value": "set-inboxrule", "name": "modified inbox rule from outlook web app" }, - { "value": "set license properties.", "name": "set license properties" }, - { "value": "set password policy.", "name": "set password policy" }, - { "value": "softdelete", "name": "deleted messages from deleted items folder" }, - { "value": "update", "name": "updated message" }, - { "value": "update user.", "name": "updated user" }, - { "value": "update group.", "name": "updated group" }, - { "value": "update domain.", "name": "updated domain" }, + { "value": "set-inboxrule", "label": "modified inbox rule from outlook web app" }, + { "value": "set license properties.", "label": "set license properties" }, + { "value": "set password policy.", "label": "set password policy" }, + { "value": "softdelete", "label": "deleted messages from deleted items folder" }, + { "value": "update", "label": "updated message" }, + { "value": "update user.", "label": "updated user" }, + { "value": "update group.", "label": "updated group" }, + { "value": "update domain.", "label": "updated domain" }, { "value": "updatecalendardelegation", - "name": "added or removed user with delegate access to calendar folder" + "label": "added or removed user with delegate access to calendar folder" }, - { "value": "updatefolderpermissions", "name": "modified folder permission" }, - { "value": "updateinboxrules", "name": "updated inbox rules from outlook client" }, - { "value": "verify domain.", "name": "verified domain" }, - { "value": "verify email verified domain.", "name": "verified email verified domain" }, + { "value": "updatefolderpermissions", "label": "modified folder permission" }, + { "value": "updateinboxrules", "label": "updated inbox rules from outlook client" }, + { "value": "verify domain.", "label": "verified domain" }, + { "value": "verify email verified domain.", "label": "verified email verified domain" }, { "value": "Update StsRefreshTokenValidFrom Timestamp.", - "name": "Update StsRefreshTokenValidFrom Timestamp." + "label": "Update StsRefreshTokenValidFrom Timestamp." } ], "List:LogonType": [ - { "value": 0, "Membername": "Owner", "name": "The mailbox owner." }, + { "value": 0, "Membername": "Owner", "label": "The mailbox owner." }, { "value": 1, "Membername": "Admin", - "name": "A person with administrative privileges for someone's mailbox." + "label": "A person with administrative privileges for someone's mailbox." }, { "value": 2, "Membername": "Delegated", - "name": "A person with delegate privileges for someone's mailbox." + "label": "A person with delegate privileges for someone's mailbox." }, { "value": 3, "Membername": "Transport", - "name": "A transport service in the Microsoft datacenter." + "label": "A transport service in the Microsoft datacenter." }, { "value": 4, "Membername": "SystemService", - "name": "A service account in the Microsoft datacenter" + "label": "A service account in the Microsoft datacenter" }, - { "value": 5, "Membername": "BestAccess", "name": "Reserved for internal use." }, - { "value": 6, "Membername": "DelegatedAdmin", "name": "A delegated administrator." } + { "value": 5, "Membername": "BestAccess", "label": "Reserved for internal use." }, + { "value": 6, "Membername": "DelegatedAdmin", "label": "A delegated administrator." } ], "List:UserType": [ - { "value": 0, "Membername": "Regular", "name": "A regular user." }, - { "value": 1, "Membername": "Reserved", "name": "A reserved user." }, - { "value": 2, "Membername": "Admin", "name": "An administrator." }, - { "value": 3, "Membername": "DcAdmin", "name": "A Microsoft datacenter operator." }, - { "value": 4, "Membername": "System", "name": "A system account." }, - { "value": 5, "Membername": "Application", "name": "An application." }, - { "value": 6, "Membername": "ServicePrincipal", "name": "A service principal." }, - { "value": 7, "Membername": "CustomPolicy", "name": "A custom policy." }, - { "value": 8, "Membername": "SystemPolicy", "name": "A system policy." } + { "value": 0, "Membername": "Regular", "label": "A regular user." }, + { "value": 1, "Membername": "Reserved", "label": "A reserved user." }, + { "value": 2, "Membername": "Admin", "label": "An administrator." }, + { "value": 3, "Membername": "DcAdmin", "label": "A Microsoft datacenter operator." }, + { "value": 4, "Membername": "System", "label": "A system account." }, + { "value": 5, "Membername": "Application", "label": "An application." }, + { "value": 6, "Membername": "ServicePrincipal", "label": "A service principal." }, + { "value": 7, "Membername": "CustomPolicy", "label": "A custom policy." }, + { "value": 8, "Membername": "SystemPolicy", "label": "A system policy." } ], "List:AuditLogRecordType": [ { "value": 1, "Membername": "ExchangeAdmin", - "name": "Events from the Exchange admin audit log." + "label": "Events from the Exchange admin audit log." }, { "value": 2, "Membername": "ExchangeItem", - "name": "Events from an Exchange mailbox audit log for actions that are performed on a single item, such as creating or receiving an email message." + "label": "Events from an Exchange mailbox audit log for actions that are performed on a single item, such as creating or receiving an email message." }, { "value": 3, "Membername": "ExchangeItemGroup", - "name": "Events from an Exchange mailbox audit log for actions that can be performed on multiple items, such as moving or deleted one or more email messages." + "label": "Events from an Exchange mailbox audit log for actions that can be performed on multiple items, such as moving or deleted one or more email messages." }, - { "value": 4, "Membername": "SharePoint", "name": "SharePoint events." }, + { "value": 4, "Membername": "SharePoint", "label": "SharePoint events." }, { "value": 6, "Membername": "SharePointFileOperation", - "name": "SharePoint file operation events." + "label": "SharePoint file operation events." }, - { "value": 7, "Membername": "OneDrive", "name": "OneDrive for Business events." }, + { "value": 7, "Membername": "OneDrive", "label": "OneDrive for Business events." }, { "value": 8, "Membername": "AzureActiveDirectory", - "name": "Microsoft Entra ID events." + "label": "Microsoft Entra ID events." }, { "value": 9, "Membername": "AzureActiveDirectoryAccountLogon", - "name": "Microsoft Entra ID OrgId logon events (deprecated)." + "label": "Microsoft Entra ID OrgId logon events (deprecated)." }, { "value": 10, "Membername": "DataCenterSecurityCmdlet", - "name": "Data Center security cmdlet events." + "label": "Data Center security cmdlet events." }, { "value": 11, "Membername": "ComplianceDLPSharePoint", - "name": "Data loss protection (DLP) events in SharePoint and OneDrive for Business." + "label": "Data loss protection (DLP) events in SharePoint and OneDrive for Business." }, { "value": 13, "Membername": "ComplianceDLPExchange", - "name": "Data loss protection (DLP) events in Exchange, when configured via Unified DLP Policy. DLP events based on Exchange Transport Rules are not supported." + "label": "Data loss protection (DLP) events in Exchange, when configured via Unified DLP Policy. DLP events based on Exchange Transport Rules are not supported." }, { "value": 14, "Membername": "SharePointSharingOperation", - "name": "SharePoint sharing events." + "label": "SharePoint sharing events." }, { "value": 15, "Membername": "AzureActiveDirectoryStsLogon", - "name": "Secure Token Service (STS) logon events in Microsoft Entra ID." + "label": "Secure Token Service (STS) logon events in Microsoft Entra ID." }, { "value": 16, "Membername": "SkypeForBusinessPSTNUsage", - "name": "Public Switched Telephone Network (PSTN) events from Skype for Business." + "label": "Public Switched Telephone Network (PSTN) events from Skype for Business." }, { "value": 17, "Membername": "SkypeForBusinessUsersBlocked", - "name": "Blocked user events from Skype for Business." + "label": "Blocked user events from Skype for Business." }, { "value": 18, "Membername": "SecurityComplianceCenterEOPCmdlet", - "name": "Admin actions from the Security & Compliance Center." + "label": "Admin actions from the Security & Compliance Center." }, { "value": 19, "Membername": "ExchangeAggregatedOperation", - "name": "Aggregated Exchange mailbox auditing events." + "label": "Aggregated Exchange mailbox auditing events." }, - { "value": 20, "Membername": "PowerBIAudit", "name": "Power BI events." }, - { "value": 21, "Membername": "CRM", "name": "Dynamics 365 events." }, - { "value": 22, "Membername": "Yammer", "name": "Yammer events." }, + { "value": 20, "Membername": "PowerBIAudit", "label": "Power BI events." }, + { "value": 21, "Membername": "CRM", "label": "Dynamics 365 events." }, + { "value": 22, "Membername": "Yammer", "label": "Yammer events." }, { "value": 23, "Membername": "SkypeForBusinessCmdlets", - "name": "Skype for Business events." + "label": "Skype for Business events." }, { "value": 24, "Membername": "Discovery", - "name": "Events for eDiscovery activities performed by running content searches and managing eDiscovery cases in the Security & Compliance Center." + "label": "Events for eDiscovery activities performed by running content searches and managing eDiscovery cases in the Security & Compliance Center." }, - { "value": 25, "Membername": "MicrosoftTeams", "name": "Events from Microsoft Teams." }, + { "value": 25, "Membername": "MicrosoftTeams", "label": "Events from Microsoft Teams." }, { "value": 28, "Membername": "ThreatIntelligence", - "name": "Phishing and malware events from Exchange Online Protection and Microsoft Defender for Office 365." + "label": "Phishing and malware events from Exchange Online Protection and Microsoft Defender for Office 365." }, { "value": 29, "Membername": "MailSubmission", - "name": "Submission events from Exchange Online Protection and Microsoft Defender for Office 365." + "label": "Submission events from Exchange Online Protection and Microsoft Defender for Office 365." }, { "value": 30, "Membername": "MicrosoftFlow", - "name": "Microsoft Power Automate (formerly called Microsoft Flow) events." + "label": "Microsoft Power Automate (formerly called Microsoft Flow) events." }, - { "value": 31, "Membername": "AeD", "name": "Advanced eDiscovery events." }, - { "value": 32, "Membername": "MicrosoftStream", "name": "Microsoft Stream events." }, + { "value": 31, "Membername": "AeD", "label": "Advanced eDiscovery events." }, + { "value": 32, "Membername": "MicrosoftStream", "label": "Microsoft Stream events." }, { "value": 33, "Membername": "ComplianceDLPSharePointClassification", - "name": "Events related to DLP classification in SharePoint." + "label": "Events related to DLP classification in SharePoint." }, { "value": 34, "Membername": "ThreatFinder", - "name": "Campaign-related events from Microsoft Defender for Office 365." + "label": "Campaign-related events from Microsoft Defender for Office 365." }, - { "value": 35, "Membername": "Project", "name": "Microsoft Project events." }, + { "value": 35, "Membername": "Project", "label": "Microsoft Project events." }, { "value": 36, "Membername": "SharePointListOperation", - "name": "SharePoint List events." + "label": "SharePoint List events." }, { "value": 37, "Membername": "SharePointCommentOperation", - "name": "SharePoint comment events." + "label": "SharePoint comment events." }, { "value": 38, "Membername": "DataGovernance", - "name": "Events related to retention policies and retention labels in the Security & Compliance Center" + "label": "Events related to retention policies and retention labels in the Security & Compliance Center" }, - { "value": 39, "Membername": "Kaizala", "name": "Kaizala events." }, + { "value": 39, "Membername": "Kaizala", "label": "Kaizala events." }, { "value": 40, "Membername": "SecurityComplianceAlerts", - "name": "Security and compliance alert signals." + "label": "Security and compliance alert signals." }, { "value": 41, "Membername": "ThreatIntelligenceUrl", - "name": "Safe links time-of-block and block override events from Microsoft Defender for Office 365." + "label": "Safe links time-of-block and block override events from Microsoft Defender for Office 365." }, { "value": 42, "Membername": "SecurityComplianceInsights", - "name": "Events related to insights and reports in the Office 365 security and compliance center." + "label": "Events related to insights and reports in the Office 365 security and compliance center." }, { "value": 43, "Membername": "MIPLabel", - "name": "Events related to the detection in the Transport pipeline of email messages that have been tagged (manually or automatically) with sensitivity labels." + "label": "Events related to the detection in the Transport pipeline of email messages that have been tagged (manually or automatically) with sensitivity labels." }, { "value": 44, "Membername": "WorkplaceAnalytics", - "name": "Workplace Analytics events." + "label": "Workplace Analytics events." }, - { "value": 45, "Membername": "PowerAppsApp", "name": "Power Apps events." }, + { "value": 45, "Membername": "PowerAppsApp", "label": "Power Apps events." }, { "value": 46, "Membername": "PowerAppsPlan", - "name": "Subscription plan events for Power Apps." + "label": "Subscription plan events for Power Apps." }, { "value": 47, "Membername": "ThreatIntelligenceAtpContent", - "name": "Phishing and malware events for files in SharePoint, OneDrive for Business, and Microsoft Teams from Microsoft Defender for Office 365." + "label": "Phishing and malware events for files in SharePoint, OneDrive for Business, and Microsoft Teams from Microsoft Defender for Office 365." }, { "value": 48, "Membername": "LabelContentExplorer", - "name": "Events related to data classification content explorer." + "label": "Events related to data classification content explorer." }, { "value": 49, "Membername": "TeamsHealthcare", - "name": "Events related to the Patients application in Microsoft Teams for Healthcare." + "label": "Events related to the Patients application in Microsoft Teams for Healthcare." }, { "value": 50, "Membername": "ExchangeItemAggregated", - "name": "Events related to the MailItemsAccessed mailbox auditing action." + "label": "Events related to the MailItemsAccessed mailbox auditing action." }, { "value": 51, "Membername": "HygieneEvent", - "name": "Events related to outbound spam protection." + "label": "Events related to outbound spam protection." }, { "value": 52, "Membername": "DataInsightsRestApiAudit", - "name": "Data Insights REST API events." + "label": "Data Insights REST API events." }, { "value": 53, "Membername": "InformationBarrierPolicyApplication", - "name": "Events related to the application of information barrier policies." + "label": "Events related to the application of information barrier policies." }, { "value": 54, "Membername": "SharePointListItemOperation", - "name": "SharePoint list item events." + "label": "SharePoint list item events." }, { "value": 55, "Membername": "SharePointContentTypeOperation", - "name": "SharePoint list content type events." + "label": "SharePoint list content type events." }, { "value": 56, "Membername": "SharePointFieldOperation", - "name": "SharePoint list field events." + "label": "SharePoint list field events." }, - { "value": 57, "Membername": "MicrosoftTeamsAdmin", "name": "Teams admin events." }, + { "value": 57, "Membername": "MicrosoftTeamsAdmin", "label": "Teams admin events." }, { "value": 58, "Membername": "HRSignal", - "name": "Events related to HR data signals that support the Insider risk management solution." + "label": "Events related to HR data signals that support the Insider risk management solution." }, - { "value": 59, "Membername": "MicrosoftTeamsDevice", "name": "Teams device events." }, + { "value": 59, "Membername": "MicrosoftTeamsDevice", "label": "Teams device events." }, { "value": 60, "Membername": "MicrosoftTeamsAnalytics", - "name": "Teams analytics events." + "label": "Teams analytics events." }, { "value": 61, "Membername": "InformationWorkerProtection", - "name": "Events related to compromised user alerts." + "label": "Events related to compromised user alerts." }, { "value": 62, "Membername": "Campaign", - "name": "Email campaign events from Microsoft Defender for Office 365." + "label": "Email campaign events from Microsoft Defender for Office 365." }, - { "value": 63, "Membername": "DLPEndpoint", "name": "Endpoint DLP events." }, + { "value": 63, "Membername": "DLPEndpoint", "label": "Endpoint DLP events." }, { "value": 64, "Membername": "AirInvestigation", - "name": "Automated incident response (AIR) events." + "label": "Automated incident response (AIR) events." }, - { "value": 65, "Membername": "Quarantine", "name": "Quarantine events." }, - { "value": 66, "Membername": "MicrosoftForms", "name": "Microsoft Forms events." }, - { "value": 67, "Membername": "ApplicationAudit", "name": "Application audit events." }, + { "value": 65, "Membername": "Quarantine", "label": "Quarantine events." }, + { "value": 66, "Membername": "MicrosoftForms", "label": "Microsoft Forms events." }, + { "value": 67, "Membername": "ApplicationAudit", "label": "Application audit events." }, { "value": 68, "Membername": "ComplianceSupervisionExchange", - "name": "Events tracked by the Communication compliance offensive language model." + "label": "Events tracked by the Communication compliance offensive language model." }, { "value": 69, "Membername": "CustomerKeyServiceEncryption", - "name": "Events related to the customer key encryption service." + "label": "Events related to the customer key encryption service." }, { "value": 70, "Membername": "OfficeNative", - "name": "Events related to sensitivity labels applied to Office documents." + "label": "Events related to sensitivity labels applied to Office documents." }, { "value": 71, "Membername": "MipAutoLabelSharePointItem", - "name": "Auto-labeling events in SharePoint." + "label": "Auto-labeling events in SharePoint." }, { "value": 72, "Membername": "MipAutoLabelSharePointPolicyLocation", - "name": "Auto-labeling policy events in SharePoint." + "label": "Auto-labeling policy events in SharePoint." }, - { "value": 73, "Membername": "MicrosoftTeamsShifts", "name": "Teams Shifts events." }, + { "value": 73, "Membername": "MicrosoftTeamsShifts", "label": "Teams Shifts events." }, { "value": 75, "Membername": "MipAutoLabelExchangeItem", - "name": "Auto-labeling events in Exchange." + "label": "Auto-labeling events in Exchange." }, - { "value": 76, "Membername": "CortanaBriefing", "name": "Briefing email events." }, + { "value": 76, "Membername": "CortanaBriefing", "label": "Briefing email events." }, { "value": 78, "Membername": "WDATPAlerts", - "name": "Events related to alerts generated by Windows Defender for Endpoint." + "label": "Events related to alerts generated by Windows Defender for Endpoint." }, { "value": 82, "Membername": "SensitivityLabelPolicyMatch", - "name": "Events generated when the file labeled with a sensitivity label is opened or renamed." + "label": "Events generated when the file labeled with a sensitivity label is opened or renamed." }, { "value": 83, "Membername": "SensitivityLabelAction", - "name": "Event generated when sensitivity labels are applied, upStringd, or removed from a file." + "label": "Event generated when sensitivity labels are applied, upStringd, or removed from a file." }, { "value": 84, "Membername": "SensitivityLabeledFileAction", - "name": "Events generated when a file labeled with a sensitivity label is opened or renamed." + "label": "Events generated when a file labeled with a sensitivity label is opened or renamed." }, { "value": 85, "Membername": "AttackSim", - "name": "Events related to user activities in Attack Simulation & Training in Microsoft Defender for Office 365." + "label": "Events related to user activities in Attack Simulation & Training in Microsoft Defender for Office 365." }, { "value": 86, "Membername": "AirManualInvestigation", - "name": "Events related to manual investigations in Automated investigation and response (AIR)." + "label": "Events related to manual investigations in Automated investigation and response (AIR)." }, { "value": 87, "Membername": "SecurityComplianceRBAC", - "name": "Security and compliance RBAC events." + "label": "Security and compliance RBAC events." }, { "value": 88, "Membername": "UserTraining", - "name": "Events related to user training in Attack Simulation & Training in Microsoft Defender for Office 365." + "label": "Events related to user training in Attack Simulation & Training in Microsoft Defender for Office 365." }, { "value": 89, "Membername": "AirAdminActionInvestigation", - "name": "Events related to admin actions in Automated investigation and response (AIR)." + "label": "Events related to admin actions in Automated investigation and response (AIR)." }, { "value": 90, "Membername": "MSTIC", - "name": "Threat intelligence events in Microsoft Defender for Office 365." + "label": "Threat intelligence events in Microsoft Defender for Office 365." }, { "value": 91, "Membername": "PhysicalBadgingSignal", - "name": "Events related to physical badging signals that support the Insider risk management solution." + "label": "Events related to physical badging signals that support the Insider risk management solution." }, - { "value": 93, "Membername": "AipDiscover", "name": "AIP scanner events" }, + { "value": 93, "Membername": "AipDiscover", "label": "AIP scanner events" }, { "value": 94, "Membername": "AipSensitivityLabelAction", - "name": "AIP sensitivity label events" + "label": "AIP sensitivity label events" }, - { "value": 95, "Membername": "AipProtectionAction", "name": "AIP protection events" }, - { "value": 96, "Membername": "AipFileDeleted", "name": "AIP file deletion events" }, - { "value": 97, "Membername": "AipHeartBeat", "name": "AIP heartbeat events" }, + { "value": 95, "Membername": "AipProtectionAction", "label": "AIP protection events" }, + { "value": 96, "Membername": "AipFileDeleted", "label": "AIP file deletion events" }, + { "value": 97, "Membername": "AipHeartBeat", "label": "AIP heartbeat events" }, { "value": 98, "Membername": "MCASAlerts", - "name": "Events corresponding to alerts triggered by Microsoft Cloud App Security." + "label": "Events corresponding to alerts triggered by Microsoft Cloud App Security." }, { "value": 99, "Membername": "OnPremisesFileShareScannerDlp", - "name": "Events related to scanning for sensitive data on file shares." + "label": "Events related to scanning for sensitive data on file shares." }, { "value": 100, "Membername": "OnPremisesSharePointScannerDlp", - "name": "Events related to scanning for sensitive data in SharePoint." + "label": "Events related to scanning for sensitive data in SharePoint." }, { "value": 101, "Membername": "ExchangeSearch", - "name": "Events related to using Outlook on the web (OWA) to search for mailbox items." + "label": "Events related to using Outlook on the web (OWA) to search for mailbox items." }, { "value": 102, "Membername": "SharePointSearch", - "name": "Events related to searching an organization's SharePoint home site." + "label": "Events related to searching an organization's SharePoint home site." }, - { "value": 103, "Membername": "PrivacyInsights", "name": "Privacy insight events." }, - { "value": 105, "Membername": "MyAnalyticsSettings", "name": "MyAnalytics events." }, + { "value": 103, "Membername": "PrivacyInsights", "label": "Privacy insight events." }, + { "value": 105, "Membername": "MyAnalyticsSettings", "label": "MyAnalytics events." }, { "value": 106, "Membername": "SecurityComplianceUserChange", - "name": "Events related to modifying or deleting a user." + "label": "Events related to modifying or deleting a user." }, { "value": 107, "Membername": "ComplianceDLPExchangeClassification", - "name": "Exchange DLP classification events." + "label": "Exchange DLP classification events." }, { "value": 109, "Membername": "MipExactDataMatch", - "name": "Exact Data Match (EDM) classification events." + "label": "Exact Data Match (EDM) classification events." }, { "value": 113, "Membername": "MS365DCustomDetection", - "name": "Events related to custom detection actions in Microsoft 365 Defender." + "label": "Events related to custom detection actions in Microsoft 365 Defender." }, { "value": 147, "Membername": "CoreReportingSettings", - "name": "Reports settings events." + "label": "Reports settings events." }, { "value": 148, "Membername": "ComplianceConnector", - "name": "Events related to importing non-Microsoft data using data connectors in the Microsoft Purview compliance portal." + "label": "Events related to importing non-Microsoft data using data connectors in the Microsoft Purview compliance portal." }, { "value": 154, "Membername": "OMEPortal", - "name": "Encrypted message portal event logs generated by external recipients." + "label": "Encrypted message portal event logs generated by external recipients." }, { "value": 174, "Membername": "DataShareOperation", - "name": "Events related to sharing of data ingested via SystemSync." + "label": "Events related to sharing of data ingested via SystemSync." }, { "value": 181, "Membername": "EduDataLakeDownloadOperation", - "name": "Events related to the export of SystemSync ingested data from the lake." + "label": "Events related to the export of SystemSync ingested data from the lake." }, { "value": 183, "Membername": "MicrosoftGraphDataConnectOperation", - "name": "Events related to extractions done by Microsoft Graph Data Connect." + "label": "Events related to extractions done by Microsoft Graph Data Connect." }, { "value": 186, "Membername": "PowerPagesSite", - "name": "Activities related to Power Pages site." + "label": "Activities related to Power Pages site." }, - { "value": 188, "Membername": "PlannerPlan", "name": "Microsoft Planner plan events." }, + { "value": 188, "Membername": "PlannerPlan", "label": "Microsoft Planner plan events." }, { "value": 189, "Membername": "PlannerCopyPlan", - "name": "Microsoft Planner copy plan events." + "label": "Microsoft Planner copy plan events." }, - { "value": 190, "Membername": "PlannerTask", "name": "Microsoft Planner task events." }, + { "value": 190, "Membername": "PlannerTask", "label": "Microsoft Planner task events." }, { "value": 191, "Membername": "PlannerRoster", - "name": "Microsoft Planner roster and roster membership events." + "label": "Microsoft Planner roster and roster membership events." }, { "value": 192, "Membername": "PlannerPlanList", - "name": "Microsoft Planner plan list events." + "label": "Microsoft Planner plan list events." }, { "value": 193, "Membername": "PlannerTaskList", - "name": "Microsoft Planner task list events." + "label": "Microsoft Planner task list events." }, { "value": 194, "Membername": "PlannerTenantSettings", - "name": "Microsoft Planner tenant settings events." + "label": "Microsoft Planner tenant settings events." }, { "value": 195, "Membername": "ProjectForThewebProject", - "name": "Microsoft Project for the web project events." + "label": "Microsoft Project for the web project events." }, { "value": 196, "Membername": "ProjectForThewebTask", - "name": "Microsoft Project for the web task events." + "label": "Microsoft Project for the web task events." }, { "value": 197, "Membername": "ProjectForThewebRoadmap", - "name": "Microsoft Project for the web roadmap events." + "label": "Microsoft Project for the web roadmap events." }, { "value": 198, "Membername": "ProjectForThewebRoadmapItem", - "name": "Microsoft Project for the web roadmap item events." + "label": "Microsoft Project for the web roadmap item events." }, { "value": 199, "Membername": "ProjectForThewebProjectSettings", - "name": "Microsoft Project for the web project tenant settings events." + "label": "Microsoft Project for the web project tenant settings events." }, { "value": 200, "Membername": "ProjectForThewebRoadmapSettings", - "name": "Microsoft Project for the web roadmap tenant settings events." + "label": "Microsoft Project for the web roadmap tenant settings events." }, - { "value": 216, "Membername": "Viva Goals", "name": "Viva Goals events." }, + { "value": 216, "Membername": "Viva Goals", "label": "Viva Goals events." }, { "value": 217, "Membername": "MicrosoftGraphDataConnectConsent", - "name": "Events for consent actions performed by tenant admins for Microsoft Graph Data Connect applications." + "label": "Events for consent actions performed by tenant admins for Microsoft Graph Data Connect applications." }, { "value": 218, "Membername": "AttackSimAdmin", - "name": "Events related to admin activities in Attack Simulation & Training in Microsoft Defender for Office 365." + "label": "Events related to admin activities in Attack Simulation & Training in Microsoft Defender for Office 365." }, - { "value": 230, "Membername": "TeamsUpStrings", "name": "Teams UpStrings App Events." }, + { "value": 230, "Membername": "TeamsUpStrings", "label": "Teams UpStrings App Events." }, { "value": 231, "Membername": "PlannerRosterSensitivityLabel", - "name": "Microsoft Planner roster sensitivity label events." + "label": "Microsoft Planner roster sensitivity label events." }, { "value": 237, "Membername": "DefenderExpertsforXDRAdmin", - "name": "Microsoft Defender Experts Administrator action events." + "label": "Microsoft Defender Experts Administrator action events." }, { "value": 251, "Membername": "VfamCreatePolicy", - "name": "Viva Access Management policy create events." + "label": "Viva Access Management policy create events." }, { "value": 252, "Membername": "VfamUpStringPolicy", - "name": "Viva Access Management policy upString events." + "label": "Viva Access Management policy upString events." }, { "value": 253, "Membername": "VfamDeletePolicy", - "name": "Viva Access Management policy delete events." + "label": "Viva Access Management policy delete events." }, { "value": 261, "Membername": "CopilotInteraction", - "name": "Copilot interaction events." + "label": "Copilot interaction events." } ], "List:countryList": [ - { "value": "AF", "name": "Afghanistan" }, - { "value": "AX", "name": "\u00c5land Islands" }, - { "value": "AL", "name": "Albania" }, - { "value": "DZ", "name": "Algeria" }, - { "value": "AS", "name": "American Samoa" }, - { "value": "AD", "name": "Andorra" }, - { "value": "AO", "name": "Angola" }, - { "value": "AI", "name": "Anguilla" }, - { "value": "AQ", "name": "Antarctica" }, - { "value": "AG", "name": "Antigua and Barbuda" }, - { "value": "AR", "name": "Argentina" }, - { "value": "AM", "name": "Armenia" }, - { "value": "AW", "name": "Aruba" }, - { "value": "AC", "name": "Ascension Island" }, - { "value": "AU", "name": "Australia" }, - { "value": "AT", "name": "Austria" }, - { "value": "AZ", "name": "Azerbaijan" }, - { "value": "BS", "name": "Bahamas" }, - { "value": "BH", "name": "Bahrain" }, - { "value": "BD", "name": "Bangladesh" }, - { "value": "BB", "name": "Barbados" }, - { "value": "BY", "name": "Belarus" }, - { "value": "BE", "name": "Belgium" }, - { "value": "BZ", "name": "Belize" }, - { "value": "BJ", "name": "Benin" }, - { "value": "BM", "name": "Bermuda" }, - { "value": "BT", "name": "Bhutan" }, - { "value": "BO", "name": "Bolivia, Plurinational State of" }, - { "value": "BQ", "name": "Bonaire, Sint Eustatius and Saba" }, - { "value": "BA", "name": "Bosnia and Herzegovina" }, - { "value": "BW", "name": "Botswana" }, - { "value": "BV", "name": "Bouvet Island" }, - { "value": "BR", "name": "Brazil" }, - { "value": "IO", "name": "British Indian Ocean Territory" }, - { "value": "BN", "name": "Brunei Darussalam" }, - { "value": "BG", "name": "Bulgaria" }, - { "value": "BF", "name": "Burkina Faso" }, - { "value": "BI", "name": "Burundi" }, - { "value": "KH", "name": "Cambodia" }, - { "value": "CM", "name": "Cameroon" }, - { "value": "CA", "name": "Canada" }, - { "value": "CV", "name": "Cape Verde" }, - { "value": "KY", "name": "Cayman Islands" }, - { "value": "CF", "name": "Central African Republic" }, - { "value": "TD", "name": "Chad" }, - { "value": "CL", "name": "Chile" }, - { "value": "CN", "name": "China" }, - { "value": "CX", "name": "Christmas Island" }, - { "value": "CC", "name": "Cocos (Keeling) Islands" }, - { "value": "CO", "name": "Colombia" }, - { "value": "KM", "name": "Comoros" }, - { "value": "CG", "name": "Congo" }, - { "value": "CD", "name": "Congo, the Democratic Republic of the" }, - { "value": "CK", "name": "Cook Islands" }, - { "value": "CR", "name": "Costa Rica" }, - { "value": "CI", "name": "C\u00f4te d'Ivoire" }, - { "value": "HR", "name": "Croatia" }, - { "value": "CU", "name": "Cuba" }, - { "value": "CW", "name": "Cura\u00e7ao" }, - { "value": "CY", "name": "Cyprus" }, - { "value": "CZ", "name": "Czech Republic" }, - { "value": "DK", "name": "Denmark" }, - { "value": "DG", "name": "Diego Garcia" }, - { "value": "DJ", "name": "Djibouti" }, - { "value": "DM", "name": "Dominica" }, - { "value": "DO", "name": "Dominican Republic" }, - { "value": "EC", "name": "Ecuador" }, - { "value": "EG", "name": "Egypt" }, - { "value": "SV", "name": "El Salvador" }, - { "value": "GQ", "name": "Equatorial Guinea" }, - { "value": "ER", "name": "Eritrea" }, - { "value": "EE", "name": "Estonia" }, - { "value": "ET", "name": "Ethiopia" }, - { "value": "FK", "name": "Falkland Islands (Malvinas)" }, - { "value": "FO", "name": "Faroe Islands" }, - { "value": "FJ", "name": "Fiji" }, - { "value": "FI", "name": "Finland" }, - { "value": "FR", "name": "France" }, - { "value": "GF", "name": "French Guiana" }, - { "value": "PF", "name": "French Polynesia" }, - { "value": "TF", "name": "French Southern Territories" }, - { "value": "GA", "name": "Gabon" }, - { "value": "GM", "name": "Gambia" }, - { "value": "GE", "name": "Georgia" }, - { "value": "DE", "name": "Germany" }, - { "value": "GH", "name": "Ghana" }, - { "value": "GI", "name": "Gibraltar" }, - { "value": "GR", "name": "Greece" }, - { "value": "GL", "name": "Greenland" }, - { "value": "GD", "name": "Grenada" }, - { "value": "GP", "name": "Guadeloupe" }, - { "value": "GU", "name": "Guam" }, - { "value": "GT", "name": "Guatemala" }, - { "value": "GG", "name": "Guernsey" }, - { "value": "GN", "name": "Guinea" }, - { "value": "GW", "name": "Guinea-Bissau" }, - { "value": "GY", "name": "Guyana" }, - { "value": "HT", "name": "Haiti" }, - { "value": "HM", "name": "Heard Island and McDonald Islands" }, - { "value": "VA", "name": "Holy See (Vatican City State)" }, - { "value": "HN", "name": "Honduras" }, - { "value": "HK", "name": "Hong Kong" }, - { "value": "HU", "name": "Hungary" }, - { "value": "IS", "name": "Iceland" }, - { "value": "IN", "name": "India" }, - { "value": "ID", "name": "Indonesia" }, - { "value": "IR", "name": "Iran, Islamic Republic of" }, - { "value": "IQ", "name": "Iraq" }, - { "value": "IE", "name": "Ireland" }, - { "value": "IM", "name": "Isle of Man" }, - { "value": "IL", "name": "Israel" }, - { "value": "IT", "name": "Italy" }, - { "value": "JM", "name": "Jamaica" }, - { "value": "JP", "name": "Japan" }, - { "value": "JE", "name": "Jersey" }, - { "value": "JO", "name": "Jordan" }, - { "value": "KZ", "name": "Kazakhstan" }, - { "value": "KE", "name": "Kenya" }, - { "value": "KI", "name": "Kiribati" }, - { "value": "KP", "name": "Korea, Democratic People's Republic of" }, - { "value": "KR", "name": "Korea, Republic of" }, - { "value": "XK", "name": "Kosovo" }, - { "value": "KW", "name": "Kuwait" }, - { "value": "KG", "name": "Kyrgyzstan" }, - { "value": "LA", "name": "Lao People's Democratic Republic" }, - { "value": "LV", "name": "Latvia" }, - { "value": "LB", "name": "Lebanon" }, - { "value": "LS", "name": "Lesotho" }, - { "value": "LR", "name": "Liberia" }, - { "value": "LY", "name": "Libya" }, - { "value": "LI", "name": "Liechtenstein" }, - { "value": "LT", "name": "Lithuania" }, - { "value": "LU", "name": "Luxembourg" }, - { "value": "MO", "name": "Macao" }, - { "value": "MK", "name": "Macedonia, the Former Yugoslav Republic of" }, - { "value": "MG", "name": "Madagascar" }, - { "value": "MW", "name": "Malawi" }, - { "value": "MY", "name": "Malaysia" }, - { "value": "MV", "name": "Maldives" }, - { "value": "ML", "name": "Mali" }, - { "value": "MT", "name": "Malta" }, - { "value": "MH", "name": "Marshall Islands" }, - { "value": "MQ", "name": "Martinique" }, - { "value": "MR", "name": "Mauritania" }, - { "value": "MU", "name": "Mauritius" }, - { "value": "YT", "name": "Mayotte" }, - { "value": "MX", "name": "Mexico" }, - { "value": "FM", "name": "Micronesia, Federated States of" }, - { "value": "MD", "name": "Moldova, Republic of" }, - { "value": "MC", "name": "Monaco" }, - { "value": "MN", "name": "Mongolia" }, - { "value": "ME", "name": "Montenegro" }, - { "value": "MS", "name": "Montserrat" }, - { "value": "MA", "name": "Morocco" }, - { "value": "MZ", "name": "Mozambique" }, - { "value": "MM", "name": "Myanmar" }, - { "value": "NA", "name": "Namibia" }, - { "value": "NR", "name": "Nauru" }, - { "value": "NP", "name": "Nepal" }, - { "value": "NL", "name": "Netherlands" }, - { "value": "NC", "name": "New Caledonia" }, - { "value": "NZ", "name": "New Zealand" }, - { "value": "NI", "name": "Nicaragua" }, - { "value": "NE", "name": "Niger" }, - { "value": "NG", "name": "Nigeria" }, - { "value": "NU", "name": "Niue" }, - { "value": "NF", "name": "Norfolk Island" }, - { "value": "MP", "name": "Northern Mariana Islands" }, - { "value": "NO", "name": "Norway" }, - { "value": "OM", "name": "Oman" }, - { "value": "PK", "name": "Pakistan" }, - { "value": "PW", "name": "Palau" }, - { "value": "PS", "name": "Palestine, State of" }, - { "value": "PA", "name": "Panama" }, - { "value": "PG", "name": "Papua New Guinea" }, - { "value": "PY", "name": "Paraguay" }, - { "value": "PE", "name": "Peru" }, - { "value": "PH", "name": "Philippines" }, - { "value": "PN", "name": "Pitcairn" }, - { "value": "PL", "name": "Poland" }, - { "value": "PT", "name": "Portugal" }, - { "value": "PR", "name": "Puerto Rico" }, - { "value": "QA", "name": "Qatar" }, - { "value": "RE", "name": "R\u00e9union" }, - { "value": "RO", "name": "Romania" }, - { "value": "RU", "name": "Russian Federation" }, - { "value": "RW", "name": "Rwanda" }, - { "value": "BL", "name": "Saint Barth\u00e9lemy" }, - { "value": "SH", "name": "Saint Helena, Ascension and Tristan da Cunha" }, - { "value": "KN", "name": "Saint Kitts and Nevis" }, - { "value": "LC", "name": "Saint Lucia" }, - { "value": "MF", "name": "Saint Martin (French part)" }, - { "value": "PM", "name": "Saint Pierre and Miquelon" }, - { "value": "VC", "name": "Saint Vincent and the Grenadines" }, - { "value": "WS", "name": "Samoa" }, - { "value": "SM", "name": "San Marino" }, - { "value": "ST", "name": "Sao Tome and Principe" }, - { "value": "SA", "name": "Saudi Arabia" }, - { "value": "SN", "name": "Senegal" }, - { "value": "RS", "name": "Serbia" }, - { "value": "SC", "name": "Seychelles" }, - { "value": "SL", "name": "Sierra Leone" }, - { "value": "SG", "name": "Singapore" }, - { "value": "SX", "name": "Sint Maarten (Dutch part)" }, - { "value": "SK", "name": "Slovakia" }, - { "value": "SI", "name": "Slovenia" }, - { "value": "SB", "name": "Solomon Islands" }, - { "value": "SO", "name": "Somalia" }, - { "value": "ZA", "name": "South Africa" }, - { "value": "GS", "name": "South Georgia and the South Sandwich Islands" }, - { "value": "SS", "name": "South Sudan" }, - { "value": "ES", "name": "Spain" }, - { "value": "LK", "name": "Sri Lanka" }, - { "value": "SD", "name": "Sudan" }, - { "value": "SR", "name": "Suriname" }, - { "value": "SJ", "name": "Svalbard and Jan Mayen" }, - { "value": "SZ", "name": "Swaziland" }, - { "value": "SE", "name": "Sweden" }, - { "value": "CH", "name": "Switzerland" }, - { "value": "SY", "name": "Syrian Arab Republic" }, - { "value": "TW", "name": "Taiwan, Province of China" }, - { "value": "TJ", "name": "Tajikistan" }, - { "value": "TZ", "name": "Tanzania, United Republic of" }, - { "value": "TH", "name": "Thailand" }, - { "value": "TL", "name": "Timor-Leste" }, - { "value": "TG", "name": "Togo" }, - { "value": "TK", "name": "Tokelau" }, - { "value": "TO", "name": "Tonga" }, - { "value": "TT", "name": "Trinidad and Tobago" }, - { "value": "TN", "name": "Tunisia" }, - { "value": "TR", "name": "Turkey" }, - { "value": "TM", "name": "Turkmenistan" }, - { "value": "TC", "name": "Turks and Caicos Islands" }, - { "value": "TV", "name": "Tuvalu" }, - { "value": "UG", "name": "Uganda" }, - { "value": "UA", "name": "Ukraine" }, - { "value": "AE", "name": "United Arab Emirates" }, - { "value": "GB", "name": "United Kingdom" }, - { "value": "US", "name": "United States" }, - { "value": "UM", "name": "United States Minor Outlying Islands" }, - { "value": "UY", "name": "Uruguay" }, - { "value": "UZ", "name": "Uzbekistan" }, - { "value": "VU", "name": "Vanuatu" }, - { "value": "VE", "name": "Venezuela, Bolivarian Republic of" }, - { "value": "VN", "name": "Viet Nam" }, - { "value": "VG", "name": "Virgin Islands, British" }, - { "value": "VI", "name": "Virgin Islands, U.S." }, - { "value": "WF", "name": "Wallis and Futuna" }, - { "value": "EH", "name": "Western Sahara" }, - { "value": "YE", "name": "Yemen" }, - { "value": "ZM", "name": "Zambia" }, - { "value": "ZW", "name": "Zimbabwe" } + { "value": "AF", "label": "Afghanistan" }, + { "value": "AX", "label": "\u00c5land Islands" }, + { "value": "AL", "label": "Albania" }, + { "value": "DZ", "label": "Algeria" }, + { "value": "AS", "label": "American Samoa" }, + { "value": "AD", "label": "Andorra" }, + { "value": "AO", "label": "Angola" }, + { "value": "AI", "label": "Anguilla" }, + { "value": "AQ", "label": "Antarctica" }, + { "value": "AG", "label": "Antigua and Barbuda" }, + { "value": "AR", "label": "Argentina" }, + { "value": "AM", "label": "Armenia" }, + { "value": "AW", "label": "Aruba" }, + { "value": "AC", "label": "Ascension Island" }, + { "value": "AU", "label": "Australia" }, + { "value": "AT", "label": "Austria" }, + { "value": "AZ", "label": "Azerbaijan" }, + { "value": "BS", "label": "Bahamas" }, + { "value": "BH", "label": "Bahrain" }, + { "value": "BD", "label": "Bangladesh" }, + { "value": "BB", "label": "Barbados" }, + { "value": "BY", "label": "Belarus" }, + { "value": "BE", "label": "Belgium" }, + { "value": "BZ", "label": "Belize" }, + { "value": "BJ", "label": "Benin" }, + { "value": "BM", "label": "Bermuda" }, + { "value": "BT", "label": "Bhutan" }, + { "value": "BO", "label": "Bolivia, Plurinational State of" }, + { "value": "BQ", "label": "Bonaire, Sint Eustatius and Saba" }, + { "value": "BA", "label": "Bosnia and Herzegovina" }, + { "value": "BW", "label": "Botswana" }, + { "value": "BV", "label": "Bouvet Island" }, + { "value": "BR", "label": "Brazil" }, + { "value": "IO", "label": "British Indian Ocean Territory" }, + { "value": "BN", "label": "Brunei Darussalam" }, + { "value": "BG", "label": "Bulgaria" }, + { "value": "BF", "label": "Burkina Faso" }, + { "value": "BI", "label": "Burundi" }, + { "value": "KH", "label": "Cambodia" }, + { "value": "CM", "label": "Cameroon" }, + { "value": "CA", "label": "Canada" }, + { "value": "CV", "label": "Cape Verde" }, + { "value": "KY", "label": "Cayman Islands" }, + { "value": "CF", "label": "Central African Republic" }, + { "value": "TD", "label": "Chad" }, + { "value": "CL", "label": "Chile" }, + { "value": "CN", "label": "China" }, + { "value": "CX", "label": "Christmas Island" }, + { "value": "CC", "label": "Cocos (Keeling) Islands" }, + { "value": "CO", "label": "Colombia" }, + { "value": "KM", "label": "Comoros" }, + { "value": "CG", "label": "Congo" }, + { "value": "CD", "label": "Congo, the Democratic Republic of the" }, + { "value": "CK", "label": "Cook Islands" }, + { "value": "CR", "label": "Costa Rica" }, + { "value": "CI", "label": "C\u00f4te d'Ivoire" }, + { "value": "HR", "label": "Croatia" }, + { "value": "CU", "label": "Cuba" }, + { "value": "CW", "label": "Cura\u00e7ao" }, + { "value": "CY", "label": "Cyprus" }, + { "value": "CZ", "label": "Czech Republic" }, + { "value": "DK", "label": "Denmark" }, + { "value": "DG", "label": "Diego Garcia" }, + { "value": "DJ", "label": "Djibouti" }, + { "value": "DM", "label": "Dominica" }, + { "value": "DO", "label": "Dominican Republic" }, + { "value": "EC", "label": "Ecuador" }, + { "value": "EG", "label": "Egypt" }, + { "value": "SV", "label": "El Salvador" }, + { "value": "GQ", "label": "Equatorial Guinea" }, + { "value": "ER", "label": "Eritrea" }, + { "value": "EE", "label": "Estonia" }, + { "value": "ET", "label": "Ethiopia" }, + { "value": "FK", "label": "Falkland Islands (Malvinas)" }, + { "value": "FO", "label": "Faroe Islands" }, + { "value": "FJ", "label": "Fiji" }, + { "value": "FI", "label": "Finland" }, + { "value": "FR", "label": "France" }, + { "value": "GF", "label": "French Guiana" }, + { "value": "PF", "label": "French Polynesia" }, + { "value": "TF", "label": "French Southern Territories" }, + { "value": "GA", "label": "Gabon" }, + { "value": "GM", "label": "Gambia" }, + { "value": "GE", "label": "Georgia" }, + { "value": "DE", "label": "Germany" }, + { "value": "GH", "label": "Ghana" }, + { "value": "GI", "label": "Gibraltar" }, + { "value": "GR", "label": "Greece" }, + { "value": "GL", "label": "Greenland" }, + { "value": "GD", "label": "Grenada" }, + { "value": "GP", "label": "Guadeloupe" }, + { "value": "GU", "label": "Guam" }, + { "value": "GT", "label": "Guatemala" }, + { "value": "GG", "label": "Guernsey" }, + { "value": "GN", "label": "Guinea" }, + { "value": "GW", "label": "Guinea-Bissau" }, + { "value": "GY", "label": "Guyana" }, + { "value": "HT", "label": "Haiti" }, + { "value": "HM", "label": "Heard Island and McDonald Islands" }, + { "value": "VA", "label": "Holy See (Vatican City State)" }, + { "value": "HN", "label": "Honduras" }, + { "value": "HK", "label": "Hong Kong" }, + { "value": "HU", "label": "Hungary" }, + { "value": "IS", "label": "Iceland" }, + { "value": "IN", "label": "India" }, + { "value": "ID", "label": "Indonesia" }, + { "value": "IR", "label": "Iran, Islamic Republic of" }, + { "value": "IQ", "label": "Iraq" }, + { "value": "IE", "label": "Ireland" }, + { "value": "IM", "label": "Isle of Man" }, + { "value": "IL", "label": "Israel" }, + { "value": "IT", "label": "Italy" }, + { "value": "JM", "label": "Jamaica" }, + { "value": "JP", "label": "Japan" }, + { "value": "JE", "label": "Jersey" }, + { "value": "JO", "label": "Jordan" }, + { "value": "KZ", "label": "Kazakhstan" }, + { "value": "KE", "label": "Kenya" }, + { "value": "KI", "label": "Kiribati" }, + { "value": "KP", "label": "Korea, Democratic People's Republic of" }, + { "value": "KR", "label": "Korea, Republic of" }, + { "value": "XK", "label": "Kosovo" }, + { "value": "KW", "label": "Kuwait" }, + { "value": "KG", "label": "Kyrgyzstan" }, + { "value": "LA", "label": "Lao People's Democratic Republic" }, + { "value": "LV", "label": "Latvia" }, + { "value": "LB", "label": "Lebanon" }, + { "value": "LS", "label": "Lesotho" }, + { "value": "LR", "label": "Liberia" }, + { "value": "LY", "label": "Libya" }, + { "value": "LI", "label": "Liechtenstein" }, + { "value": "LT", "label": "Lithuania" }, + { "value": "LU", "label": "Luxembourg" }, + { "value": "MO", "label": "Macao" }, + { "value": "MK", "label": "Macedonia, the Former Yugoslav Republic of" }, + { "value": "MG", "label": "Madagascar" }, + { "value": "MW", "label": "Malawi" }, + { "value": "MY", "label": "Malaysia" }, + { "value": "MV", "label": "Maldives" }, + { "value": "ML", "label": "Mali" }, + { "value": "MT", "label": "Malta" }, + { "value": "MH", "label": "Marshall Islands" }, + { "value": "MQ", "label": "Martinique" }, + { "value": "MR", "label": "Mauritania" }, + { "value": "MU", "label": "Mauritius" }, + { "value": "YT", "label": "Mayotte" }, + { "value": "MX", "label": "Mexico" }, + { "value": "FM", "label": "Micronesia, Federated States of" }, + { "value": "MD", "label": "Moldova, Republic of" }, + { "value": "MC", "label": "Monaco" }, + { "value": "MN", "label": "Mongolia" }, + { "value": "ME", "label": "Montenegro" }, + { "value": "MS", "label": "Montserrat" }, + { "value": "MA", "label": "Morocco" }, + { "value": "MZ", "label": "Mozambique" }, + { "value": "MM", "label": "Myanmar" }, + { "value": "NA", "label": "Namibia" }, + { "value": "NR", "label": "Nauru" }, + { "value": "NP", "label": "Nepal" }, + { "value": "NL", "label": "Netherlands" }, + { "value": "NC", "label": "New Caledonia" }, + { "value": "NZ", "label": "New Zealand" }, + { "value": "NI", "label": "Nicaragua" }, + { "value": "NE", "label": "Niger" }, + { "value": "NG", "label": "Nigeria" }, + { "value": "NU", "label": "Niue" }, + { "value": "NF", "label": "Norfolk Island" }, + { "value": "MP", "label": "Northern Mariana Islands" }, + { "value": "NO", "label": "Norway" }, + { "value": "OM", "label": "Oman" }, + { "value": "PK", "label": "Pakistan" }, + { "value": "PW", "label": "Palau" }, + { "value": "PS", "label": "Palestine, State of" }, + { "value": "PA", "label": "Panama" }, + { "value": "PG", "label": "Papua New Guinea" }, + { "value": "PY", "label": "Paraguay" }, + { "value": "PE", "label": "Peru" }, + { "value": "PH", "label": "Philippines" }, + { "value": "PN", "label": "Pitcairn" }, + { "value": "PL", "label": "Poland" }, + { "value": "PT", "label": "Portugal" }, + { "value": "PR", "label": "Puerto Rico" }, + { "value": "QA", "label": "Qatar" }, + { "value": "RE", "label": "R\u00e9union" }, + { "value": "RO", "label": "Romania" }, + { "value": "RU", "label": "Russian Federation" }, + { "value": "RW", "label": "Rwanda" }, + { "value": "BL", "label": "Saint Barth\u00e9lemy" }, + { "value": "SH", "label": "Saint Helena, Ascension and Tristan da Cunha" }, + { "value": "KN", "label": "Saint Kitts and Nevis" }, + { "value": "LC", "label": "Saint Lucia" }, + { "value": "MF", "label": "Saint Martin (French part)" }, + { "value": "PM", "label": "Saint Pierre and Miquelon" }, + { "value": "VC", "label": "Saint Vincent and the Grenadines" }, + { "value": "WS", "label": "Samoa" }, + { "value": "SM", "label": "San Marino" }, + { "value": "ST", "label": "Sao Tome and Principe" }, + { "value": "SA", "label": "Saudi Arabia" }, + { "value": "SN", "label": "Senegal" }, + { "value": "RS", "label": "Serbia" }, + { "value": "SC", "label": "Seychelles" }, + { "value": "SL", "label": "Sierra Leone" }, + { "value": "SG", "label": "Singapore" }, + { "value": "SX", "label": "Sint Maarten (Dutch part)" }, + { "value": "SK", "label": "Slovakia" }, + { "value": "SI", "label": "Slovenia" }, + { "value": "SB", "label": "Solomon Islands" }, + { "value": "SO", "label": "Somalia" }, + { "value": "ZA", "label": "South Africa" }, + { "value": "GS", "label": "South Georgia and the South Sandwich Islands" }, + { "value": "SS", "label": "South Sudan" }, + { "value": "ES", "label": "Spain" }, + { "value": "LK", "label": "Sri Lanka" }, + { "value": "SD", "label": "Sudan" }, + { "value": "SR", "label": "Suriname" }, + { "value": "SJ", "label": "Svalbard and Jan Mayen" }, + { "value": "SZ", "label": "Swaziland" }, + { "value": "SE", "label": "Sweden" }, + { "value": "CH", "label": "Switzerland" }, + { "value": "SY", "label": "Syrian Arab Republic" }, + { "value": "TW", "label": "Taiwan, Province of China" }, + { "value": "TJ", "label": "Tajikistan" }, + { "value": "TZ", "label": "Tanzania, United Republic of" }, + { "value": "TH", "label": "Thailand" }, + { "value": "TL", "label": "Timor-Leste" }, + { "value": "TG", "label": "Togo" }, + { "value": "TK", "label": "Tokelau" }, + { "value": "TO", "label": "Tonga" }, + { "value": "TT", "label": "Trinidad and Tobago" }, + { "value": "TN", "label": "Tunisia" }, + { "value": "TR", "label": "Turkey" }, + { "value": "TM", "label": "Turkmenistan" }, + { "value": "TC", "label": "Turks and Caicos Islands" }, + { "value": "TV", "label": "Tuvalu" }, + { "value": "UG", "label": "Uganda" }, + { "value": "UA", "label": "Ukraine" }, + { "value": "AE", "label": "United Arab Emirates" }, + { "value": "GB", "label": "United Kingdom" }, + { "value": "US", "label": "United States" }, + { "value": "UM", "label": "United States Minor Outlying Islands" }, + { "value": "UY", "label": "Uruguay" }, + { "value": "UZ", "label": "Uzbekistan" }, + { "value": "VU", "label": "Vanuatu" }, + { "value": "VE", "label": "Venezuela, Bolivarian Republic of" }, + { "value": "VN", "label": "Viet Nam" }, + { "value": "VG", "label": "Virgin Islands, British" }, + { "value": "VI", "label": "Virgin Islands, U.S." }, + { "value": "WF", "label": "Wallis and Futuna" }, + { "value": "EH", "label": "Western Sahara" }, + { "value": "YE", "label": "Yemen" }, + { "value": "ZM", "label": "Zambia" }, + { "value": "ZW", "label": "Zimbabwe" } ] } diff --git a/src/data/BPAField.schema.v1.json b/src/data/BPAField.schema.v1.json deleted file mode 100644 index 810329db4e16..000000000000 --- a/src/data/BPAField.schema.v1.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "title": "BPA Field Builder", - "type": "object", - "required": ["name", "API", "StoreAs"], - "properties": { - "name": { - "type": "string", - "title": "Field Name", - "description": "Identifier for each set or category of data." - }, - "UseExistingInfo": { - "type": "boolean", - "title": "Use Existing Info?", - "default": false - }, - "StoreAs": { - "type": "string", - "title": "Store As", - "description": "The format in which to store the fetched data.", - "anyOf": [ - { - "const": "JSON", - "title": "JSON - For structured data" - }, - { - "const": "bool", - "title": "Boolean - True/False values" - } - ] - }, - "ExtractFields": { - "title": "Extract Fields", - "description": "Lists the attributes or fields to extract from the returned data.", - "type": "array", - "items": { - "type": "string" - }, - "minItems": 1 - }, - "where": { - "title": "Where", - "description": "A conditional filter to determine which data gets displayed or processed. Use PowerShell's Where-Object Filterscript format.", - "type": "string" - }, - "FrontendFields": { - "type": "array", - "title": "Frontend Fields", - "description": "Describes how each data attribute will be displayed in the report.", - "items": { - "type": "object", - "properties": { - "name": { - "title": "Name", - "description": "Label for the data in the report.", - "type": "string" - }, - "value": { - "title": "Value", - "description": "Reference to the data's location or attribute.", - "type": "string" - }, - "formatter": { - "title": "Formatter", - "description": "Specifies how the data will be formatted for display.", - "type": "string", - "anyOf": [ - { - "const": "string", - "title": "Display as plain text" - }, - { - "const": "bool", - "title": "Presents as True or False" - }, - { - "const": "warnBool", - "title": "Shows boolean values with potential visual warnings" - }, - { - "const": "reverseBool", - "title": "Inverts the boolean value for display" - }, - { - "const": "table", - "title": "Represents the data in a table format" - }, - { - "const": "number", - "title": "Displays as a numerical value" - }, - { - "const": "math", - "title": "Displays as a calculated value" - } - ] - } - } - }, - "minItems": 1, - "required": ["name", "value", "formatter"] - }, - "desc": { - "title": "Field Description", - "description": "A description field shown on the end of the card on the tenant overview page", - "type": "string" - } - }, - "allOf": [ - { - "if": { - "properties": { - "UseExistingInfo": { - "enum": [false] - } - } - }, - "then": { - "properties": { - "API": { - "type": "string", - "title": "API", - "anyOf": [ - { - "const": "Graph", - "title": "Graph" - }, - { - "const": "Exchange", - "title": "Exchange" - }, - { - "const": "CIPPFunction", - "title": "CIPP Function" - } - ], - "default": "Graph", - "description": "Defines the source or type of API to fetch the data." - } - }, - "allOf": [ - { - "if": { - "properties": { - "API": { - "enum": ["CIPPFunction"] - } - } - }, - "then": { - "properties": { - "URL": { - "type": "string", - "description": "The endpoint for CIPP Function" - } - }, - "required": ["URL"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Exchange"] - } - } - }, - "then": { - "properties": { - "command": { - "type": "string", - "title": "Command", - "pattern": "^Get-", - "description": "Command for Exchange (Get only)" - } - }, - "required": ["command"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Graph"] - } - } - }, - "then": { - "properties": { - "parameters": { - "type": "object", - "title": "Parameters", - "description": "Additional settings or parameters required for the API call.", - "properties": { - "asApp": { - "title": "Use Application Permissions", - "type": "boolean" - } - }, - "additionalProperties": true - }, - "URL": { - "type": "string", - "pattern": "^https://graph.microsoft.com/", - "description": "The endpoint for Graph" - } - }, - "required": ["URL"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Exchange", "CIPPFunction"] - } - } - }, - "then": { - "properties": { - "parameters": { - "type": "object", - "title": "Parameters", - "description": "Additional settings or parameters required for the API call.", - "additionalProperties": true - } - } - } - } - ] - } - } - ] -} diff --git a/src/data/BPAField.uischema.v1.json b/src/data/BPAField.uischema.v1.json deleted file mode 100644 index bc36b81d44b2..000000000000 --- a/src/data/BPAField.uischema.v1.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "ui:disabled": false, - "ui:readonly": false, - "ui:order": [ - "name", - "desc", - "UseExistingInfo", - "API", - "StoreAs", - "URL", - "command", - "parameters", - "where", - "ExtractFields", - "FrontendFields", - "*" - ], - "ui:submitButtonOptions": { - "submitText": "Validate", - "norender": false, - "props": { - "disabled": false, - "className": "btn btn-primary" - } - } -} diff --git a/src/data/BPAReport.schema.v1.json b/src/data/BPAReport.schema.v1.json deleted file mode 100644 index f84418893481..000000000000 --- a/src/data/BPAReport.schema.v1.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "title": "BPA Report Builder", - "type": "object", - "required": ["name", "style", "Fields"], - "properties": { - "name": { - "type": "string", - "title": "Report Name", - "description": "The title or name of the report." - }, - "style": { - "type": "string", - "title": "Report Style", - "default": "Table", - "enum": ["Table", "Tenant"], - "description": "Specifies the layout or presentation style of the report." - }, - "Fields": { - "title": "Report Fields", - "type": "array", - "minItems": 1, - "items": { - "required": ["name"], - "properties": { - "name": { - "type": "string", - "title": "Field Name", - "description": "Identifier for each set or category of data." - }, - "UseExistingInfo": { - "type": "boolean", - "title": "Use Existing Info?", - "default": false - }, - "FrontendFields": { - "type": "array", - "title": "Frontend Fields", - "description": "Describes how each data attribute will be displayed in the report.", - "items": { - "type": "object", - "properties": { - "name": { - "title": "Name", - "description": "Label for the data in the report.", - "type": "string" - }, - "value": { - "title": "Value", - "description": "Reference to the data's location or attribute.", - "type": "string" - }, - "formatter": { - "title": "Formatter", - "description": "Specifies how the data will be formatted for display.", - "type": "string", - "anyOf": [ - { - "const": "string", - "title": "Display as plain text" - }, - { - "const": "bool", - "title": "True/False" - }, - { - "const": "warnBool", - "title": "True/False values with potential visual warnings" - }, - { - "const": "reverseBool", - "title": "Inverts the True/False value for display" - }, - { - "const": "table", - "title": "Represents the data in a table format" - }, - { - "const": "number", - "title": "Displays as a numerical value" - } - ] - } - } - }, - "minItems": 1, - "required": ["name", "value", "formatter"] - }, - "desc": { - "title": "Field Description", - "description": "A description field shown on the end of the card on the tenant overview page", - "type": "string" - } - }, - "allOf": [ - { - "if": { - "properties": { - "UseExistingInfo": { - "enum": [false] - } - } - }, - "then": { - "required": ["API", "StoreAs", "ExtractFields"], - "properties": { - "where": { - "title": "Where", - "description": "A conditional filter to determine which data gets displayed or processed. Use PowerShell's Where-Object Filterscript format.", - "type": "string" - }, - "StoreAs": { - "type": "string", - "title": "Store As", - "description": "The format in which to store the fetched data.", - "anyOf": [ - { - "const": "string", - "title": "String - For plain text" - }, - { - "const": "JSON", - "title": "JSON - For structured data" - }, - { - "const": "bool", - "title": "Boolean - True/False values" - } - ] - }, - "API": { - "type": "string", - "title": "API", - "anyOf": [ - { - "const": "Graph", - "title": "Graph" - }, - { - "const": "Exchange", - "title": "Exchange" - }, - { - "const": "CIPPFunction", - "title": "CIPP Function" - } - ], - "default": "Graph", - "description": "Defines the source or type of API to fetch the data." - }, - "ExtractFields": { - "title": "Extract Fields", - "description": "Lists the attributes or fields to extract from the returned data.", - "type": "array", - "items": { - "type": "string" - }, - "minItems": 1 - } - }, - "allOf": [ - { - "if": { - "properties": { - "API": { - "enum": ["CIPPFunction"] - } - } - }, - "then": { - "properties": { - "Command": { - "type": "string", - "pattern": "^Get-CIPP", - "description": "Command for CIPP Function (Get-CIPP)" - } - }, - "required": ["Command"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Exchange"] - } - } - }, - "then": { - "properties": { - "Command": { - "type": "string", - "title": "Command", - "pattern": "^Get-", - "description": "Command for Exchange (Get only)" - } - }, - "required": ["Command"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Graph"] - } - } - }, - "then": { - "properties": { - "parameters": { - "type": "object", - "title": "Parameters", - "description": "Additional settings or parameters required for the API call.", - "properties": { - "asApp": { - "title": "Use Application Permissions", - "type": "boolean" - } - }, - "additionalProperties": true - }, - "URL": { - "type": "string", - "pattern": "^https://graph.microsoft.com/", - "description": "The endpoint for Graph" - } - }, - "required": ["URL"] - } - }, - { - "if": { - "properties": { - "API": { - "enum": ["Exchange", "CIPPFunction"] - } - } - }, - "then": { - "properties": { - "parameters": { - "type": "object", - "title": "Parameters", - "description": "Additional settings or parameters required for the API call.", - "additionalProperties": true - } - } - } - } - ] - } - } - ] - } - } - } -} diff --git a/src/data/BPAReport.uischema.v1.json b/src/data/BPAReport.uischema.v1.json deleted file mode 100644 index 19e3c7d01237..000000000000 --- a/src/data/BPAReport.uischema.v1.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "ui:disabled": false, - "ui:readonly": false, - "ui:order": ["name", "style", "*"], - "Fields": { - "items": { - "ui:order": [ - "name", - "desc", - "UseExistingInfo", - "StoreAs", - "API", - "URL", - "Command", - "parameters", - "where", - "ExtractFields", - "FrontendFields", - "*" - ], - "FrontendFields": { - "ui:classNames": "card card-title p-4 my-4" - } - } - }, - "ui:submitButtonOptions": { - "norender": true - } -} diff --git a/src/data/CIPPDefaultGDAPRoles.json b/src/data/CIPPDefaultGDAPRoles.json new file mode 100644 index 000000000000..ddd022d7527d --- /dev/null +++ b/src/data/CIPPDefaultGDAPRoles.json @@ -0,0 +1,50 @@ +[ + { + "label": "Application Administrator", + "value": "9b895d92-2cd3-44c7-9d02-a6ac2d5ea5c3" + }, + { + "label": "User Administrator", + "value": "fe930be7-5e62-47db-91af-98c3a49a38b1" + }, + { + "label": "Intune Administrator", + "value": "3a2c62db-5318-420d-8d74-23affee5d9d5" + }, + { + "label": "Exchange Administrator", + "value": "29232cdf-9323-42fd-ade2-1d097af3e4de" + }, + { + "label": "Security Administrator", + "value": "194ae4cb-b126-40b2-bd5b-6091b380977d" + }, + { + "label": "Cloud App Security Administrator", + "value": "892c5842-a9a6-463a-8041-72aa08ca3cf6" + }, + { + "label": "Cloud Device Administrator", + "value": "7698a772-787b-4ac8-901f-60d6b08affd2" + }, + { + "label": "Teams Administrator", + "value": "69091246-20e8-4a56-aa4d-066075b2a7a8" + }, + { + "label": "Sharepoint Administrator", + "value": "f28a1f50-f6e7-4571-818b-6a12f2af6b6c" + }, + { + "label": "Authentication Policy Administrator", + "value": "0526716b-113d-4c15-b2c8-68e3c22b9f80" + }, + { + "label": "Privileged Role Administrator", + "value": "e8611ab8-c189-46e8-94e1-60213ab1f814" + }, + { + "label": "Privileged Authentication Administrator", + "value": "7be44c8a-adaf-4e2a-84d6-ab2649e08a13" + } +] diff --git a/src/data/Extensions.json b/src/data/Extensions.json index 6524c9236657..7bdb55f719d2 100644 --- a/src/data/Extensions.json +++ b/src/data/Extensions.json @@ -1,53 +1,128 @@ [ { "name": "CIPP-API", + "id": "cippapi", "type": "CIPP-API", "cat": "API", + "logo": "/assets/integrations/cipp-api.png", "forceSyncButton": false, + "hideTestButton": true, "disableWhenhosted": true, + "description": "Enable the CIPP API to access CIPP data outside of CIPP using a RESTful API.", "helpText": "This integration allows you to enable CIPP-API access outside of CIPP. Requires Global Administrator permissions inside your tenant for activation of the API. The API credentials will only be shown once.", "SettingOptions": [ { - "type": "checkbox", + "type": "switch", "name": "cippapi.ResetPassword", "label": "Reset application secret - this will invalidate all existing API tokens" }, { - "type": "checkbox", + "type": "switch", "name": "cippapi.Enabled", "label": "Enable Integration" } ], "mappingRequired": false }, + { + "name": "Sherweb", + "id": "Sherweb", + "type": "Sherweb", + "cat": "CSP", + "logo": "/assets/integrations/sherweb.png", + "logoDark": "/assets/integrations/sherweb_dark.png", + "description": "Enable the Sherweb integration to manage your CSP licensing from CIPP.", + "helpText": "This integration allows you to manage your CSP licensing from CIPP. Purchase new licenses while adding or editing users in CIPP. Not a Sherweb partner? Sign up for the Sherweb Cloud Services for MSPs program.", + "mappingRequired": true, + "links": [ + { + "name": "Register for beta", + "url": "https://go.cyberdrain.com/sherweb" + }, + { + "name": "Sherweb Cloud Services for MSPs", + "url": "https://info.sherweb.com/sherweb-cloud-services-for-msps" + } + ], + "SettingOptions": [ + { + "type": "switch", + "name": "Sherweb.Enabled", + "label": "Enable Integration" + }, + { + "type": "textField", + "name": "Sherweb.clientId", + "label": "Client ID", + "placeholder": "Enter your Sherweb Client ID", + "required": true + }, + { + "type": "textField", + "name": "Sherweb.SubscriptionKey", + "label": "Subscription Key", + "placeholder": "Enter your Sherweb Subscription Key", + "required": true + }, + { + "type": "password", + "name": "Sherweb.APIKey", + "label": "Client Secret", + "placeholder": "Enter your Sherweb Client Secret", + "required": true + }, + { + "type": "autoComplete", + "name": "Sherweb.AllowedCustomRoles", + "label": "Select custom roles that are allowed to purchase licenses", + "api": { + "url": "/api/ExecCustomRole", + "queryKey": "CustomRoles", + "labelField": "RowKey", + "valueField": "RowKey" + }, + "multiple": true + } + ] + }, { "name": "Gradient", + "id": "Gradient", "type": "Gradient", "cat": "Billing & Invoicing", + "logo": "/assets/integrations/gradient.png", + "logoDark": "/assets/integrations/gradient_dark.png", "forceSyncButton": true, + "description": "Enable the Gradient integration to send license counts and create tickets.", "helpText": "This integration allows you to send your license counts to Gradient for billing purposes, and create tickets if your PSA supports ticket creation by Gradient.", + "links": [ + { + "name": "Gradient Documentation", + "url": "https://support.meetgradient.com/cipp" + } + ], "SettingOptions": [ { - "type": "input", - "fieldtype": "password", + "type": "textField", "name": "Gradient.VendorKey", "label": "Gradient Vendor API Key", - "placeholder": "Enter your Gradient Vendor Key." + "placeholder": "Enter your Gradient Vendor Key.", + "required": true }, { - "type": "input", - "fieldtype": "password", + "type": "password", "name": "Gradient.APIKey", "label": "Gradient Partner API Key", - "placeholder": "Enter your Gradient Partner Key. Leave blank to keep your current key." + "placeholder": "Enter your Gradient Partner Key. Leave blank to keep your current key.", + "required": true }, { - "type": "checkbox", + "type": "switch", "name": "Gradient.BillingEnabled", "label": "Enable sending all license information to Gradient" }, { - "type": "checkbox", + "type": "switch", "name": "Gradient.Enabled", "label": "Enable Integration" } @@ -56,55 +131,64 @@ }, { "name": "Halo PSA Ticketing", + "id": "HaloPSA", "type": "HaloPSA", "cat": "Ticketing", + "logo": "/assets/integrations/halo.png", "forceSyncButton": false, + "description": "Enable the HaloPSA integration to send alerts to your ticketing system.", "helpText": "This integration allows you to send alerts to your ticketing system.", + "links": [ + { + "name": "HaloPSA Documentation", + "url": "https://halopsa.com/guides/" + } + ], "SettingOptions": [ { - "type": "input", - "fieldtype": "input", + "type": "textField", "name": "HaloPSA.ResourceURL", "label": "HaloPSA Resource Server URL", - "placeholder": "Enter your HaloPSA Resource Server URL." + "placeholder": "Enter your HaloPSA Resource Server URL.", + "required": true }, { - "type": "input", - "fieldtype": "input", + "type": "textField", "name": "HaloPSA.AuthURL", "label": "HaloPSA Authorisation Endpoint URL", - "placeholder": "Enter your HaloPSA Authorisation Endpoint URL." + "placeholder": "Enter your HaloPSA Authorisation Endpoint URL.", + "required": true }, { - "type": "input", - "fieldtype": "input", + "type": "textField", "name": "HaloPSA.Tenant", "label": "HaloPSA Tenant", - "placeholder": "Enter your HaloPSA Tenant (Leave blank if self-hosted" + "placeholder": "Enter your HaloPSA Tenant (Leave blank if self-hosted", + "required": true }, { - "type": "input", - "fieldtype": "input", + "type": "textField", "name": "HaloPSA.TicketType", "label": "HaloPSA Ticket Type ID", - "placeholder": "Enter your HaloPSA ticket type to use for CIPP Tickets. Leave blank for default." + "placeholder": "Enter your HaloPSA ticket type to use for CIPP Tickets. Leave blank for default.", + "required": true }, { - "type": "input", - "fieldtype": "input", + "type": "textField", "name": "HaloPSA.ClientID", "label": "HaloPSA Client ID", - "placeholder": "Enter your HaloPSA Client ID" + "placeholder": "Enter your HaloPSA Client ID", + "required": true }, { - "type": "input", - "fieldtype": "password", + "type": "password", "name": "HaloPSA.APIKey", "label": "HaloPSA Client Secret", - "placeholder": "Enter your client Secret. Leave blank to keep your current key." + "placeholder": "Enter your client Secret. Leave blank to keep your current key.", + "required": true }, { - "type": "checkbox", + "type": "switch", "name": "HaloPSA.Enabled", "label": "Enable Integration" } @@ -113,49 +197,59 @@ }, { "name": "NinjaOne", + "id": "NinjaOne", "type": "NinjaOne", "cat": "Documentation & Monitoring", + "logo": "/assets/integrations/ninjaone.png", + "logoDark": "/assets/integrations/ninjaone_dark.png", "forceSyncButton": true, + "description": "Enable the NinjaOne integration to sync documentation and monitor device compliance.", "helpText": "This integration allows you to populate custom fields with Tenant information, monitor device compliance state, document other items and generate relationships inside NinjaOne.", + "links": [ + { + "name": "NinjaOne Documentation", + "url": "https://www.ninjaone.com/integrations/cyberdrain/" + } + ], "SettingOptions": [ { - "type": "input", - "fieldtype": "input", + "type": "textField", "name": "NinjaOne.Instance", "label": "Please enter your NinjaOne Instance hostname", - "placeholder": "app.ninjarmm.com, eu.ninjarmm.com, oc.ninjarmm.com, ca.ninjarmm.com, us2.ninjarmm.com" + "placeholder": "app.ninjarmm.com, eu.ninjarmm.com, oc.ninjarmm.com, ca.ninjarmm.com, us2.ninjarmm.com", + "required": true }, { - "type": "input", - "fieldtype": "password", + "type": "textField", "name": "NinjaOne.ClientID", "label": "NinjaOne API Client ID", - "placeholder": "Enter your NinjaOne API Client ID" + "placeholder": "Enter your NinjaOne API Client ID", + "required": true }, { - "type": "input", - "fieldtype": "password", + "type": "password", "name": "NinjaOne.APIKey", "label": "NinjaOne API Client Secret", - "placeholder": "Enter your NinjaOne API Client Secret" + "placeholder": "Enter your NinjaOne API Client Secret", + "required": true }, { - "type": "checkbox", + "type": "switch", "name": "NinjaOne.LicenseDocumentsEnabled", "label": "Sync Licenses (Requires NinjaOne Documentation)" }, { - "type": "checkbox", + "type": "switch", "name": "NinjaOne.UserDocumentsEnabled", "label": "Sync Users (Requires NinjaOne Documentation)" }, { - "type": "checkbox", + "type": "switch", "name": "NinjaOne.LicensedOnly", "label": "Only Sync Licensed Users (Requires NinjaOne Documentation)" }, { - "type": "checkbox", + "type": "switch", "name": "NinjaOne.Enabled", "label": "Enable Integration" } @@ -167,52 +261,62 @@ }, { "name": "Hudu", + "id": "Hudu", "type": "Hudu", "cat": "Documentation", + "logo": "/assets/integrations/hudu.png", + "logoDark": "/assets/integrations/hudu_dark.png", "forceSyncButton": true, + "description": "Enable the Hudu integration to sync documentation", "helpText": "This integration allows you to populate custom asset layouts with Tenant information, monitor device compliance state, document other items and generate relationships inside Hudu.", + "links": [ + { + "name": "Hudu Documentation", + "url": "https://support.hudu.com/hc/en-us/articles/24970807130391-CIPP#h_01J3NTF188BX3P64RKX3H52P3W" + } + ], "SettingOptions": [ { - "type": "input", - "fieldtype": "input", + "type": "textField", "name": "Hudu.BaseUrl", "label": "Please enter your Hudu URL", - "placeholder": "https://yourcompany.huducloud.com" + "placeholder": "https://yourcompany.huducloud.com", + "required": true }, { - "type": "input", - "fieldtype": "password", + "type": "password", "name": "Hudu.APIKey", "label": "Hudu API Key", - "placeholder": "Enter your Hudu API Key" + "placeholder": "Enter your Hudu API Key", + "required": true }, { - "type": "checkbox", + "type": "switch", "name": "Hudu.Enabled", "label": "Enable Integration" }, { - "type": "checkbox", + "type": "switch", "name": "Hudu.CreateMissingUsers", "label": "Create missing users in Hudu" }, { - "type": "checkbox", + "type": "switch", "name": "Hudu.CreateMissingDevices", "label": "Create missing devices in Hudu" }, { - "type": "text", + "type": "textField", "name": "Hudu.ExcludeSerials", "label": "Exclude device serials (comma separated)" }, { - "type": "checkbox", + "type": "switch", "name": "Hudu.ImportDomains", "label": "Import domains from M365" }, { - "type": "checkbox", + "type": "switch", "name": "Hudu.MonitorDomains", "label": "Monitor domains in Hudu" } @@ -223,62 +327,101 @@ }, { "name": "PasswordPusher", + "id": "PWPush", "type": "PWPush", "cat": "Passwords", + "logo": "/assets/integrations/pwpush_light.png", + "logoDark": "/assets/integrations/pwpush_dark.png", "forceSyncButton": false, - "helpText": "This integration allows you to generate password links instead of plain text passwords. Visit https://pwpush.com/ or https://github.com/pglombardo/PasswordPusher for more information.", + "description": "Enable the PasswordPusher integration to generate password links instead of plain text passwords.", + "helpText": "This integration allows you to generate password links instead of plain text passwords. Configure authentication and expiration settings that will apply to all generated passwords.", + "links": [ + { + "name": "PWPush Documentation", + "url": "https://docs.pwpush.com" + }, + { + "name": "GitHub Project", + "url": "https://github.com/pglombardo/PasswordPusher" + } + ], "SettingOptions": [ { - "type": "checkbox", + "type": "switch", "name": "PWPush.Enabled", - "label": "Replace generated passwords with PWPush links" + "label": "Enable Integration - Replace passwords with PWPush links" }, { - "type": "input", - "fieldtype": "text", + "type": "textField", "name": "PWPush.BaseUrl", "label": "PWPush URL", "placeholder": "Enter your PWPush URL. (default: https://pwpush.com)" }, { - "type": "input", - "fieldtype": "text", + "type": "textField", "name": "PWPush.EmailAddress", "label": "PWPush email address", "placeholder": "Enter your email address for PWPush. (optional)" }, { - "type": "input", - "fieldtype": "password", + "type": "password", "name": "PWPush.APIKey", "label": "PWPush API Key", "placeholder": "Enter your PWPush API Key. (optional)" }, { - "type": "checkbox", + "type": "switch", "name": "PWPush.RetrievalStep", "label": "Click to retrieve password (recommended)" }, { - "type": "input", - "fieldtype": "number", + "type": "number", "name": "PWPush.ExpireAfterDays", "label": "Expiration in Days", "placeholder": "Expiration time in days. (optional)" }, { - "type": "input", - "fieldtype": "number", + "type": "number", "name": "PWPush.ExpireAfterViews", "label": "Expiration after views", "placeholder": "Expiration after views. (optional)" }, { - "type": "checkbox", + "type": "switch", "name": "PWPush.DeletableByViewer", "label": "Allow deletion of passwords" } ], "mappingRequired": false + }, + { + "name": "Have I been Pwned", + "id": "HIBP", + "type": "darkweb", + "cat": "Darkweb Scanning", + "logo": "/assets/integrations/hibp.png", + "logoDark": "/assets/integrations/hibp.png", + "forceSyncButton": false, + "description": "Enable the HIBP integration to scan your tenant for compromised credentials.", + "helpText": "This integration allows you to scan your tenant for compromised credentials, breaches, and darkweb scanning.", + "links": [ + { + "name": "Have I Been Pwned", + "url": "https://haveibeenpwned.com/" + } + ], + "SettingOptions": [ + { + "type": "password", + "name": "HIBP.APIKey", + "label": "Enter your own HIBP API Key. When you are a CyberDrain hosted partner, leave this key blank." + }, + { + "type": "switch", + "name": "HIBP.Enabled", + "label": "Enable Integration - Allow darkweb scanning through tools and alerts" + } + ], + "mappingRequired": false } ] diff --git a/src/data/GraphExplorerPresets.json b/src/data/GraphExplorerPresets.json new file mode 100644 index 000000000000..f6ed62774ab1 --- /dev/null +++ b/src/data/GraphExplorerPresets.json @@ -0,0 +1,153 @@ +[ + { + "name": "All users with email addresses", + "id": "6164e239-0c9a-4a27-9049-6250bf65a3e3", + "params": { + "endpoint": "/users", + "$select": "userPrincipalName,mail,proxyAddresses", + "$filter": "" + }, + "isBuiltin": true + }, + { + "name": "Licensed Users", + "id": "6aa4445d-1202-41bb-9d24-431869420d13", + "params": { + "endpoint": "/users", + "$filter": "assignedLicenses/$count ne 0", + "$count": true + }, + "isBuiltin": true + }, + { + "name": "Licensed and Enabled Users", + "id": "277f07f1-17d5-4339-bc3f-c95c904ae794", + "params": { + "endpoint": "/users", + "$filter": "assignedLicenses/$count ne 0 and accountEnabled eq true", + "$count": true + }, + "isBuiltin": true + }, + { + "name": "All Devices listing ID, Displayname, and registration status", + "id": "e7fdc49a-72a9-4a70-9dbf-a74152495d80", + "params": { + "endpoint": "/devices", + "$select": "deviceId,DisplayName,profileType,registrationDateTime,trustType", + "$filter": "" + }, + "isBuiltin": true + }, + { + "name": "All contacts and their mail addresses", + "id": "f1844e3d-cb3e-4611-9bab-f5f42169bcd0", + "params": { + "endpoint": "/contacts", + "$select": "CompanyName,DisplayName,Mail,ProxyAddresses", + "$filter": "" + }, + "isBuiltin": true + }, + { + "name": "Outlook Agents used in last 90 days", + "id": "eea3cacb-ca95-4998-bcd9-ff1815a7a493", + "params": { + "endpoint": "reports/getEmailAppUsageUserDetail(period='D90')", + "$format": "application/json", + "$filter": "", + "$select": "", + "isBuiltin": true + } + }, + { + "name": "Activated M365 Subscription installations", + "id": "ccbe5b0d-ff0d-4262-a789-ccbd8f8d52e1", + "params": { + "endpoint": "/reports/getOffice365ActivationsUserDetail", + "$format": "application/json", + "$filter": null, + "$select": "" + }, + "isBuiltin": true + }, + { + "name": "All Enterprise Applications", + "id": "f037014a-df35-4abe-937d-2e4106561da9", + "params": { + "endpoint": "servicePrincipals", + "$filter": "tags/any(t:t eq 'WindowsAzureActiveDirectoryIntegratedApp')" + }, + "isBuiltin": true + }, + { + "name": "SAML Applications", + "id": "6aaaf5b9-dc8d-4203-a493-7b4297d0dc5a", + "params": { + "endpoint": "servicePrincipals", + "$filter": "tags/any(t:t eq 'WindowsAzureActiveDirectoryGalleryApplicationPrimaryV1')" + }, + "isBuiltin": true + }, + { + "name": "Applications signed in in last 30 days", + "id": "a9ec9f2d-c102-4b4f-9b9d-c2bc57155990", + "params": { + "endpoint": "reports/getAzureADApplicationSignInSummary(period='D30')", + "$filter": "", + "$select": "" + }, + "isBuiltin": true + }, + { + "name": "User Registration Report", + "id": "a00d251d-2743-484a-b8bb-8601199ceb68", + "params": { + "endpoint": "/reports/authenticationMethods/userRegistrationDetails", + "$filter": "", + "$select": "" + }, + "isBuiltin": true + }, + { + "name": "All Global Admins", + "id": "c73df2bb-08fe-4fb2-b112-97006bdcf0a8", + "params": { + "endpoint": "directoryRoles/roleTemplateId=62e90394-69f5-4237-9190-012177145e10/members", + "$filter": "", + "$select": "" + }, + "isBuiltin": true + }, + { + "name": "Multifactor Authentication Report for Admins", + "id": "ae7b3dc4-822b-46b9-aa0a-0305b4c33632", + "params": { + "endpoint": "/reports/authenticationMethods/userRegistrationDetails", + "$filter": "IsAdmin eq true", + "$select": "" + }, + "isBuiltin": true + }, + { + "name": "Secure Score with Current Score and Max Score", + "id": "bd6665e8-02c1-4cbf-bd3c-d2a52f17c2cf", + "params": { + "endpoint": "security/secureScores", + "$top": 90, + "$select": "currentscore,maxscore,activeusercount,enabledservices", + "$filter": "", + "NoPagination": true + }, + "isBuiltin": true + }, + { + "name": "Organization Branding", + "id": "2ed236e2-268e-461b-9d37-98b123010667", + "params": { + "endpoint": "organization/%tenantid%/branding", + "NoPagination": true + }, + "isBuiltin": true + } +] diff --git a/src/data/LicenseExamples.json b/src/data/LicenseExamples.json deleted file mode 100644 index 6e01a92e19e5..000000000000 --- a/src/data/LicenseExamples.json +++ /dev/null @@ -1,14074 +0,0 @@ -[ - { - "Product_Display_Name": "Advanced Communications", - "String_Id": "ADV_COMMS", - "GUID": "e4654015-5daf-4a48-9b37-4f309dddd88b", - "Service_Plan_Name": "TEAMS_ADVCOMMS", - "Service_Plan_Id": "604ec28a-ae18-4bc6-91b0-11da94504ba9", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Communications" - }, - { - "Product_Display_Name": "AI Builder Capacity add-on", - "String_Id": "CDSAICAPACITY", - "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8", - "Service_Plan_Name": "CDSAICAPACITY", - "Service_Plan_Id": "a7c70a41-5e02-4271-93e6-d9b4184d83f5", - "Service_Plans_Included_Friendly_Names": "AI Builder capacity add-on" - }, - { - "Product_Display_Name": "AI Builder Capacity add-on", - "String_Id": "CDSAICAPACITY", - "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "APP CONNECT IW", - "String_Id": "SPZA_IW", - "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f", - "Service_Plan_Name": "SPZA", - "Service_Plan_Id": "0bfc98ed-1dbc-4a97-b246-701754e48b17", - "Service_Plans_Included_Friendly_Names": "APP CONNECT" - }, - { - "Product_Display_Name": "APP CONNECT IW", - "String_Id": "SPZA_IW", - "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Microsoft 365 Audio Conferencing", - "String_Id": "MCOMEETADV", - "GUID": "0c266dff-15dd-4b49-8397-2bb16070ed52", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY BASIC", - "String_Id": "AAD_BASIC", - "GUID": "2b9c8e7c-319c-43a2-a2a0-48c5c6161de7", - "Service_Plan_Name": "AAD_BASIC", - "Service_Plan_Id": "c4da7f8a-5ee2-4c99-a7e1-87d2df57f6fe", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY BASIC" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1", - "String_Id": "AAD_PREMIUM", - "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P2" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2", - "String_Id": "AAD_PREMIUM_P2", - "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "AZURE INFORMATION PROTECTION PLAN 1", - "String_Id": "RIGHTSMANAGEMENT", - "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "AZURE INFORMATION PROTECTION PLAN 1", - "String_Id": "RIGHTSMANAGEMENT", - "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "Business Apps (free)", - "String_Id": "SMB_APPS", - "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96", - "Service_Plan_Name": "DYN365BC_MS_INVOICING", - "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726", - "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing" - }, - { - "Product_Display_Name": "Business Apps (free)", - "String_Id": "SMB_APPS", - "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "COMMON AREA PHONE", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "COMMON AREA PHONE", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "COMMON AREA PHONE", - "String_Id": "MCOCAP", - "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "Common Area Phone for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government" - }, - { - "Product_Display_Name": "Common Area Phone for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government" - }, - { - "Product_Display_Name": "Common Area Phone for GCC", - "String_Id": "MCOCAP_GOV", - "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity", - "String_Id": "CDS_DB_CAPACITY", - "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", - "Service_Plan_Name": "CDS_DB_CAPACITY", - "Service_Plan_Id": "360bcc37-0c11-4264-8eed-9fa7a3297c9b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity" - }, - { - "Product_Display_Name": "Common Data Service Database Capacity", - "String_Id": "CDS_DB_CAPACITY", - "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Common Data Service Log Capacity", - "String_Id": "CDS_LOG_CAPACITY", - "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", - "Service_Plan_Name": "CDS_LOG_CAPACITY", - "Service_Plan_Id": "dc48f5c5-e87d-43d6-b884-7ac4a59e7ee9", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Log Capacity" - }, - { - "Product_Display_Name": "Common Data Service Log Capacity", - "String_Id": "CDS_LOG_CAPACITY", - "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "COMMUNICATIONS CREDITS", - "String_Id": "MCOPSTNC", - "GUID": "47794cd0-f0e5-45c5-9033-2eb6b5fc84e0", - "Service_Plan_Name": "MCOPSTNC", - "Service_Plan_Id": "505e180f-f7e0-4b65-91d4-00d670bbd18c", - "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS CREDITS" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", - "String_Id": "CRMSTORAGE", - "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)", - "String_Id": "CRMSTORAGE", - "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d", - "Service_Plan_Name": "CRMSTORAGE", - "Service_Plan_Id": "77866113-0f3e-4e6e-9666-b1e25c6f99b0", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", - "String_Id": "CRMINSTANCE", - "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)", - "String_Id": "CRMINSTANCE", - "GUID": "9d776713-14cb-4697-a21d-9a52455c738a", - "Service_Plan_Name": "CRMINSTANCE", - "Service_Plan_Id": "eeea837a-c885-4167-b3d5-ddde30cbd85f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", - "String_Id": "CRMTESTINSTANCE", - "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)", - "String_Id": "CRMTESTINSTANCE", - "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72", - "Service_Plan_Name": "CRMTESTINSTANCE", - "Service_Plan_Id": "a98b7619-66c7-4885-bdfc-1d9c8c3d279f", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Test Instance" - }, - { - "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", - "String_Id": "DYN365_ASSETMANAGEMENT", - "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", - "Service_Plan_Name": "D365_AssetforSCM", - "Service_Plan_Id": "90467813-5b40-40d4-835c-abd48009b1d9", - "Service_Plans_Included_Friendly_Names": "Asset Maintenance Add-in" - }, - { - "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets", - "String_Id": "DYN365_ASSETMANAGEMENT", - "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Additional Environment Addon", - "String_Id": "DYN365_BUSCENTRAL_ADD_ENV_ADDON", - "GUID": "a58f5506-b382-44d4-bfab-225b2fbf8390", - "Service_Plan_Name": "DYN365_BUSCENTRAL_ENVIRONMENT", - "Service_Plan_Id": "d397d6c6-9664-4502-b71c-66f39c400ca4", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Additional Environment Addon" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", - "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", - "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", - "Service_Plan_Name": "DYN365_BUSCENTRAL_DB_CAPACITY", - "Service_Plan_Id": "ae6b27b3-fe31-4e77-ae06-ec5fabbc103a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Database Capacity" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Database Capacity", - "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY", - "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", - "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Business Central Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Essentials", - "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL", - "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "DYN365_FINANCIALS_ACCOUNTANT", - "Service_Plan_Id": "170991d7-b98e-41c5-83d4-db2052e1795f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central External Accountant" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central External Accountant", - "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU", - "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central for IWs", - "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", - "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", - "Service_Plan_Name": "PROJECT_MADEIRA_PREVIEW_IW", - "Service_Plan_Id": "3f2afeed-6fb5-4bf9-998f-f2912133aead", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central for IWs" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central for IWs", - "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU", - "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "DYN365_BUSCENTRAL_PREMIUM", - "Service_Plan_Id": "8e9002c0-a1d8-4465-b952-817d2948e6e2", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Premium" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Business Central Premium", - "String_Id": "DYN365_BUSCENTRAL_PREMIUM", - "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_CSI_EMBED_CE", - "Service_Plan_Id": "1412cdc1-d593-4ad1-9050-40c30ad0b023", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CE Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1", - "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 P1" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_ProjectOperations", - "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "D365_ProjectOperationsCDS", - "Service_Plan_Id": "18fa3aba-b085-4105-87d7-55617b8585e6", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "FLOW_DYN_P2", - "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "Forms_Pro_CE", - "Service_Plan_Id": "97f29a83-1a20-44ff-bf48-5e4ad11f3e51", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Engagement Plan" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "Microsoft Social Engagement Enterprise" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "POWERAPPS_DYN_P2", - "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS", - "Service_Plan_Id": "0a05d977-a21a-45b2-91ce-61c240dbafa2", - "Service_Plans_Included_Friendly_Names": "Project for Project Operations" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Engagement Plan", - "String_Id": "DYN365_ENTERPRISE_PLAN1", - "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Insights Trial", - "String_Id": "DYN365_AI_SERVICE_INSIGHTS", - "GUID": "61e6bd70-fbdb-4deb-82ea-912842f39431", - "Service_Plan_Name": "DYN365_AI_SERVICE_INSIGHTS", - "Service_Plan_Id": "4ade5aa6-5959-4d2c-bf0a-f4c9e2cc00f2", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Trial" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "DYN365_CDS_FORMS_PRO", - "Service_Plan_Id": "363430d1-e3f7-43bc-b07b-767b6bb95e4b", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FORMS_PRO", - "Service_Plan_Id": "17efdd9f-c22c-4ad8-b48e-3b1f3ee1dc9a", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Trial", - "String_Id": "FORMS_PRO", - "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c", - "Service_Plan_Name": "FLOW_FORMS_PRO", - "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "DYN365_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "6929f657-b31b-4947-b4ce-5066c3214f54", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "POWERAPPS_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "c507b04c-a905-4940-ada6-918891e6d3ad", - "Service_Plans_Included_Friendly_Names": "Power Apps for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "FLOW_CUSTOMER_SERVICE_PRO", - "Service_Plan_Id": "0368fc9c-3721-437f-8b7d-3d0f888cdefc", - "Service_Plans_Included_Friendly_Names": "Power Automate for Customer Service Pro" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Service Professional", - "String_Id": "DYN365_CUSTOMER_SERVICE_PRO", - "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "Forms_Pro_AddOn", - "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "Forms_Pro_AddOn", - "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d", - "Service_Plan_Name": "Forms_Pro_AddOn", - "Service_Plan_Id": "90a816f6-de5f-49fd-963c-df490d73b7b5", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice Add-on" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", - "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", - "Service_Plan_Name": "CUSTOMER_VOICE_ADDON", - "Service_Plan_Id": "e6e35e2d-2e7f-4e71-bc6f-2f40ed062f5d", - "Service_Plans_Included_Friendly_Names": "Dynamics Customer Voice Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses", - "String_Id": "DYN365_CUSTOMER_VOICE_ADDON", - "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "CDS_FORM_PRO_USL", - "Service_Plan_Id": "e9830cfd-e65d-49dc-84fb-7d56b9aa2c89", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "Forms_Pro_USL", - "Service_Plan_Id": "3ca0766a-643e-4304-af20-37f02726339b", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice USL" - }, - { - "Product_Display_Name": "Dynamics 365 Customer Voice USL", - "String_Id": "Forms_Pro_USL", - "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba", - "Service_Plan_Name": "FLOW_FORMS_PRO", - "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)", - "String_Id": "CRM_ONLINE_PORTAL", - "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)", - "String_Id": "CRM_ONLINE_PORTAL", - "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3", - "Service_Plan_Name": "CRM_ONLINE_PORTAL", - "Service_Plan_Id": "1d4e9cb1-708d-449c-9f71-943aa8ed1d6a", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "DYN365_CDS_FINANCE", - "Service_Plan_Id": "e95d7060-d4d9-400a-a2bd-a244bf0b609e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Finance" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "D365_Finance", - "Service_Plan_Id": "9f0e1b4e-9b33-4300-b451-b2c662cd4ff7", - "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 for Finance" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 Finance", - "String_Id": "DYN365_FINANCE", - "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR CUSTOMER SERVICE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE", - "GUID": "749742bf-0d37-4158-a120-33567104deeb", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS", - "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION", - "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU", - "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1", - "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 CUSTOMER ENGAGEMENT PLAN" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE", - "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "DYN365_ENTERPRISE_SALES", - "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SALES" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "NBENTERPRISE", - "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_SALES", - "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT", - "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR DYNAMICS 365 SUPPLY CHAIN MANAGEMENT" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "DYN365_REGULATORY_SERVICE", - "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCE AND OPERATIONS ENTERPRISE EDITION - REGULATORY SERVICE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "D365_SCM", - "Service_Plan_Id": "1224eae4-0d91-474a-8a52-27ec96a63fe7", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT", - "String_Id": "DYN365_SCM", - "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Onboard" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "Dynamics_365_for_HCM_Trial", - "Service_Plan_Id": "5ed38b64-c3b7-4d9f-b1cd-0de18c9c4331", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for HCM Trial" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365" - }, - { - "Product_Display_Name": "Dynamics 365 for Talent", - "String_Id": "SKU_Dynamics_365_for_HCM_Trial", - "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_TeamMember", - "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ATTRACT EXPERIENCE TEAM MEMBER" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_TeamMember", - "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ONBOARD EXPERIENCE" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "Service_Plan_Id": "6a54b05e-4fab-40e7-9828-428db3b336fa", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS", - "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR OPERATIONS TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "Dynamics_365_for_Retail_Team_members", - "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "Dynamics_365_for_Talent_Team_members", - "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "FLOW_DYN_TEAM", - "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM", - "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION", - "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS", - "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "DYN365_CDS_GUIDES", - "Service_Plan_Id": "1315ade1-0410-450d-b8e3-8050e6da320f", - "Service_Plans_Included_Friendly_Names": "Common Data Service" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "GUIDES", - "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Guides", - "String_Id": "GUIDES_USER", - "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60", - "Service_Plan_Name": "POWERAPPS_GUIDES", - "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7", - "Service_Plans_Included_Friendly_Names": "Power Apps for Guides" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "DYN365_RETAIL_DEVICE", - "Service_Plan_Id": "ceb28005-d758-4df7-bb97-87a617b93d6c", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Device" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "Dynamics_365_for_OperationsDevices", - "Service_Plan_Id": "2c9fb43e-915a-4d61-b6ca-058ece89fd66", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Devices" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Device", - "String_Id": "Dynamics_365_for_Operations_Devices", - "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU", - "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7", - "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier2", - "Service_Plan_Id": "d8ba6fb2-c6b1-4f07-b7c8-5f2745e36b54", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations non-production multi-box instance for standard acceptance testing (Tier 2)" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU", - "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU", - "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06", - "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier4", - "Service_Plan_Id": "f6b5efb1-1813-426f-96d0-9b4f7438714f", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Enterprise Edition - Sandbox Tier 4:Standard Performance Testing" - }, - { - "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing", - "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU", - "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS", - "String_Id": "DYN365_ENTERPRISE_P1_IW", - "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", - "Service_Plan_Name": "DYN365_ENTERPRISE_P1_IW", - "Service_Plan_Id": "056a5f80-b4e0-4983-a8be-7ad254a113c9", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS", - "String_Id": "DYN365_ENTERPRISE_P1_IW", - "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "CDS_REMOTE_ASSIST", - "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist", - "String_Id": "MICROSOFT_REMOTE_ASSIST", - "GUID": "7a551360-26c4-4f61-84e6-ef715673e083", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "CDS_REMOTE_ASSIST", - "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST", - "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist" - }, - { - "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens", - "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS", - "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_ENT_ATTACH", - "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323", - "Service_Plan_Name": "D365_SALES_ENT_ATTACH", - "Service_Plan_Id": "3ae52229-572e-414f-937c-ff35a87d4f29", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Enterprise Attach" - }, - { - "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer", - "String_Id": "D365_SALES_ENT_ATTACH", - "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "DYN365_CDS_DYN_APPS", - "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" - }, - { - "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "Dynamics_365_Talent_Onboard", - "Service_Plan_Id": "048a552e-c849-4027-b54c-4c7ead26150a", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD", - "String_Id": "DYNAMICS_365_ONBOARDING_SKU", - "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYNAMICS_365_FOR_RETAIL_TEAM_MEMBERS", - "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_ENTERPRISE_TALENT_ATTRACT_TEAMMEMBER", - "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ATTRACT EXPERIENCE TEAM MEMBER" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_ENTERPRISE_TALENT_ONBOARD_TEAMMEMBER", - "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ONBOARD EXPERIENCE" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYNAMICS_365_FOR_TALENT_TEAM_MEMBERS", - "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYN365_TEAM_MEMBERS", - "Service_Plan_Id": "4092fdb5-8d81-41d3-be76-aaba4074530b", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS", - "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR OPERATIONS TEAM MEMBERS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "FLOW_DYN_TEAM", - "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "POWERAPPS_DYN_TEAM", - "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS", - "String_Id": "DYN365_TEAM_MEMBERS", - "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT (PLAN 2)" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DDYN365_CDS_DYN_P2", - "Service_Plan_Id": "d1142cfd-872e-4e77-b6ff-d98ec5a51f66", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DYN365_TALENT_ENTERPRISE", - "Service_Plan_Id": "65a1ebf4-6732-4f00-9dcb-3d115ffdeecd", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_for_Operations", - "Service_Plan_Id": "95d2cd7b-1007-484b-8595-5e97e63fe189", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR_OPERATIONS" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_for_Retail", - "Service_Plan_Id": "a9e39199-8369-444b-89c1-5fe65ec45665", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "DYNAMICS_365_HIRING_FREE_PLAN", - "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 HIRING FREE PLAN" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN", - "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50", - "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "FLOW_DYN_P2", - "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 36" - }, - { - "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION", - "String_Id": "Dynamics_365_for_Operations", - "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9", - "Service_Plan_Name": "POWERAPPS_DYN_P2", - "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3", - "String_Id": "EMS", - "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P2" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P2" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT CLOUD APP SECURITY" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR IDENTITY" - }, - { - "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5", - "String_Id": "EMSPREMIUM", - "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G3 GCC", - "String_Id": "EMS_GOV", - "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "RMS_S_ENTERPRISE)", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Enterprise Mobility + Security G5 GCC", - "String_Id": "EMSPREMIUM_GOV", - "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)", - "String_Id": "EOP_ENTERPRISE_PREMIUM", - "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640", - "Service_Plan_Name": "EOP_ENTERPRISE_PREMIUM", - "Service_Plan_Id": "75badc48-628e-4446-8460-41344d73abd6", - "Service_Plans_Included_Friendly_Names": "Exchange Enterprise CAL Services (EOP DLP)" - }, - { - "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)", - "String_Id": "EOP_ENTERPRISE_PREMIUM", - "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Exchange Online (Plan 1)", - "String_Id": "EXCHANGESTANDARD", - "GUID": "4b9405b0-7788-4568-add1-99614e613b69", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE (PLAN 2)", - "String_Id": "EXCHANGEENTERPRISE", - "GUID": "19ec0d23-8335-4cbd-94ac-6050e30712fa", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE", - "String_Id": "EXCHANGEARCHIVE_ADDON", - "GUID": "ee02fd1b-340e-4a4b-b355-4a514e4c8943", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER", - "String_Id": "EXCHANGEARCHIVE", - "GUID": "90b5e015-709a-4b8b-b08e-3200f994494c", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE", - "Service_Plan_Id": "da040e0a-b393-4bea-bb76-928b3fa1cf5a", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS (ExO P1 BASED)", - "String_Id": "EXCHANGEESSENTIALS", - "GUID": "7fc0182e-d107-4556-8329-7caaa511197b", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS", - "String_Id": "EXCHANGE_S_ESSENTIALS", - "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", - "Service_Plan_Name": "EXCHANGE_S_ESSENTIALS", - "Service_Plan_Id": "1126bef5-da20-4f07-b45e-ad25d2581aa8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ESSENTIALS" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS", - "String_Id": "EXCHANGE_S_ESSENTIALS", - "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE KIOSK", - "String_Id": "EXCHANGEDESKLESS", - "GUID": "80b2d799-d2ba-4d2a-8842-fb0d0f3a4b82", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE KIOSK" - }, - { - "Product_Display_Name": "EXCHANGE ONLINE POP", - "String_Id": "EXCHANGETELCO", - "GUID": "cb0a98a8-11bc-494c-83d9-c1b1ac65327e", - "Service_Plan_Name": "EXCHANGE_B_STANDARD", - "Service_Plan_Id": "90927877-dcff-4af6-b346-2332c0b15bb7", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE POP" - }, - { - "Product_Display_Name": "INTUNE", - "String_Id": "INTUNE_A", - "GUID": "061f9ace-7d42-4136-88ac-31dc755f143f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", - "String_Id": "AX7_USER_TRIAL", - "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", - "Service_Plan_Name": "ERP_TRIAL_INSTANCE", - "Service_Plan_Id": "e2f705fd-2468-4090-8c58-fad6e6b1e724", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 Operations Trial Environment" - }, - { - "Product_Display_Name": "Microsoft Dynamics AX7 User Trial", - "String_Id": "AX7_USER_TRIAL", - "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication", - "String_Id": "MFA_STANDALONE", - "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication", - "String_Id": "MFA_STANDALONE", - "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)", - "String_Id": "THREAT_INTELLIGENCE", - "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "AAD_EDU", - "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A1", - "String_Id": "M365EDU_A1", - "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "Windows Store Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for Faculty", - "String_Id": "M365EDU_A3_FACULTY", - "GUID": "4b590615-0888-425a-a965-b3bf7789848d", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS", - "String_Id": "M365EDU_A3_STUDENT", - "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT", - "GUID": "18250162-5d87-4436-a834-d795c15c80f3", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise (unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit", - "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1", - "GUID": "1aa94593-ca12-4254-a738-81a5972958e8", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics -(Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT", - "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for Faculty", - "String_Id": "M365EDU_A5_FACULTY", - "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS", - "String_Id": "M365EDU_A5_STUDENT", - "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 for students use benefit", - "String_Id": "M365EDU_A5_STUUSEBNFT", - "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_EDU", - "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693", - "Service_Plans_Included_Friendly_Names": "Intune for Education" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION", - "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256", - "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING", - "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086", - "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit", - "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT", - "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "O365_BUSINESS", - "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS", - "String_Id": "SMB_BUSINESS", - "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE", - "String_Id": "OFFICESUBSCRIPTION", - "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC", - "String_Id": "MCOMEETADV_GOC", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "EXCHANGE_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC", - "String_Id": "MCOMEETADV_GOC", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "O365_BUSINESS_ESSENTIALS", - "GUID": "3b555118-da6a-4418-894f-7df1e2096870", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC", - "String_Id": "SMB_BUSINESS_ESSENTIALS", - "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER MIDSIZE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD", - "String_Id": "O365_BUSINESS_PREMIUM", - "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY", - "String_Id": "SMB_BUSINESS_PREMIUM", - "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "INTUNE_SMBIZ", - "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "O365_SB_Relationship_Management", - "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79", - "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "OFFICE_BUSINESS", - "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "WINBIZ", - "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM", - "String_Id": "SPB", - "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (US)", - "String_Id": "BUSINESS_VOICE_MED2_TELCO", - "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (US)", - "String_Id": "BUSINESS_VOICE_MED2_TELCO", - "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (US)", - "String_Id": "BUSINESS_VOICE_MED2_TELCO", - "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED", - "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US", - "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED", - "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "MICROSOFT 365 DOMESTIC CALLING PLAN (120 Minutes)", - "String_Id": "MCOPSTN_5", - "GUID": "11dee6af-eca8-419f-8061-6864517c1875", - "Service_Plan_Name": "MCOPSTN5", - "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 DOMESTIC CALLING PLAN (120 min)" - }, - { - "Product_Display_Name": "Microsoft 365 Domestic Calling Plan for GCC", - "String_Id": "MCOPSTN_1_GOV", - "GUID": "923f58ab-fca1-46a1-92f9-89fda21238a8", - "Service_Plan_Name": "MCOPSTN1_GOV", - "Service_Plan_Id": "3c8a8792-7866-409b-bb61-1b20ace0368b", - "Service_Plans_Included_Friendly_Names": "Domestic Calling for Government" - }, - { - "Product_Display_Name": "Microsoft 365 Domestic Calling Plan for GCC", - "String_Id": "MCOPSTN_1_GOV", - "GUID": "923f58ab-fca1-46a1-92f9-89fda21238a8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE" - }, - { - "Product_Display_Name": "MICROSOFT 365 E3", - "String_Id": "SPE_E3", - "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended", - "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1", - "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1", - "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 E3 - Unattended License", - "String_Id": "SPE_E3_RPA1", - "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "TEAMS_AR_DOD", - "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD", - "String_Id": "SPE_E3_USGOV_DOD", - "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "TEAMS_AR_GCCHIGH", - "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH", - "String_Id": "SPE_E3_USGOV_GCCHIGH", - "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Phone System" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (Original)" - }, - { - "Product_Display_Name": "Microsoft 365 E5", - "String_Id": "SPE_E5", - "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Compliance", - "String_Id": "INFORMATION_PROTECTION_COMPLIANCE", - "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security", - "String_Id": "IDENTITY_THREAT_PROTECTION", - "GUID": "26124093-3d78-432b-b5dc-48bf992543d5", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5", - "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5", - "GUID": "44ac31e7-2999-4304-ad94-c948886741d4", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1", - "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 K1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 K1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WIN10_ENT_LOC_F1", - "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (local only)" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Microsoft 365 F3", - "String_Id": "SPE_F1", - "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "MICROSOFT FLOW FREE", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - VIRAL" - }, - { - "Product_Display_Name": "MICROSOFT FLOW FREE", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT FLOW FREE", - "String_Id": "FLOW_FREE", - "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d", - "Service_Plan_Name": "FLOW_P2_VIRAL", - "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", - "Service_Plans_Included_Friendly_Names": "FLOW FREE" - }, - { - "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC", - "String_Id": "MCOMEETADV_GOV", - "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "INSIDER_RISK", - "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75", - "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification" - }, - { - "Product_Display_Name": "Microsoft 365 E5 Suite features", - "String_Id": "M365_E5_SUITE_COMPONENTS", - "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067", - "Service_Plan_Name": "SAFEDOCS", - "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7", - "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "RMS_S_PREMIUM", - "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3", - "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "ADALLOM_S_DISCOVERY", - "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9", - "Service_Plans_Included_Friendly_Names": "ADALLOM_S_DISCOVERY" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_F1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_DESKLESS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MFA_PREMIUM" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "INTUNE_A" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "MICROSOFT_SEARCH" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "STREAM_O365_K" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "INTUNE_O365" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTDESKLESS" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "MCOIMP" - }, - { - "Product_Display_Name": "Microsoft 365 F1", - "String_Id": "M365_F1_COMM", - "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "AAD_PREMIUM", - "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "RMS_S_PREMIUM_GOV", - "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98", - "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT PREMIUM FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", - "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - O365 P2 GCC" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "CDS_O365_P2_GCC", - "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P2 GCC" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "EXCHANGE PLAN 2G" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "FORMS_GOV_E3", - "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", - "Service_Plans_Included_Friendly_Names": "FORMS FOR GOVERNMENT (PLAN E3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "CONTENT_EXPLORER", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – PREMIUM" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "CONTENTEXPLORER_STANDARD", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – STANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION FOR OFFICE 365 – STANDARD" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 APPS FOR ENTERPRISE G" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MFA_PREMIUM", - "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT Azure Multi-Factor Authentication" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "STREAM_O365_E3_GOV", - "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 FOR GOVERNMENT (E3)" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 PLANNER FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB (GOVERNMENT)" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365 FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365 FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 2G" - }, - { - "Product_Display_Name": "MICROSOFT 365 G3 GCC", - "String_Id": "M365_G3_GOV", - "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM", - "String_Id": "MCOEV", - "GUID": "e43b5b99-8dfb-405f-9987-dc307f34bcbd", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR DOD", - "String_Id": "MCOEV_DOD", - "GUID": "d01d9287-694b-44f3-bcc5-ada78c8d953e", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR FACULTY", - "String_Id": "MCOEV_FACULTY", - "GUID": "d979703c-028d-4de5-acbf-7955566b69b9", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTE" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCC", - "String_Id": "MCOEV_GOV", - "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCC", - "String_Id": "MCOEV_GOV", - "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM FOR GOVERNMENT" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCCHIGH", - "String_Id": "MCOEV_GCCHIGH", - "GUID": "7035277a-5e49-4abc-a24f-0ec49c501bb5", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR SMALL AND MEDIUM BUSINESS", - "String_Id": "MCOEVSMB_1", - "GUID": "aa6791d3-bb09-4bc2-afed-c30c3fe26032", - "Service_Plan_Name": "MCOEVSMB", - "Service_Plan_Id": "ed777b71-af04-42ca-9798-84344c66f7c6", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS CLOUD PBX FOR SMALL AND MEDIUM BUSINESS" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR STUDENTS", - "String_Id": "MCOEV_STUDENT", - "GUID": "1f338bbc-767e-4a1e-a2d4-b73207cc5b93", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR TELSTRA", - "String_Id": "MCOEV_TELSTRA", - "GUID": "ffaf2d68-1c95-4eb3-9ddd-59b81fba0f61", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM_USGOV_DOD", - "String_Id": "MCOEV_USGOV_DOD", - "GUID": "b0e7de67-e503-4934-b729-53d595ba5cd1", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM_USGOV_GCCHIGH", - "String_Id": "MCOEV_USGOV_GCCHIGH", - "GUID": "985fcb26-7b94-475b-b512-89356697be71", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM" - }, - { - "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM - VIRTUAL USER", - "String_Id": "PHONESYSTEM_VIRTUALUSER", - "GUID": "440eaaa8-b3e0-484b-a8be-62870b9ba70a", - "Service_Plan_Name": "MCOEV_VIRTUALUSER", - "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM VIRTUAL USER" - }, - { - "Product_Display_Name": "Microsoft 365 Phone System - Virtual User for GCC", - "String_Id": "PHONESYSTEM_VIRTUALUSER_GOV", - "GUID": "2cf22bcb-0c9e-4bc6-8daf-7e7654c0f285", - "Service_Plan_Name": "MCOEV_VIRTUALUSER_GOV", - "Service_Plan_Id": "0628a73f-3b4a-4989-bd7b-0f8823144313", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System Virtual User for Government" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "AAD_PREMIUM_P2", - "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "RMS_S_PREMIUM2", - "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c", - "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "BPOS_S_DlpAddOn", - "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed", - "Service_Plans_Included_Friendly_Names": "Data Loss Prevention" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON", - "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793", - "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving for Exchange Online" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "MICROSOFTENDPOINTDLP", - "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "ML_CLASSIFICATION", - "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f", - "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers", - "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW", - "GUID": "2347355b-4e81-41a4-9c22-55057a399791", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "MICROSOFT BUSINESS CENTER", - "String_Id": "MICROSOFT_BUSINESS_CENTER", - "GUID": "726a0894-2c77-4d65-99da-9775ef05aad1", - "Service_Plan_Name": "MICROSOFT_BUSINESS_CENTER", - "Service_Plan_Id": "cca845f9-fd51-4df6-b563-976a37c56ce0", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BUSINESS CENTER" - }, - { - "Product_Display_Name": "Microsoft Cloud App Security", - "String_Id": "ADALLOM_STANDALONE", - "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Cloud App Security", - "String_Id": "ADALLOM_STANDALONE", - "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6", - "Service_Plan_Name": "ADALLOM_S_STANDALONE", - "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2", - "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security" - }, - { - "Product_Display_Name": "MICROSOFT DEFENDER FOR ENDPOINT", - "String_Id": "WIN_DEF_ATP", - "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "MICROSOFT DEFENDER FOR ENDPOINT", - "String_Id": "WIN_DEF_ATP", - "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint Server", - "String_Id": "MDATP_Server", - "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Endpoint Server", - "String_Id": "MDATP_Server", - "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "CRMPLAN2", - "Service_Plan_Id": "bf36ca64-95c6-4918-9275-eb9f4ce2c04f", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE BASIC" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC", - "String_Id": "CRMPLAN2", - "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "ATA", - "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity" - }, - { - "Product_Display_Name": "Microsoft Defender for Identity", - "String_Id": "ATA", - "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5", - "Service_Plan_Name": "ADALLOM_FOR_AATP", - "Service_Plan_Id": "61d18b02-6889-479f-8f36-56e6e0fe5792", - "Service_Plans_Included_Friendly_Names": "SecOps Investigation for MDI" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC", - "String_Id": "THREAT_INTELLIGENCE_GOV", - "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "CRMSTANDARD", - "Service_Plan_Id": "f9646fb2-e3b2-4309-95de-dc4833737456", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE PROFESSIONA" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "FLOW_DYN_APPS", - "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba", - "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "MDM_SALES_COLLABORATION", - "Service_Plan_Id": "3413916e-ee66-4071-be30-6f94d4adfeda", - "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "NBPROFESSIONALFORCRM", - "Service_Plan_Id": "3e58e97c-9abe-ebab-cd5f-d543d1529634", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY" - }, - { - "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE", - "String_Id": "CRMSTANDARD", - "GUID": "d17b27af-3f49-4822-99f9-56a661538792", - "Service_Plan_Name": "POWERAPPS_DYN_APPS", - "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365" - }, - { - "Product_Display_Name": "MS IMAGINE ACADEMY", - "String_Id": "IT_ACADEMY_AD", - "GUID": "ba9a34de-4489-469d-879c-0f0f145321cd", - "Service_Plan_Name": "IT_ACADEMY_AD", - "Service_Plan_Id": "d736def0-1fde-43f0-a5be-e3f8b2de6e41", - "Service_Plans_Included_Friendly_Names": "MS IMAGINE ACADEMY" - }, - { - "Product_Display_Name": "Microsoft Intune Device", - "String_Id": "INTUNE_A_D", - "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Intune Device", - "String_Id": "INTUNE_A_D", - "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE DEVICE FOR GOVERNMENT", - "String_Id": "INTUNE_A_D_GOV", - "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE DEVICE FOR GOVERNMENT", - "String_Id": "INTUNE_A_D_GOV", - "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "DYN365_CDS_VIRAL", - "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0", - "Service_Plans_Included_Friendly_Names": "Common Data Service – VIRAL" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "FLOW_P2_VIRAL", - "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170", - "Service_Plans_Included_Friendly_Names": "Flow Free" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "FLOW_P2_VIRAL_REAL", - "Service_Plan_Id": "d20bfa21-e9ae-43fc-93c2-20783f0840c3", - "Service_Plans_Included_Friendly_Names": "Flow P2 Viral" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial", - "String_Id": "POWERAPPS_VIRAL", - "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4", - "Service_Plan_Name": "POWERAPPS_P2_VIRAL", - "Service_Plan_Id": "d5368ca3-357e-4acb-9c21-8495fb025d1f", - "Service_Plans_Included_Friendly_Names": "PowerApps Trial" - }, - { - "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2", - "String_Id": "FLOW_P2", - "GUID": "4755df59-3f73-41ab-a249-596ad72b5504", - "Service_Plan_Name": "FLOW_P2", - "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "AAD_SMB", - "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102", - "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "INTUNE_SMBIZ", - "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "MICROSOFT INTUNE SMB", - "String_Id": "INTUNE_SMB", - "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "POWERAPPS_P2", - "Service_Plan_Id": "00527d7f-d5bc-4c2a-8d1e-6c0de2410c81", - "Service_Plans_Included_Friendly_Names": "Power Apps (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)", - "String_Id": "POWERFLOW_P2", - "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b", - "Service_Plan_Name": "FLOW_P2", - "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d", - "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)" - }, - { - "Product_Display_Name": "MICROSOFT STREAM", - "String_Id": "STREAM", - "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT STREAM", - "String_Id": "STREAM", - "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6", - "Service_Plan_Name": "MICROSOFTSTREAM", - "Service_Plan_Id": "acffdce6-c30f-4dc2-81c0-372e33c515ec", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM" - }, - { - "Product_Display_Name": "Microsoft Stream Plan 2", - "String_Id": "STREAM_P2", - "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Stream Plan 2", - "String_Id": "STREAM_P2", - "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef", - "Service_Plan_Name": "STREAM_P2", - "Service_Plan_Id": "d3a458d0-f10d-48c2-9e44-86f3f684029e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream Plan 2" - }, - { - "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", - "String_Id": "STREAM_STORAGE", - "GUID": "9bd7c846-9556-4453-a542-191d527209e8", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)", - "String_Id": "STREAM_STORAGE", - "GUID": "9bd7c846-9556-4453-a542-191d527209e8", - "Service_Plan_Name": "STREAM_STORAGE", - "Service_Plan_Id": "83bced11-77ce-4071-95bd-240133796768", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream Storage Add-On" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "MCOFREE", - "Service_Plan_Id": "617d9209-3b90-4879-96e6-838c42b2701d", - "Service_Plans_Included_Friendly_Names": "MCO FREE FOR MICROSOFT TEAMS (FREE)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "TEAMS_FREE", - "Service_Plan_Id": "4fa4026d-ce74-4962-a151-8e96d57ea8e4", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS (FREE)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT KIOSK" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "TEAMS_FREE_SERVICE", - "Service_Plan_Id": "bd6f2ac2-991a-49f9-b23c-18c96a02c228", - "Service_Plans_Included_Friendly_Names": "TEAMS FREE SERVICE" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS (FREE)", - "String_Id": "TEAMS_FREE", - "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "WHITEBOARD (FIRSTLINE)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P1" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "MICROSOFT SEARCH" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "DESKLESS", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICE MOBILE APPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "POWER VIRTUAL AGENTS FOR OFFICE 365 P1" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "WHITEBOARD (PLAN 1)" - }, - { - "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY", - "String_Id": "TEAMS_EXPLORATORY", - "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRIS" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Microsoft Teams Rooms Standard", - "String_Id": "MEETING_ROOM", - "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Trial", - "String_Id": "MS_TEAMS_IW", - "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Microsoft Threat Experts - Experts on Demand", - "String_Id": "EXPERTS_ON_DEMAND", - "GUID": "9fa2f157-c8e4-4351-a3f2-ffa506da1406", - "Service_Plan_Name": "EXPERTS_ON_DEMAND", - "Service_Plan_Id": "b83a66d4-f05f-414d-ac0f-ea1c5239c42b", - "Service_Plans_Included_Friendly_Names": "Microsoft Threat Experts - Experts on Demand" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "EXCHANGEONLINE_MULTIGEO", - "Service_Plan_Id": "897d51f1-2cfa-4848-9b30-469149f5e68e", - "Service_Plans_Included_Friendly_Names": "Exchange Online Multi-Geo" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "SHAREPOINTONLINE_MULTIGEO", - "Service_Plan_Id": "735c1d98-dd3f-4818-b4ed-c8052e18e62d", - "Service_Plans_Included_Friendly_Names": "SharePoint Multi-Geo" - }, - { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", - "String_Id": "OFFICE365_MULTIGEO", - "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", - "Service_Plan_Name": "TEAMSMULTIGEO", - "Service_Plan_Id": "41eda15d-6b52-453b-906f-bc4a5b25a26b", - "Service_Plans_Included_Friendly_Names": "Teams Multi-Geo" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MMR_P1", - "Service_Plan_Id": "bdaa59a3-74fd-4137-981a-31d4f84eb8a0", - "Service_Plans_Included_Friendly_Names": "Meeting Room Managed Services" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "INTUNE_A", - "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", - "Service_Plans_Included_Friendly_Names": "Microsoft Intune" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Teams Rooms Premium", - "String_Id": "MTR_PREM", - "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for faculty", - "String_Id": "ENTERPRISEPACKPLUS_FACULTY", - "GUID": "e578b273-6db4-4691-bba0-8d691f4da603", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_2", - "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the Web for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A3 for students", - "String_Id": "ENTERPRISEPACKPLUS_STUDENT", - "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for faculty", - "String_Id": "ENTERPRISEPREMIUM_FACULTY", - "GUID": "a4585165-0533-458a-97e3-c400570268c4", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "AAD_BASIC_EDU", - "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426", - "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Azure Rights Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EducationAnalyticsP1", - "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337", - "Service_Plans_Included_Friendly_Names": "Education Analytics" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Flow for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "OFFICE_FORMS_PLAN_3", - "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SHAREPOINTWAC_EDU", - "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21", - "Service_Plans_Included_Friendly_Names": "Office for the web (Education)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2", - "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48", - "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU", - "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 A5 for students", - "String_Id": "ENTERPRISEPREMIUM_STUDENT", - "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df", - "Service_Plan_Name": "YAMMER_EDU", - "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a", - "Service_Plans_Included_Friendly_Names": "Yammer for Academic" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 Advanced Compliance", - "String_Id": "EQUIVIO_ANALYTICS", - "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)", - "String_Id": "ATP_ENTERPRISE", - "GUID": "4ef96642-f096-40de-a3e9-d83fb2f90211", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage for GCC", - "String_Id": "SHAREPOINTSTORAGE_GOV", - "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION_GOV" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage for GCC", - "String_Id": "SHAREPOINTSTORAGE_GOV", - "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d", - "Service_Plan_Name": "SHAREPOINTSTORAGE_GOV", - "Service_Plan_Id": "e5bb877f-6ac9-4461-9e43-ca581543ab16", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTORAGE_GOV" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "CDS_O365_P1", - "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E1 SKU" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "MCO_TEAMS_IW", - "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1", - "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P1" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "WHITEBOARD_PLAN1", - "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)" - }, - { - "Product_Display_Name": "Microsoft Teams Commercial Cloud", - "String_Id": "TEAMS_COMMERCIAL_TRIAL", - "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "Office 365 Cloud App Security", - "String_Id": "ADALLOM_O365", - "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Office 365 Cloud App Security", - "String_Id": "ADALLOM_O365", - "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 Extra File Storage", - "String_Id": "SHAREPOINTSTORAGE", - "GUID": "99049c9c-6011-4908-bf17-15f496e6519d", - "Service_Plan_Name": "SHAREPOINTSTORAGE", - "Service_Plan_Id": "be5a7ed5-c598-4fcd-a061-5e6724c68a58", - "Service_Plans_Included_Friendly_Names": "Office 365 Extra File Storage" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "OFFICE 365 E1", - "String_Id": "STANDARDPACK", - "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE " - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "BPOS_S_TODO_1", - "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "EXCHANGE_S_STANDARD", - "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "FLOW_O365_P1", - "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "POWERAPPS_O365_P1", - "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "STREAM_O365_E1", - "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "OFFICE 365 E2", - "String_Id": "STANDARDWOFFPACK", - "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "DYN365_CDS_O365_P2", - "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "CDS_O365_P2", - "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "KAIZALA_O365_P3", - "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2", - "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "PROJECT_O365_P2", - "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "WHITEBOARD_PLAN2", - "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3", - "String_Id": "ENTERPRISEPACK", - "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SHAREPOINT_S_DEVELOPER", - "Service_Plan_Id": "a361d6e2-509e-4e25-a8ad-950060064ef4", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT FOR DEVELOPER" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SHAREPOINTWAC_DEVELOPER", - "Service_Plan_Id": "527f7cdd-0e86-4c47-b879-f5fd357a3ac6", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE FOR DEVELOPER" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E3 DEVELOPER", - "String_Id": "DEVELOPERPACK", - "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "TEAMS_AR_DOD", - "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_DOD", - "String_Id": "ENTERPRISEPACK_USGOV_DOD", - "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "TEAMS_AR_GCCHIGH", - "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office Online" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH", - "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH", - "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "BPOS_S_TODO_2", - "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_2" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "FLOW_O365_P2", - "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "FORMS_PLAN_E3", - "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "MCOVOICECONF", - "Service_Plan_Id": "27216c54-caf8-4d0d-97e2-517afb5c08f6", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 3)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "POWERAPPS_O365_P2", - "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "STREAM_O365_E3", - "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "OFFICE 365 E4", - "String_Id": "ENTERPRISEWITHSCAL", - "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "DYN365_CDS_O365_P3", - "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "CDS_O365_P3", - "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "Customer Lockbox" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_Exchange", - "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6", - "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX", - "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "Information Barriers" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MYANALYTICS_P2", - "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a", - "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOMEETADV", - "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "DATA_INVESTIGATIONS", - "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ATP_ENTERPRISE", - "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCEL_PREMIUM", - "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5", - "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "KAIZALA_STANDALONE", - "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "Microsoft Records Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PAM_ENTERPRISE", - "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb", - "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3", - "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "PROJECT_O365_P3", - "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE", - "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4", - "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "WHITEBOARD_PLAN3", - "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)" - }, - { - "Product_Display_Name": "Office 365 E5", - "String_Id": "ENTERPRISEPREMIUM", - "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 CLOUD APP SECURITY" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "POWER BI PRO" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "BPOS_S_TODO_3", - "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67", - "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EQUIVIO_ANALYTICS", - "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 ADVANCED EDISCOVERY" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCHANGE_ANALYTICS", - "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_ANALYTICS" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", - "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "FLOW_O365_P3", - "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01", - "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "FORMS_PLAN_E5", - "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE", - "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db", - "Service_Plans_Included_Friendly_Names": "LOCKBOX_ENTERPRISE" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MCOEV", - "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", - "Service_Plans_Included_Friendly_Names": "PHONE SYSTEM" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "POWERAPPS_O365_P3", - "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2", - "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "RMS_S_ENTERPRISE", - "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90", - "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "STREAM_O365_E5", - "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "TEAMS1" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "THREAT_INTELLIGENCE", - "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 ADVANCED THREAT PROTECTION (PLAN 2)" - }, - { - "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING", - "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF", - "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "DYN365_CDS_O365_F1", - "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f", - "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "CDS_O365_F1", - "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "EXCHANGE_S_DESKLESS", - "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113", - "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "Microsoft Bookings" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "FORMS_PLAN_K", - "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "KAIZALA_O365_P1", - "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278", - "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT", - "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9", - "Service_Plans_Included_Friendly_Names": "Microsoft Planner" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MICROSOFT_SEARCH", - "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff", - "Service_Plans_Included_Friendly_Names": "Microsoft Search" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "Deskless", - "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3", - "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "STREAM_O365_K", - "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9", - "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "TEAMS1", - "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", - "Service_Plans_Included_Friendly_Names": "Microsoft Teams" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION", - "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745", - "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "POWERAPPS_O365_S1", - "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a", - "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "FLOW_O365_S1", - "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1", - "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a", - "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "PROJECT_O365_F3", - "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec", - "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SHAREPOINTDESKLESS", - "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9", - "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE", - "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5", - "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1", - "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3", - "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)" - }, - { - "Product_Display_Name": "OFFICE 365 F3", - "String_Id": "DESKLESSPACK", - "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f", - "Service_Plan_Name": "YAMMER_ENTERPRISE", - "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653", - "Service_Plans_Included_Friendly_Names": "Yammer Enterprise" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC", - "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - O365 P2 GCC" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "CDS_O365_P2_GCC", - "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P2 GCC" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "EXCHANGE PLAN 2G" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "FORMS_GOV_E3", - "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc", - "Service_Plans_Included_Friendly_Names": "FORMS FOR GOVERNMENT (PLAN E3)" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – PREMIUM" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – STANDARD" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION FOR OFFICE 365 – STANDARD" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MYANALYTICS_P2_GOV", - "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0", - "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 APPS FOR ENTERPRISE G" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "STREAM_O365_E3_GOV", - "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758", - "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 FOR GOVERNMENT (E3)" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 PLANNER FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB (GOVERNMENT)" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", - "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3", - "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365 FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "FLOW_O365_P2_GOV", - "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365 FOR GOVERNMENT" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 2G" - }, - { - "Product_Display_Name": "OFFICE 365 G3 GCC", - "String_Id": "ENTERPRISEPACK_GOV", - "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV", - "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597", - "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC", - "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39", - "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_P3_GCC" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "CDS_O365_P3_GCC", - "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10", - "Service_Plans_Included_Friendly_Names": "CDS_O365_P3_GCC" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV", - "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526", - "Service_Plans_Included_Friendly_Names": "LOCKBOX_ENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV", - "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_ENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "FORMS_GOV_E5", - "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c", - "Service_Plans_Included_Friendly_Names": "FORMS_GOV_E5" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INFORMATION_BARRIERS", - "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287", - "Service_Plans_Included_Friendly_Names": "INFORMATION_BARRIERS" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "Content_Explorer", - "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d", - "Service_Plans_Included_Friendly_Names": "Content_Explorer" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ContentExplorer_Standard", - "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560", - "Service_Plans_Included_Friendly_Names": "ContentExplorer_Standard" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MIP_S_CLP2", - "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3", - "Service_Plans_Included_Friendly_Names": "MIP_S_CLP2" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MIP_S_CLP1", - "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5", - "Service_Plans_Included_Friendly_Names": "MIP_S_CLP1" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE", - "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c", - "Service_Plans_Included_Friendly_Names": "MICROSOFT_COMMUNICATION_COMPLIANCE" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "M365_ADVANCED_AUDITING", - "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849", - "Service_Plans_Included_Friendly_Names": "M365_ADVANCED_AUDITING" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV", - "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOMEETADV_GOV", - "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1", - "Service_Plans_Included_Friendly_Names": "MCOMEETADV_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MTP", - "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192", - "Service_Plans_Included_Friendly_Names": "MTP" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOEV_GOV", - "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22", - "Service_Plans_Included_Friendly_Names": "MCOEV_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MICROSOFTBOOKINGS", - "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2", - "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "COMMUNICATIONS_DLP", - "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b", - "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS_DLP" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "CUSTOMER_KEY", - "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb", - "Service_Plans_Included_Friendly_Names": "CUSTOMER_KEY" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ATP_ENTERPRISE_GOV", - "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516", - "Service_Plans_Included_Friendly_Names": "ATP_ENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV", - "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6", - "Service_Plans_Included_Friendly_Names": "THREAT_INTELLIGENCE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INFO_GOVERNANCE", - "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66", - "Service_Plans_Included_Friendly_Names": "INFO_GOVERNANCE" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV", - "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7", - "Service_Plans_Included_Friendly_Names": "EXCHANGE_ANALYTICS_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "RECORDS_MANAGEMENT", - "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541", - "Service_Plans_Included_Friendly_Names": "RECORDS_MANAGEMENT" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "STREAM_O365_E5_GOV", - "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547", - "Service_Plans_Included_Friendly_Names": "STREAM_O365_E5_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "TEAMS_GOV", - "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28", - "Service_Plans_Included_Friendly_Names": "TEAMS_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "INTUNE_O365", - "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117", - "Service_Plans_Included_Friendly_Names": "INTUNE_O365" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV", - "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1", - "Service_Plans_Included_Friendly_Names": "EQUIVIO_ANALYTICS_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "ADALLOM_S_O365", - "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b", - "Service_Plans_Included_Friendly_Names": "ADALLOM_S_O365" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV", - "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51", - "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTWAC_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", - "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e", - "Service_Plans_Included_Friendly_Names": "POWERAPPS_O365_P3_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "FLOW_O365_P3_GOV", - "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246", - "Service_Plans_Included_Friendly_Names": "FLOW_O365_P3_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "BI_AZURE_P_2_GOV", - "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76", - "Service_Plans_Included_Friendly_Names": "BI_AZURE_P_2_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "PREMIUM_ENCRYPTION", - "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f", - "Service_Plans_Included_Friendly_Names": "PREMIUM_ENCRYPTION" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTENTERPRISE_GOV" - }, - { - "Product_Display_Name": "Office 365 G5 GCC", - "String_Id": "ENTERPRISEPREMIUM_GOV", - "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8", - "Service_Plan_Name": "MCOSTANDARD_GOV", - "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94", - "Service_Plans_Included_Friendly_Names": "MCOSTANDARD_GOV" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "EXCHANGE_S_STANDARD_MIDMARKET", - "Service_Plan_Id": "fc52cc4b-ed7d-472d-bbe7-b081c23ecc56", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE PLAN " - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "MCOSTANDARD_MIDMARKET", - "Service_Plan_Id": "b2669e95-76ef-4e7e-a367-002f60a39f3e", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR MIDSIZ" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "OFFICESUBSCRIPTION", - "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38", - "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_MIDMARKET", - "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 1" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS", - "String_Id": "MIDSIZEPACK", - "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162", - "Service_Plan_Name": "YAMMER_MIDSIZE", - "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb", - "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "EXCHANGE_L_STANDARD", - "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "MCOLITE", - "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "SHAREPOINTLITE", - "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS", - "String_Id": "LITEPACK", - "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "EXCHANGE_L_STANDARD", - "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5", - "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "MCOLITE", - "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "OFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ", - "Service_Plan_Id": "8ca59559-e2ca-470b-b7dd-afd8c0dee963", - "Service_Plans_Included_Friendly_Names": "OFFICE 365 SMALL BUSINESS SUBSCRIPTION" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "SHAREPOINTLITE", - "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE" - }, - { - "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM", - "String_Id": "LITEPACK_P2", - "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "ONEDRIVESTANDARD", - "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30", - "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)", - "String_Id": "WACONEDRIVESTANDARD", - "GUID": "e6778190-713e-4e4f-9119-8b8238de25df", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 2)", - "String_Id": "WACONEDRIVEENTERPRISE", - "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96", - "Service_Plan_Name": "ONEDRIVEENTERPRISE", - "Service_Plan_Id": "afcafa6a-d966-4462-918c-ec0b4e0fe642", - "Service_Plans_Included_Friendly_Names": "ONEDRIVEENTERPRISE" - }, - { - "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 2)", - "String_Id": "WACONEDRIVEENTERPRISE", - "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERFLOWSFREE", - "Service_Plan_Id": "0b4346bb-8dc3-4079-9dfc-513696f56039", - "Service_Plans_Included_Friendly_Names": "LOGIC FLOWS" - }, - { - "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERVIDEOSFREE", - "Service_Plan_Id": "2c4ec2dc-c62d-4167-a966-52a3e6374015", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER VIDEOS BASIC" - }, - { - "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS", - "String_Id": "POWERAPPS_INDIVIDUAL_USER", - "GUID": "87bbbc60-4754-4998-8c88-227dca264858", - "Service_Plan_Name": "POWERAPPSFREE", - "Service_Plan_Id": "e61a2945-1d4e-4523-b6e7-30ba39d20f32", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWERAPPS" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "CDS_PER_APP_IWTRIAL", - "Service_Plan_Id": "94a669d1-84d5-4e54-8462-53b0ae2c8be5", - "Service_Plans_Included_Friendly_Names": "CDS Per app baseline access" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "Flow_Per_APP_IWTRIAL", - "Service_Plan_Id": "dd14867e-8d31-4779-a595-304405f5ad39", - "Service_Plans_Included_Friendly_Names": "Flow per app baseline access" - }, - { - "Product_Display_Name": "PowerApps per app baseline access", - "String_Id": "POWERAPPS_PER_APP_IW", - "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2", - "Service_Plan_Name": "POWERAPPS_PER_APP_IWTRIAL", - "Service_Plan_Id": "35122886-cef5-44a3-ab36-97134eabd9ba", - "Service_Plans_Included_Friendly_Names": "PowerApps per app baseline access" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "CDS_PER_APP", - "Service_Plan_Id": "9f2f00ad-21ae-4ceb-994b-d8bc7be90999", - "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "POWERAPPS_PER_APP", - "Service_Plan_Id": "b4f657ff-d83e-4053-909d-baa2b595ec97", - "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per app plan", - "String_Id": "POWERAPPS_PER_APP", - "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206", - "Service_Plan_Name": "Flow_Per_APP", - "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "POWERAPPS_PER_USER", - "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86", - "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Apps per user plan", - "String_Id": "POWERAPPS_PER_USER", - "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579", - "Service_Plan_Name": "Flow_PowerApps_PerUser", - "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a", - "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "CDS_Flow_Business_Process", - "Service_Plan_Id": "c84e52ae-1906-4947-ac4d-6fb3e5bf7c2e", - "Service_Plans_Included_Friendly_Names": "Common data service for Flow per business process plan" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per flow plan", - "String_Id": "FLOW_BUSINESS_PROCESS", - "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b", - "Service_Plan_Name": "FLOW_BUSINESS_PROCESS", - "Service_Plan_Id": "7e017b61-a6e0-4bdc-861a-932846591f6e", - "Service_Plans_Included_Friendly_Names": "Flow per business process plan" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user plan", - "String_Id": "FLOW_PER_USER", - "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d", - "Service_Plan_Name": "FLOW_PER_USER", - "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", - "Service_Plans_Included_Friendly_Names": "Flow per user plan" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "DYN365_CDS_P2", - "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2", - "Service_Plans_Included_Friendly_Names": "Common Data Service - P2" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user plan dept", - "String_Id": "FLOW_PER_USER_DEPT", - "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4", - "Service_Plan_Name": "FLOW_PER_USER", - "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0", - "Service_Plans_Included_Friendly_Names": "Flow per user plan" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "CDS_ATTENDED_RPA", - "Service_Plan_Id": "3da2fd4c-1bee-4b61-a17f-94c31e5cab93", - "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate per user with attended RPA plan", - "String_Id": "POWERAUTOMATE_ATTENDED_RPA", - "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", - "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA", - "Service_Plan_Id": "375cd0ad-c407-49fd-866a-0bff4f8a9a4d", - "Service_Plans_Included_Friendly_Names": "Power Automate RPA Attended" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "CDS_UNATTENDED_RPA", - "Service_Plan_Id": "b475952f-128a-4a44-b82a-0b98a45ca7fb", - "Service_Plans_Included_Friendly_Names": "Common Data Service Unattended RPA" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power Automate unattended RPA add-on", - "String_Id": "POWERAUTOMATE_UNATTENDED_RPA", - "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2", - "Service_Plan_Name": "POWER_AUTOMATE_UNATTENDED_RPA", - "Service_Plan_Id": "0d373a98-a27a-426f-8993-f9a425ae99c5", - "Service_Plans_Included_Friendly_Names": "Power Automate Unattended RPA add-on" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "SQL_IS_SSIM", - "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd", - "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Information Services Plan 1" - }, - { - "Product_Display_Name": "Power BI", - "String_Id": "POWER_BI_INDIVIDUAL_USER", - "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a", - "Service_Plan_Name": "BI_AZURE_P1", - "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d", - "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Reporting and Analytics Plan 1" - }, - { - "Product_Display_Name": "Power BI (free)", - "String_Id": "POWER_BI_STANDARD", - "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI (free)", - "String_Id": "POWER_BI_STANDARD", - "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235", - "Service_Plan_Name": "BI_AZURE_P0", - "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4", - "Service_Plans_Included_Friendly_Names": "Power BI (free)" - }, - { - "Product_Display_Name": "POWER BI FOR OFFICE 365 ADD-ON", - "String_Id": "POWER_BI_ADDON", - "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402", - "Service_Plan_Name": "BI_AZURE_P1", - "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI REPORTING AND ANALYTICS PLAN 1" - }, - { - "Product_Display_Name": "POWER BI FOR OFFICE 365 ADD-ON", - "String_Id": "POWER_BI_ADDON", - "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402", - "Service_Plan_Name": "SQL_IS_SSIM", - "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd", - "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI INFORMATION SERVICES PLAN " - }, - { - "Product_Display_Name": "Power BI Premium P1", - "String_Id": "PBI_PREMIUM_P1_ADDON", - "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium P1", - "String_Id": "PBI_PREMIUM_P1_ADDON", - "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945", - "Service_Plan_Name": "PBI_PREMIUM_P1_ADDON", - "Service_Plan_Id": "9da49a6d-707a-48a1-b44a-53dcde5267f8", - "Service_Plans_Included_Friendly_Names": "Power BI Premium P" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User", - "String_Id": "PBI_PREMIUM_PER_USER", - "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Premium Per User Add-On", - "String_Id": "PBI_PREMIUM_PER_USER_ADDON", - "GUID": "de376a03-6e5b-42ec-855f-093fb50b8ca5", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "BI_AZURE_P3", - "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c", - "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User" - }, - { - "Product_Display_Name": "Power BI Premium Per User Dept", - "String_Id": "PBI_PREMIUM_PER_USER_DEPT", - "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro", - "String_Id": "POWER_BI_PRO", - "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro", - "String_Id": "POWER_BI_PRO", - "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro CE", - "String_Id": "POWER_BI_PRO_CE", - "GUID": "420af87e-8177-4146-a780-3786adaffbca", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro CE", - "String_Id": "POWER_BI_PRO_CE", - "GUID": "420af87e-8177-4146-a780-3786adaffbca", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power BI Pro Dept", - "String_Id": "POWER_BI_PRO_DEPT", - "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Power BI Pro Dept", - "String_Id": "POWER_BI_PRO_DEPT", - "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882", - "Service_Plan_Name": "BI_AZURE_P2", - "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba", - "Service_Plans_Included_Friendly_Names": "Power BI Pro" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "0a0a23fa-fea1-4195-bb89-b4789cb12f7f", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Virtual Agent Base" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "4b81a949-69a1-4409-ad34-9791a6ec88aa", - "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent" - }, - { - "Product_Display_Name": "Power Virtual Agent", - "String_Id": "VIRTUAL_AGENT_BASE", - "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f", - "Service_Plan_Name": "VIRTUAL_AGENT_BASE", - "Service_Plan_Id": "f6934f16-83d3-4f3b-ad27-c6e9c187b260", - "Service_Plans_Included_Friendly_Names": "Virtual Agent Base" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "DYN365_CDS_CCI_BOTS", - "Service_Plan_Id": "cf7034ed-348f-42eb-8bbd-dddeea43ee81", - "Service_Plans_Included_Friendly_Names": "Common Data Service for CCI Bots" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL", - "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee", - "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral" - }, - { - "Product_Display_Name": "Power Virtual Agents Viral Trial", - "String_Id": "CCIBOTS_PRIVPREV_VIRAL", - "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80", - "Service_Plan_Name": "FLOW_CCI_BOTS", - "Service_Plan_Id": "5d798708-6473-48ad-9776-3acc301c40af", - "Service_Plans_Included_Friendly_Names": "Flow for CCI Bots" - }, - { - "Product_Display_Name": "PROJECT FOR OFFICE 365", - "String_Id": "PROJECTCLIENT", - "GUID": "a10d5e58-74da-4312-95c8-76be4e5b75a0", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Online Essentials", - "String_Id": "PROJECTESSENTIALS", - "GUID": "776df282-9fc0-4862-99e2-70e561b9909e", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "Sway" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM", - "String_Id": "PROJECTPREMIUM", - "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT", - "String_Id": "PROJECTONLINE_PLAN_1", - "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "FORMS_PLAN_E1", - "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344", - "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" - }, - { - "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365", - "String_Id": "PROJECTONLINE_PLAN_2", - "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c", - "Service_Plan_Name": "SWAY", - "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97", - "Service_Plans_Included_Friendly_Names": "SWAY" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", - "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", - "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR PROJECT P1" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "Power_Automate_For_Project_P1", - "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", - "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR PROJECT P1" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "PROJECT_P1", - "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", - "Service_Plans_Included_Friendly_Names": "PROJECT P1" - }, - { - "Product_Display_Name": "PROJECT PLAN 1", - "String_Id": "PROJECT_P1", - "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1", - "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "Power_Automate_For_Project_P1", - "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1", - "Service_Plans_Included_Friendly_Names": "Power Automate for Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "PROJECT_ESSENTIALS", - "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda", - "Service_Plans_Included_Friendly_Names": "Project Online Essentials" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "PROJECT_P1", - "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9", - "Service_Plans_Included_Friendly_Names": "Project P1" - }, - { - "Product_Display_Name": "Project Plan 1 (for Department)", - "String_Id": "PROJECT_PLAN1_DEPT", - "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Flow for Project" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the web" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "PROJECT_PROFESSIONAL", - "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", - "Service_Plans_Included_Friendly_Names": "Project P3" - }, - { - "Product_Display_Name": "Project Plan 3", - "String_Id": "PROJECTPROFESSIONAL", - "GUID": "53818b1b-4a27-454b-8896-0dba576410e6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "DYN365_CDS_PROJECT", - "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c", - "Service_Plans_Included_Friendly_Names": "Common Data Service for Project" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "FLOW_FOR_PROJECT", - "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d", - "Service_Plans_Included_Friendly_Names": "Flow for Project" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINTWAC", - "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014", - "Service_Plans_Included_Friendly_Names": "Office for the Web" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINT_PROJECT", - "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063", - "Service_Plans_Included_Friendly_Names": "Project Online Service" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "PROJECT_PROFESSIONAL", - "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7", - "Service_Plans_Included_Friendly_Names": "Project P3" - }, - { - "Product_Display_Name": "Project Plan 3 (for Department)", - "String_Id": "PROJECT_PLAN3_DEPT", - "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the web (Government)" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", - "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" - }, - { - "Product_Display_Name": "Project Plan 3 for GCC", - "String_Id": "PROJECTPROFESSIONAL_GOV", - "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINTWAC_GOV", - "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec", - "Service_Plans_Included_Friendly_Names": "Office for the web (Government)" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067", - "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV", - "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472", - "Service_Plans_Included_Friendly_Names": "Project Online Service for Government" - }, - { - "Product_Display_Name": "Project Plan 5 for GCC", - "String_Id": "PROJECTPREMIUM_GOV", - "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6", - "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV", - "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692", - "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G" - }, - { - "Product_Display_Name": "Rights Management Adhoc", - "String_Id": "RIGHTSMANAGEMENT_ADHOC", - "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Rights Management Adhoc", - "String_Id": "RIGHTSMANAGEMENT_ADHOC", - "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b", - "Service_Plan_Name": "RMS_S_ADHOC", - "Service_Plan_Id": "7a39d7dd-e456-4e09-842a-0204ee08187b", - "Service_Plans_Included_Friendly_Names": "Rights Management Adhoc" - }, - { - "Product_Display_Name": "Rights Management Service Basic Content Protection", - "String_Id": "RMSBASIC", - "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Rights Management Service Basic Content Protection", - "String_Id": "RMSBASIC", - "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0", - "Service_Plan_Name": "RMS_S_BASIC", - "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122", - "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", - "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES", - "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9", - "Service_Plan_Name": "D365_IOTFORSCM_ADDITIONAL", - "Service_Plan_Id": "a5f38206-2f48-4d83-9957-525f4e75e9c0", - "Service_Plans_Included_Friendly_Names": "IoT Intelligence Add-in Additional Machines" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", - "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management", - "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO", - "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a", - "Service_Plan_Name": "D365_IOTFORSCM", - "Service_Plan_Id": "83dd9619-c7d5-44da-9250-dc4ee79fff7e", - "Service_Plans_Included_Friendly_Names": "Iot Intelligence Add-in for D365 Supply Chain Management" - }, - { - "Product_Display_Name": "SHAREPOINT ONLINE (PLAN 1)", - "String_Id": "SHAREPOINTSTANDARD", - "GUID": "1fc08a02-8b3d-43b9-831e-f76859e04e1a", - "Service_Plan_Name": "SHAREPOINTSTANDARD", - "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1", - "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD" - }, - { - "Product_Display_Name": "SHAREPOINT ONLINE (PLAN 2)", - "String_Id": "SHAREPOINTENTERPRISE", - "GUID": "a9732ec9-17d9-494c-a51c-d6b45b384dcb", - "Service_Plan_Name": "SHAREPOINTENTERPRISE", - "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72", - "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "CDS_O365_E5_KM", - "Service_Plan_Id": "3069d530-e41b-421c-ad59-fb1001a23e11", - "Service_Plans_Included_Friendly_Names": "Common Data Service for SharePoint Syntex" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "Intelligent_Content_Services", - "Service_Plan_Id": "f00bd55e-1633-416e-97c0-03684e42bc42", - "Service_Plans_Included_Friendly_Names": "SharePoint Syntex" - }, - { - "Product_Display_Name": "SharePoint Syntex", - "String_Id": "Intelligent_Content_Services", - "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4", - "Service_Plan_Name": "Intelligent_Content_Services_SPO_type", - "Service_Plan_Id": "fd2e7f90-1010-487e-a11b-d2b1ae9651fc", - "Service_Plans_Included_Friendly_Names": "SharePoint Syntex - SPO type" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS ONLINE (PLAN 1)", - "String_Id": "MCOIMP", - "GUID": "b8b749f8-a4ef-4887-9539-c95b1eaa5db7", - "Service_Plan_Name": "MCOIMP", - "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 1)" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS ONLINE (PLAN 2)", - "String_Id": "MCOSTANDARD", - "GUID": "d42c793f-6c78-4f43-92ca-e8f6a02b035f", - "Service_Plan_Name": "MCOSTANDARD", - "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", - "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC AND INTERNATIONAL CALLING", - "String_Id": "MCOPSTN2", - "GUID": "d3b4fe1f-9992-4930-8acb-ca6ec609365e", - "Service_Plan_Name": "MCOPSTN2", - "Service_Plan_Id": "5a10155d-f5c1-411a-a8ec-e99aae125390", - "Service_Plans_Included_Friendly_Names": "DOMESTIC AND INTERNATIONAL CALLING PLAN" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC CALLING", - "String_Id": "MCOPSTN1", - "GUID": "0dab259f-bf13-4952-b7f8-7db8f131b28d", - "Service_Plan_Name": "MCOPSTN1", - "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8", - "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" - }, - { - "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC CALLING (120 Minutes)", - "String_Id": "MCOPSTN5", - "GUID": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plan_Name": "MCOPSTN5", - "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06", - "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN" - }, - { - "Product_Display_Name": "TELSTRA CALLING FOR O365", - "String_Id": "MCOPSTNEAU2", - "GUID": "de3312e1-c7b0-46e6-a7c3-a515ff90bc86", - "Service_Plan_Name": "MCOPSTNEAU", - "Service_Plan_Id": "7861360b-dc3b-4eba-a3fc-0d323a035746", - "Service_Plans_Included_Friendly_Names": "AUSTRALIA CALLING PLAN" - }, - { - "Product_Display_Name": "Universal Print", - "String_Id": "UNIVERSAL_PRINT", - "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Universal Print", - "String_Id": "UNIVERSAL_PRINT", - "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for business Basic" - }, - { - "Product_Display_Name": "Visio Plan 1", - "String_Id": "VISIO_PLAN1_DEPT", - "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio web app" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "Visio Desktop App" - }, - { - "Product_Display_Name": "Visio Plan 2", - "String_Id": "VISIO_PLAN2_DEPT", - "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "Visio Web App" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 1", - "String_Id": "VISIOONLINE_PLAN1", - "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "ONEDRIVE_BASIC", - "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION", - "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea", - "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP" - }, - { - "Product_Display_Name": "VISIO ONLINE PLAN 2", - "String_Id": "VISIOCLIENT", - "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5", - "Service_Plan_Name": "VISIOONLINE", - "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP" - }, - { - "Product_Display_Name": "VISIO PLAN 2 FOR GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT" - }, - { - "Product_Display_Name": "VISIO PLAN 2 FOR GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "ONEDRIVE_BASIC_GOV", - "Service_Plan_Id": "98709c2e-96b5-4244-95f5-a0ebe139fb8a", - "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC FOR GOVERNMENT" - }, - { - "Product_Display_Name": "VISIO PLAN 2 FOR GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION_GOV", - "Service_Plan_Id": "f85945f4-7a55-4009-bc39-6a5f14a8eac1", - "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP FOR Government" - }, - { - "Product_Display_Name": "VISIO PLAN 2 FOR GCC", - "String_Id": "VISIOCLIENT_GOV", - "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba", - "Service_Plan_Name": "VISIOONLINE_GOV", - "Service_Plan_Id": "8a9ecb07-cfc0-48ab-866c-f83c4d911576", - "Service_Plans_Included_Friendly_Names": "VISIO WEB APP FOR GOVERNMENT" - }, - { - "Product_Display_Name": "Viva Topics", - "String_Id": "TOPIC_EXPERIENCES", - "GUID": "4016f256-b063-4864-816e-d818aad600c9", - "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP", - "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0", - "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Viva Topics)" - }, - { - "Product_Display_Name": "Viva Topics", - "String_Id": "TOPIC_EXPERIENCES", - "GUID": "4016f256-b063-4864-816e-d818aad600c9", - "Service_Plan_Name": "CORTEX", - "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83", - "Service_Plans_Included_Friendly_Names": "Viva Topics" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for faculty", - "String_Id": "WIN10_ENT_A3_FAC", - "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10 Enterprise A3 for students", - "String_Id": "WIN10_ENT_A3_STU", - "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_PRO_ENT_SUB", - "GUID": "cb10e6cd-9da4-4992-867b-67546b1db821", - "Service_Plan_Name": "WIN10_PRO_ENT_SUB", - "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "UNIVERSAL PRINT" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE (NEW)" - }, - { - "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3", - "String_Id": "WIN10_VDA_E3", - "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "WINDOWS UPDATE FOR BUSINESS DEPLOYMENT SERVICE" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "UNIVERSAL_PRINT_01", - "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9", - "Service_Plans_Included_Friendly_Names": "Universal Print" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5", - "String_Id": "WIN10_VDA_E5", - "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002", - "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE", - "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365", - "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV", - "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "WINDEFATP", - "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef", - "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint" - }, - { - "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)", - "String_Id": "WINE5_GCC_COMPAT", - "GUID": "938fd547-d794-42a4-996c-1cc206619580", - "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)", - "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118", - "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_B_2C_4RAM_64GB", - "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5", - "Service_Plan_Name": "CPC_B_2C_4RAM_64GB", - "Service_Plan_Id": "a790cd6e-a153-4461-83c7-e127037830b6", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", - "String_Id": "CPC_B_4C_16RAM_128GB_WHB", - "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)", - "String_Id": "CPC_B_4C_16RAM_128GB_WHB", - "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef", - "Service_Plan_Name": "CPC_B_4C_16RAM_128GB", - "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550", - "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_E_2C_4GB_64GB", - "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "Exchange Foundation" - }, - { - "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB", - "String_Id": "CPC_E_2C_4GB_64GB", - "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f", - "Service_Plan_Name": "CPC_E_2C_4GB_64GB", - "Service_Plan_Id": "23a25099-1b2f-4e07-84bd-b84606109438", - "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB" - }, - { - "Product_Display_Name": "WINDOWS STORE FOR BUSINESS", - "String_Id": "WINDOWS_STORE", - "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", - "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", - "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318", - "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION" - }, - { - "Product_Display_Name": "WINDOWS STORE FOR BUSINESS", - "String_Id": "WINDOWS_STORE", - "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9", - "Service_Plan_Name": "WINDOWS_STORE", - "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d", - "Service_Plans_Included_Friendly_Names": "WINDOWS STORE SERVICE" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS", - "Service_Plan_Id": "f477b0f0-3bb1-4890-940c-40fcee6ce05f", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND", - "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights Backend" - }, - { - "Product_Display_Name": "Microsoft Workplace Analytics", - "String_Id": "WORKPLACE_ANALYTICS", - "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8", - "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER", - "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c", - "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights User" - } -] diff --git a/src/data/M365Licenses.json b/src/data/M365Licenses.json index 1ba8fcbec6cd..560b3c13f04c 100644 --- a/src/data/M365Licenses.json +++ b/src/data/M365Licenses.json @@ -3245,7 +3245,7 @@ "GUID": "e85b3345-2fd5-45cf-a196-7968d3e18e56", "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium & Trial" }, { "Product_Display_Name": "Dynamics 365 for Sales Enterprise for Government", @@ -3389,7 +3389,7 @@ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877", "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium & Trial" }, { "Product_Display_Name": "Dynamics 365 Sales Premium", @@ -11423,6 +11423,14 @@ "Service_Plan_Id": "89f1c4c8-0878-40f7-804d-869c9128ab5d", "Service_Plans_Included_Friendly_Names": "Power Platform Connectors in Microsoft 365 Copilot" }, + { + "Product_Display_Name": "Microsoft 365 Domestic Calling Plan (120 minutes) - US", + "String_Id": "MCOPSTN5_US", + "GUID": "d13e9d1b-316a-4946-98c6-362c97a4fdfe", + "Service_Plan_Name": "PSTN5_US", + "Service_Plan_Id": "1346d5e6-15a6-4b88-9693-806ff7296a7a", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan - US (120 minutes)" + }, { "Product_Display_Name": "Microsoft 365 E3", "String_Id": "SPE_E3", @@ -25005,7 +25013,7 @@ "GUID": "3227bcb2-8448-4f81-b3c2-8c2074e15a2a", "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Sales Copilot Premium \u0026 Trial" + "Service_Plans_Included_Friendly_Names": "Microsoft Sales Copilot Premium & Trial" }, { "Product_Display_Name": "Microsoft Sales Copilot", @@ -25957,7 +25965,7 @@ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f", "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial", "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766", - "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial" + "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium & Trial" }, { "Product_Display_Name": "Microsoft Relationship Sales solution", @@ -26687,6 +26695,14 @@ "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account" }, + { + "Product_Display_Name": "Microsoft Teams Phone Resource Account for Faculty", + "String_Id": "PHONESYSTEM_VIRTUALUSER_FACULTY", + "GUID": "0e142028-345e-45da-8d92-8bfd4093bbb9", + "Service_Plan_Name": "MCOEV_VIRTUALUSER", + "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account" + }, { "Product_Display_Name": "Microsoft Teams Phone Resource Account for GCC", "String_Id": "PHONESYSTEM_VIRTUALUSER_GOV", @@ -27199,6 +27215,62 @@ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for Faculty", + "String_Id": "MCOCAP_FACULTY ", + "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ", + "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE", + "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0", + "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for Faculty", + "String_Id": "MCOCAP_FACULTY ", + "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ", + "Service_Plan_Name": "MCOEV", + "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7", + "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for Faculty", + "String_Id": "MCOCAP_FACULTY ", + "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ", + "Service_Plan_Name": "TEAMS1", + "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929", + "Service_Plans_Included_Friendly_Names": "Microsoft Teams" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for Faculty", + "String_Id": "MCOCAP_FACULTY ", + "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ", + "Service_Plan_Name": "MCOSTANDARD", + "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", + "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for Faculty", + "String_Id": "MCOCAP_FACULTY ", + "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ", + "Service_Plan_Name": "AAD_PREMIUM", + "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d", + "Service_Plans_Included_Friendly_Names": "Microsoft Entra ID P1" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for Faculty", + "String_Id": "MCOCAP_FACULTY ", + "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ", + "Service_Plan_Name": "INTUNE_A", + "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5", + "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1" + }, + { + "Product_Display_Name": "Microsoft Teams Shared Devices for Faculty", + "String_Id": "MCOCAP_FACULTY ", + "GUID": "420c7602-7f70-4895-9394-d3d679ea36fb ", + "Service_Plan_Name": "SPECIALTY_DEVICES", + "Service_Plan_Id": "cfce7ae3-4b41-4438-999c-c0e91f3b7fb9", + "Service_Plans_Included_Friendly_Names": "Specialty devices" + }, { "Product_Display_Name": "Microsoft Teams Shared Devices for GCC", "String_Id": "MCOCAP_GOV", @@ -27680,7 +27752,7 @@ "Service_Plans_Included_Friendly_Names": "Exchange Foundation" }, { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", + "Product_Display_Name": "Office 365 Multi-Geo Capabilities", "String_Id": "OFFICE365_MULTIGEO", "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", "Service_Plan_Name": "EXCHANGEONLINE_MULTIGEO", @@ -27688,7 +27760,7 @@ "Service_Plans_Included_Friendly_Names": "Exchange Online Multi-Geo" }, { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", + "Product_Display_Name": "Office 365 Multi-Geo Capabilities", "String_Id": "OFFICE365_MULTIGEO", "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", "Service_Plan_Name": "SHAREPOINTONLINE_MULTIGEO", @@ -27696,7 +27768,7 @@ "Service_Plans_Included_Friendly_Names": "SharePoint Multi-Geo" }, { - "Product_Display_Name": "Multi-Geo Capabilities in Office 365", + "Product_Display_Name": "Office 365 Multi-Geo Capabilities", "String_Id": "OFFICE365_MULTIGEO", "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607", "Service_Plan_Name": "TEAMSMULTIGEO", @@ -35968,7 +36040,7 @@ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "DYN365_CDS_PROJECT_GCC", @@ -35976,7 +36048,7 @@ "Service_Plans_Included_Friendly_Names": "Common Data Service for Project for GCC" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "CDSAICAPACITY_PERAPP", @@ -35984,7 +36056,7 @@ "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "DYN365_CDS_P1_GOV", @@ -35992,7 +36064,7 @@ "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "DYN365_CDS_P2_GOV", @@ -36000,7 +36072,7 @@ "Service_Plans_Included_Friendly_Names": "Common Data Service for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_GCC_P5", @@ -36008,7 +36080,7 @@ "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P5 for GCC" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "FLOW_FOR_PROJECT_GOV", @@ -36016,7 +36088,7 @@ "Service_Plans_Included_Friendly_Names": "Data integration for Project with Power Automate for GCC" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "CDSAICAPACITY_PERUSER", @@ -36024,7 +36096,7 @@ "Service_Plans_Included_Friendly_Names": "DO NOT USE - AI Builder capacity Per User add-on" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "POWERAPPS_O365_S1_GOV", @@ -36032,7 +36104,7 @@ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "POWERAPPS_O365_P1_GOV", @@ -36040,7 +36112,7 @@ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "POWERAPPS_O365_P2_GOV", @@ -36048,7 +36120,7 @@ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "POWERAPPS_O365_P3_GOV", @@ -36056,7 +36128,7 @@ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "FLOW_DYN_APPS_GOV", @@ -36064,7 +36136,7 @@ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "FLOW_DYN_TEAM_GOV", @@ -36072,7 +36144,7 @@ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Team Members for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "FLOW_O365_S1_GOV", @@ -36080,7 +36152,7 @@ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "FLOW_O365_P1_GOV", @@ -36088,7 +36160,7 @@ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "FLOW_O365_P2_GOV", @@ -36096,7 +36168,7 @@ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "FLOW_O365_P3_GOV", @@ -36104,7 +36176,7 @@ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "FLOW_DYN_P2_GOV", @@ -36112,7 +36184,7 @@ "Service_Plans_Included_Friendly_Names": "Power Automate P2 for Dynamics 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "POWERAPPS_DYN_APPS_GOV", @@ -36120,7 +36192,7 @@ "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "POWERAPPS_DYN_TEAM_GOV", @@ -36128,7 +36200,7 @@ "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365 Team Members for Government" }, { - "Product_Display_Name": "PowerApps \u0026 Flow GCC Test - O365 \u0026 Dyn365 Plans", + "Product_Display_Name": "PowerApps & Flow GCC Test - O365 & Dyn365 Plans", "String_Id": "POWERFLOWGCC_TEST", "GUID": "0f13a262-dc6f-4800-8dc6-a62f72c95fad", "Service_Plan_Name": "POWERAPPS_DYN_P2_GOV", @@ -36792,7 +36864,7 @@ "Service_Plans_Included_Friendly_Names": "Power Automate per User Plan for Government" }, { - "Product_Display_Name": "Power Automate per user with attended RPA plan", + "Product_Display_Name": "Power Automate Premium", "String_Id": "POWERAUTOMATE_ATTENDED_RPA", "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", "Service_Plan_Name": "CDS_ATTENDED_RPA", @@ -36800,7 +36872,7 @@ "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA" }, { - "Product_Display_Name": "Power Automate per user with attended RPA plan", + "Product_Display_Name": "Power Automate Premium", "String_Id": "POWERAUTOMATE_ATTENDED_RPA", "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", "Service_Plan_Name": "EXCHANGE_S_FOUNDATION", @@ -36808,7 +36880,7 @@ "Service_Plans_Included_Friendly_Names": "Exchange Foundation" }, { - "Product_Display_Name": "Power Automate per user with attended RPA plan", + "Product_Display_Name": "Power Automate Premium", "String_Id": "POWERAUTOMATE_ATTENDED_RPA", "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9", "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA", @@ -39215,6 +39287,14 @@ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c", "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)" }, + { + "Product_Display_Name": "Skype for Business PSTN Calling Domestic Small", + "String_Id": "MCOPSTN5", + "GUID": "d43177b5-475b-4880-92d4-d54c27b5efbd", + "Service_Plan_Name": "Skype for Business PSTN Calling Domestic Small", + "Service_Plan_Id": "9a0125a5-c8f8-4526-b231-49e2abe0ebce", + "Service_Plans_Included_Friendly_Names": "Skype for Business PSTN Calling Domestic Small" + }, { "Product_Display_Name": "Skype for Business PSTN Domestic and International Calling", "String_Id": "MCOPSTN2", diff --git a/src/data/alerts.json b/src/data/alerts.json index fe03d7b6a968..0648464c74ff 100644 --- a/src/data/alerts.json +++ b/src/data/alerts.json @@ -105,6 +105,11 @@ "label": "Alert on device compliance issues", "recommendedRunInterval": "4h" }, + { + "name": "BreachAlert", + "label": "Alert on (new) potentially breached passwords. Generates an alert if a password is found to be breached.", + "recommendedRunInterval": "7d" + }, { "name": "HuntressRogueApps", "label": "Alert on Huntress Rogue Apps detected", diff --git a/src/data/audit-log-translations.json b/src/data/audit-log-translations.json new file mode 100644 index 000000000000..a5a35ff0e1c4 --- /dev/null +++ b/src/data/audit-log-translations.json @@ -0,0 +1,561 @@ +{ + "UserType": { + "0": "Regular", + "1": "Reserved", + "2": "Admin", + "3": "DcAdmin", + "4": "System", + "5": "Application", + "6": "ServicePrincipal", + "7": "CustomPolicy", + "8": "SystemPolicy", + "9": "PartnerTechnician", + "10": "Guest" + }, + "AuditLogRecordType": { + "1": "ExchangeAdmin", + "2": "ExchangeItem", + "3": "ExchangeItemGroup", + "4": "SharePoint", + "6": "SharePointFileOperation", + "7": "OneDrive", + "8": "AzureActiveDirectory", + "9": "AzureActiveDirectoryAccountLogon", + "10": "DataCenterSecurityCmdlet", + "11": "ComplianceDLPSharePoint", + "13": "ComplianceDLPExchange", + "14": "SharePointSharingOperation", + "15": "AzureActiveDirectoryStsLogon", + "16": "SkypeForBusinessPSTNUsage", + "17": "SkypeForBusinessUsersBlocked", + "18": "SecurityComplianceCenterEOPCmdlet", + "19": "ExchangeAggregatedOperation", + "20": "PowerBIAudit", + "21": "CRM", + "22": "Yammer", + "23": "SkypeForBusinessCmdlets", + "24": "Discovery", + "25": "MicrosoftTeams", + "28": "ThreatIntelligence", + "29": "MailSubmission", + "30": "MicrosoftFlow", + "31": "AeD", + "32": "MicrosoftStream", + "33": "ComplianceDLPSharePointClassification", + "34": "ThreatFinder", + "35": "Project", + "36": "SharePointListOperation", + "37": "SharePointCommentOperation", + "38": "DataGovernance", + "39": "Kaizala", + "40": "SecurityComplianceAlerts", + "41": "ThreatIntelligenceUrl", + "42": "SecurityComplianceInsights", + "43": "MIPLabel", + "44": "WorkplaceAnalytics", + "45": "PowerAppsApp", + "46": "PowerAppsPlan", + "47": "ThreatIntelligenceAtpContent", + "48": "LabelContentExplorer", + "49": "TeamsHealthcare", + "50": "ExchangeItemAggregated", + "51": "HygieneEvent", + "52": "DataInsightsRestApiAudit", + "53": "InformationBarrierPolicyApplication", + "54": "SharePointListItemOperation", + "55": "SharePointContentTypeOperation", + "56": "SharePointFieldOperation", + "57": "MicrosoftTeamsAdmin", + "58": "HRSignal", + "59": "MicrosoftTeamsDevice", + "60": "MicrosoftTeamsAnalytics", + "61": "InformationWorkerProtection", + "62": "Campaign", + "63": "DLPEndpoint", + "64": "AirInvestigation", + "65": "Quarantine", + "66": "MicrosoftForms", + "67": "ApplicationAudit", + "68": "ComplianceSupervisionExchange", + "69": "CustomerKeyServiceEncryption", + "70": "OfficeNative", + "71": "MipAutoLabelSharePointItem", + "72": "MipAutoLabelSharePointPolicyLocation", + "73": "MicrosoftTeamsShifts", + "75": "MipAutoLabelExchangeItem", + "76": "CortanaBriefing", + "78": "WDATPAlerts", + "79": "PowerAppsResource", + "82": "SensitivityLabelPolicyMatch", + "83": "SensitivityLabelAction", + "84": "SensitivityLabeledFileAction", + "85": "AttackSim", + "86": "AirManualInvestigation", + "87": "SecurityComplianceRBAC", + "88": "UserTraining", + "89": "AirAdminActionInvestigation", + "90": "MSTIC", + "91": "PhysicalBadgingSignal", + "93": "AipDiscover", + "94": "AipSensitivityLabelAction", + "95": "AipProtectionAction", + "96": "AipFileDeleted", + "97": "AipHeartBeat", + "98": "MCASAlerts", + "99": "OnPremisesFileShareScannerDlp", + "100": "OnPremisesSharePointScannerDlp", + "101": "ExchangeSearch", + "102": "SharePointSearch", + "103": "PrivacyInsights", + "105": "MyAnalyticsSettings", + "106": "SecurityComplianceUserChange", + "107": "ComplianceDLPExchangeClassification", + "109": "MipExactDataMatch", + "113": "MS365DCustomDetection", + "147": "CoreReportingSettings", + "148": "ComplianceConnector", + "154": "OMEPortal", + "164": "ScorePlatformGenericAuditRecord", + "174": "DataShareOperation", + "181": "EduDataLakeDownloadOperation", + "183": "MicrosoftGraphDataConnectOperation", + "186": "PowerPagesSite", + "187": "PowerPlatformAdminDlp", + "188": "PlannerPlan", + "189": "PlannerCopyPlan", + "190": "PlannerTask", + "191": "PlannerRoster", + "192": "PlannerPlanList", + "193": "PlannerTaskList", + "194": "PlannerTenantSettings", + "195": "ProjectForThewebProject", + "196": "ProjectForThewebTask", + "197": "ProjectForThewebRoadmap", + "198": "ProjectForThewebRoadmapItem", + "199": "ProjectForThewebProjectSettings", + "200": "ProjectForThewebRoadmapSettings", + "216": "Viva Goals", + "217": "MicrosoftGraphDataConnectConsent", + "218": "AttackSimAdmin", + "230": "TeamsUpdates", + "231": "PlannerRosterSensitivityLabel", + "237": "DefenderExpertsforXDRAdmin", + "251": "VfamCreatePolicy", + "252": "VfamUpdatePolicy", + "253": "VfamDeletePolicy", + "261": "CopilotInteraction", + "275": "OWAAuth", + "280": "VivaPulseResponse", + "281": "VivaPulseOrganizer", + "282": "VivaPulseAdmin", + "283": "VivaPulseReport", + "287": "ProjectForThewebAssignedToMeSettings", + "288": "CloudPolicyService", + "298": "BackupPolicy", + "299": "RestoreTask", + "300": "RestoreItem", + "301": "BackupItem", + "332": "ComplianceSettingsChange", + "337": "CloudUpdateProfileConfig", + "338": "CloudUpdateTenantConfig", + "339": "CloudUpdateDeviceConfig" + }, + "OperationType": { + "1": "Create", + "2": "Update", + "3": "Delete", + "4": "Read", + "5": "Move", + "6": "Copy", + "7": "Rename", + "8": "Restore", + "9": "Purge", + "10": "Export", + "11": "Import", + "12": "Share", + "13": "Unshare", + "14": "CheckIn", + "15": "CheckOut", + "16": "Publish", + "17": "Unpublish", + "18": "Approve", + "19": "Reject", + "20": "Archive", + "21": "Unarchive", + "22": "Enable", + "23": "Disable", + "24": "Lock", + "25": "Unlock", + "26": "Grant", + "27": "Revoke", + "28": "Assign", + "29": "Unassign", + "30": "Add", + "31": "Remove", + "32": "Start", + "33": "Stop", + "34": "Pause", + "35": "Resume", + "36": "Suspend", + "37": "Unsuspend", + "38": "Activate", + "39": "Deactivate", + "40": "Install", + "41": "Uninstall", + "42": "Upgrade", + "43": "Downgrade", + "44": "Backup", + "45": "Restore", + "46": "Sync", + "47": "Unsync", + "48": "Merge", + "49": "Split", + "50": "Tag", + "51": "Untag", + "52": "Label", + "53": "Unlabel", + "54": "Classify", + "55": "Unclassify", + "56": "Encrypt", + "57": "Decrypt", + "58": "Sign", + "59": "Unsign", + "60": "Verify", + "61": "Unverify", + "62": "Scan", + "63": "Unscan", + "64": "Analyze", + "65": "Unanalyze", + "66": "Detect", + "67": "Undetect", + "68": "Quarantine", + "69": "Unquarantine", + "70": "Report", + "71": "Unreport", + "72": "Alert", + "73": "Unalert", + "74": "Notify", + "75": "Unnotify", + "76": "Monitor", + "77": "Unmonitor", + "78": "Audit", + "79": "Unaudit", + "80": "Review", + "81": "Unreview", + "82": "Approve", + "83": "Unapprove", + "84": "Reject", + "85": "Unreject", + "86": "Authorize", + "87": "Unauthorize", + "88": "Authenticate", + "89": "Unauthenticate", + "90": "Validate", + "91": "Invalidate", + "92": "Test", + "93": "Untest", + "94": "Deploy", + "95": "Undeploy", + "96": "Provision", + "97": "Unprovision", + "98": "Configure", + "99": "Unconfigure", + "100": "Initialize", + "101": "Uninitialize", + "102": "Start", + "103": "Stop", + "104": "Restart", + "105": "Shutdown", + "106": "Boot", + "107": "Reboot", + "108": "Suspend", + "109": "Resume", + "110": "Pause", + "111": "Unpause", + "112": "Enable", + "113": "Disable", + "114": "Lock", + "115": "Unlock", + "116": "Grant", + "117": "Revoke", + "118": "Assign", + "119": "Unassign", + "120": "Add", + "121": "Remove", + "122": "Create", + "123": "Update", + "124": "Delete", + "125": "Read", + "126": "Move", + "127": "Copy", + "128": "Rename", + "129": "Restore", + "130": "Purge", + "131": "Export", + "132": "Import", + "133": "Share", + "134": "Unshare", + "135": "CheckIn", + "136": "CheckOut", + "137": "Publish", + "138": "Unpublish", + "139": "Approve", + "140": "Reject", + "141": "Archive", + "142": "Unarchive", + "143": "Enable", + "144": "Disable", + "145": "Lock", + "146": "Unlock", + "147": "Grant", + "148": "Revoke", + "149": "Assign", + "150": "Unassign", + "151": "Add", + "152": "Remove", + "153": "Start", + "154": "Stop", + "155": "Pause", + "156": "Resume", + "157": "Suspend", + "158": "Unsuspend", + "159": "Activate", + "160": "Deactivate", + "161": "Install", + "162": "Uninstall", + "163": "Upgrade", + "164": "Downgrade", + "165": "Backup", + "166": "Restore", + "167": "Sync", + "168": "Unsync", + "169": "Merge", + "170": "Split", + "171": "Tag", + "172": "Untag", + "173": "Label", + "174": "Unlabel", + "175": "Classify", + "176": "Unclassify", + "177": "Encrypt", + "178": "Decrypt", + "179": "Sign", + "180": "Unsign", + "181": "Verify", + "182": "Unverify", + "183": "Scan", + "184": "Unscan", + "185": "Analyze", + "186": "Unanalyze", + "187": "Detect", + "188": "Undetect", + "189": "Quarantine", + "190": "Unquarantine", + "191": "Report", + "192": "Unreport", + "193": "Alert", + "194": "Unalert", + "195": "Notify", + "196": "Unnotify", + "197": "Monitor", + "198": "Unmonitor", + "199": "Audit", + "200": "Unaudit", + "201": "Review", + "202": "Unreview", + "203": "Approve", + "204": "Unapprove", + "205": "Reject", + "206": "Unreject", + "207": "Authorize", + "208": "Unauthorize", + "209": "Authenticate", + "210": "Unauthenticate", + "211": "Validate", + "212": "Invalidate", + "213": "Test", + "214": "Untest", + "215": "Deploy", + "216": "Undeploy", + "217": "Provision", + "218": "Unprovision", + "219": "Configure", + "220": "Unconfigure", + "221": "Initialize", + "222": "Uninitialize" + }, + "OperationStatus": { + "0": "Failed", + "1": "Succeeded", + "2": "PartiallySucceeded", + "3": "Inprogress", + "4": "NotApplicable", + "5": "NotAvailable", + "6": "Skipped", + "7": "Unknown", + "8": "Pending", + "9": "Cancelled" + }, + "OperationInitiatedBy": { + "0": "User", + "1": "System", + "2": "Application", + "3": "ServicePrincipal", + "4": "CustomPolicy", + "5": "SystemPolicy", + "6": "Admin", + "7": "Automation" + }, + "RecordType": { + "1": "ExchangeAdmin", + "2": "ExchangeItem", + "3": "ExchangeItemGroup", + "4": "SharePoint", + "6": "SharePointFileOperation", + "7": "OneDrive", + "8": "AzureActiveDirectory", + "9": "AzureActiveDirectoryAccountLogon", + "10": "DataCenterSecurityCmdlet", + "11": "ComplianceDLPSharePoint", + "13": "ComplianceDLPExchange", + "14": "SharePointSharingOperation", + "15": "AzureActiveDirectoryStsLogon", + "16": "SkypeForBusinessPSTNUsage", + "17": "SkypeForBusinessUsersBlocked", + "18": "SecurityComplianceCenterEOPCmdlet", + "19": "ExchangeAggregatedOperation", + "20": "PowerBIAudit", + "21": "CRM", + "22": "Yammer", + "23": "SkypeForBusinessCmdlets", + "24": "Discovery", + "25": "MicrosoftTeams", + "28": "ThreatIntelligence", + "29": "MailSubmission", + "30": "MicrosoftFlow", + "31": "AeD", + "32": "MicrosoftStream", + "33": "ComplianceDLPSharePointClassification", + "34": "ThreatFinder", + "35": "Project", + "36": "SharePointListOperation", + "37": "SharePointCommentOperation", + "38": "DataGovernance", + "39": "Kaizala", + "40": "SecurityComplianceAlerts", + "41": "ThreatIntelligenceUrl", + "42": "SecurityComplianceInsights", + "43": "MIPLabel", + "44": "WorkplaceAnalytics", + "45": "PowerAppsApp", + "46": "PowerAppsPlan", + "47": "ThreatIntelligenceAtpContent", + "48": "LabelContentExplorer", + "49": "TeamsHealthcare", + "50": "ExchangeItemAggregated", + "51": "HygieneEvent", + "52": "DataInsightsRestApiAudit", + "53": "InformationBarrierPolicyApplication", + "54": "SharePointListItemOperation", + "55": "SharePointContentTypeOperation", + "56": "SharePointFieldOperation", + "57": "MicrosoftTeamsAdmin", + "58": "HRSignal", + "59": "MicrosoftTeamsDevice", + "60": "MicrosoftTeamsAnalytics", + "61": "InformationWorkerProtection", + "62": "Campaign", + "63": "DLPEndpoint", + "64": "AirInvestigation", + "65": "Quarantine", + "66": "MicrosoftForms", + "67": "ApplicationAudit", + "68": "ComplianceSupervisionExchange", + "69": "CustomerKeyServiceEncryption", + "70": "OfficeNative", + "71": "MipAutoLabelSharePointItem", + "72": "MipAutoLabelSharePointPolicyLocation", + "73": "MicrosoftTeamsShifts", + "75": "MipAutoLabelExchangeItem", + "76": "CortanaBriefing", + "78": "WDATPAlerts", + "79": "PowerAppsResource", + "82": "SensitivityLabelPolicyMatch", + "83": "SensitivityLabelAction", + "84": "SensitivityLabeledFileAction", + "85": "AttackSim", + "86": "AirManualInvestigation", + "87": "SecurityComplianceRBAC", + "88": "UserTraining", + "89": "AirAdminActionInvestigation", + "90": "MSTIC", + "91": "PhysicalBadgingSignal", + "93": "AipDiscover", + "94": "AipSensitivityLabelAction", + "95": "AipProtectionAction", + "96": "AipFileDeleted", + "97": "AipHeartBeat", + "98": "MCASAlerts", + "99": "OnPremisesFileShareScannerDlp", + "100": "OnPremisesSharePointScannerDlp", + "101": "ExchangeSearch", + "102": "SharePointSearch", + "103": "PrivacyInsights", + "105": "MyAnalyticsSettings", + "106": "SecurityComplianceUserChange", + "107": "ComplianceDLPExchangeClassification", + "109": "MipExactDataMatch", + "113": "MS365DCustomDetection", + "147": "CoreReportingSettings", + "148": "ComplianceConnector", + "154": "OMEPortal", + "164": "ScorePlatformGenericAuditRecord", + "174": "DataShareOperation", + "181": "EduDataLakeDownloadOperation", + "183": "MicrosoftGraphDataConnectOperation", + "186": "PowerPagesSite", + "187": "PowerPlatformAdminDlp", + "188": "PlannerPlan", + "189": "PlannerCopyPlan", + "190": "PlannerTask", + "191": "PlannerRoster", + "192": "PlannerPlanList", + "193": "PlannerTaskList", + "194": "PlannerTenantSettings", + "195": "ProjectForThewebProject", + "196": "ProjectForThewebTask", + "197": "ProjectForThewebRoadmap", + "198": "ProjectForThewebRoadmapItem", + "199": "ProjectForThewebProjectSettings", + "200": "ProjectForThewebRoadmapSettings", + "216": "Viva Goals", + "217": "MicrosoftGraphDataConnectConsent", + "218": "AttackSimAdmin", + "230": "TeamsUpdates", + "231": "PlannerRosterSensitivityLabel", + "237": "DefenderExpertsforXDRAdmin", + "251": "VfamCreatePolicy", + "252": "VfamUpdatePolicy", + "253": "VfamDeletePolicy", + "261": "CopilotInteraction", + "275": "OWAAuth", + "280": "VivaPulseResponse", + "281": "VivaPulseOrganizer", + "282": "VivaPulseAdmin", + "283": "VivaPulseReport", + "287": "ProjectForThewebAssignedToMeSettings", + "288": "CloudPolicyService", + "298": "BackupPolicy", + "299": "RestoreTask", + "300": "RestoreItem", + "301": "BackupItem", + "332": "ComplianceSettingsChange", + "337": "CloudUpdateProfileConfig", + "338": "CloudUpdateTenantConfig", + "339": "CloudUpdateDeviceConfig" + }, + "AzureActiveDirectoryEventType": { + "0": "AccountLogon", + "1": "AzureApplicationAuditEvent" + } +} diff --git a/src/data/classificationDetermination.json b/src/data/classificationDetermination.json deleted file mode 100644 index 7d14e4701adc..000000000000 --- a/src/data/classificationDetermination.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - { "Classification": "True positive", "Determination": ["Multi staged attack", "Malware", "Malicious user activity", "Unwanted software", "Phishing", "Compromised account", "Other"] }, - { "Classification": "Informational, expected activity", "Determination": ["Security testing", "Confirmed activity", "Line of business application", "Other"] }, - { "Classification": "False positive", "Determination": ["Unknown"] } -] diff --git a/src/data/intuneCollection.json b/src/data/intuneCollection.json new file mode 100644 index 000000000000..791733eb8807 --- /dev/null +++ b/src/data/intuneCollection.json @@ -0,0 +1,232365 @@ +[ + { + "id": ".globalpreferences_.globalpreferences", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": ".globalpreferences_com.apple.autologout.autologoutdelay", + "displayName": "Auto Log Out Delay", + "options": null + }, + { + "id": ".globalpreferences_multiplesessionenabled", + "displayName": "Multiple Session Enabled", + "options": [ + { + "id": ".globalpreferences_multiplesessionenabled_false", + "displayName": "False", + "description": null + }, + { + "id": ".globalpreferences_multiplesessionenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetversionprefixmicrosoftedge", + "displayName": "Target version override", + "options": [ + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetversionprefixmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetversionprefixmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetversionprefixmicrosoftedge_part_targetversionprefix", + "displayName": "Target version (Device)", + "options": null + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_targetversionprefixmicrosoftedgebeta", + "displayName": "Target version override", + "options": [ + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_targetversionprefixmicrosoftedgebeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_targetversionprefixmicrosoftedgebeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_targetversionprefixmicrosoftedgebeta_part_targetversionprefix", + "displayName": "Target version (Device)", + "options": null + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_targetversionprefixmicrosoftedgecanary", + "displayName": "Target version override", + "options": [ + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_targetversionprefixmicrosoftedgecanary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_targetversionprefixmicrosoftedgecanary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_targetversionprefixmicrosoftedgecanary_part_targetversionprefix", + "displayName": "Target version (Device)", + "options": null + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_targetversionprefixmicrosoftedgedev", + "displayName": "Target version override", + "options": [ + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_targetversionprefixmicrosoftedgedev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_targetversionprefixmicrosoftedgedev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_targetversionprefixmicrosoftedgedev_part_targetversionprefix", + "displayName": "Target version (Device)", + "options": null + }, + { + "id": "3~policy~microsoft_edge_targetblankimpliesnoopener", + "displayName": "Do not set window.opener for links targeting _blank (User)", + "options": [ + { + "id": "3~policy~microsoft_edge_targetblankimpliesnoopener_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "3~policy~microsoft_edge_targetblankimpliesnoopener_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "3~policy~microsoft_edge~httpauthentication_basicauthoverhttpenabled", + "displayName": "Allow Basic authentication for HTTP (User)", + "options": [ + { + "id": "3~policy~microsoft_edge~httpauthentication_basicauthoverhttpenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "3~policy~microsoft_edge~httpauthentication_basicauthoverhttpenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "ade_activatecellulardata", + "displayName": "Carrier activation server URL", + "options": null + }, + { + "id": "ade_activatecellulardatachoices", + "displayName": "Activate cellular data", + "options": [ + { + "id": "ade_activatecellulardatachoices_0", + "displayName": "No", + "description": null + }, + { + "id": "ade_activatecellulardatachoices_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "ade_appledevicenametemplate", + "displayName": "Device name template", + "options": null + }, + { + "id": "ade_authenticationmethod", + "displayName": "Intune authentication method", + "options": [ + { + "id": "ade_authenticationmethod_2", + "displayName": "Setup Assistant with modern authentication", + "description": null + }, + { + "id": "ade_authenticationmethod_0", + "displayName": "Company Portal", + "description": null + } + ] + }, + { + "id": "ade_devicenametemplatechoices", + "displayName": "Apple device name template", + "options": [ + { + "id": "ade_devicenametemplatechoices_0", + "displayName": "No", + "description": null + }, + { + "id": "ade_devicenametemplatechoices_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "ade_lockedenrollment", + "displayName": "Locked enrollment", + "options": [ + { + "id": "ade_lockedenrollment_0", + "displayName": "No", + "description": null + }, + { + "id": "ade_lockedenrollment_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "ade_maximumcachedusers", + "displayName": "Maximum cached users", + "options": null + }, + { + "id": "ade_maximumsecondsafterscreenlockbeofrepasswordisrequired", + "displayName": "Maximum seconds after screen lock before password is required", + "options": null + }, + { + "id": "ade_maximumsecondsinactivityuntiltemporarysessionlogsout", + "displayName": "Maximum seconds of inactivity until temporary session logs out", + "options": null + }, + { + "id": "ade_maximumsecondsinactivityuntiluserlogsout", + "displayName": "Maximum seconds of inactivity until user session logs out", + "options": null + }, + { + "id": "ade_modernauth_awaitfinalconfiguration", + "displayName": "Await final configuration", + "options": [ + { + "id": "ade_modernauth_awaitfinalconfiguration_0", + "displayName": "No", + "description": null + }, + { + "id": "ade_modernauth_awaitfinalconfiguration_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "ade_requiresharedipadtemporarysessiononly", + "displayName": "Require Shared iPad temporary session only", + "options": [ + { + "id": "ade_requiresharedipadtemporarysessiononly_0", + "displayName": "Not configured", + "description": null + }, + { + "id": "ade_requiresharedipadtemporarysessiononly_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_androidmigration", + "displayName": "Android migration", + "options": [ + { + "id": "ade_setupassistant_androidmigration_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_androidmigration_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_appearance", + "displayName": "Appearance", + "options": [ + { + "id": "ade_setupassistant_appearance_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_appearance_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_appleid", + "displayName": "Apple ID", + "options": [ + { + "id": "ade_setupassistant_appleid_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_appleid_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_applepay", + "displayName": "Apple Pay", + "options": [ + { + "id": "ade_setupassistant_applepay_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_applepay_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_department", + "displayName": "Department", + "options": null + }, + { + "id": "ade_setupassistant_departmentphone", + "displayName": "Department phone", + "options": null + }, + { + "id": "ade_setupassistant_devicemigration", + "displayName": "Device to device migration", + "options": [ + { + "id": "ade_setupassistant_devicemigration_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_devicemigration_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_diagnosticsdata", + "displayName": "Diagnostics Data", + "options": [ + { + "id": "ade_setupassistant_diagnosticsdata_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_diagnosticsdata_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_displaytone", + "displayName": "Display Tone", + "options": [ + { + "id": "ade_setupassistant_displaytone_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_displaytone_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_getstarted", + "displayName": "Get Started", + "options": [ + { + "id": "ade_setupassistant_getstarted_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_getstarted_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_homebutton", + "displayName": "Home button", + "options": [ + { + "id": "ade_setupassistant_homebutton_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_homebutton_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_imessagefacetime", + "displayName": "iMessage and FaceTime", + "options": [ + { + "id": "ade_setupassistant_imessagefacetime_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_imessagefacetime_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_locationservices", + "displayName": "Location services", + "options": [ + { + "id": "ade_setupassistant_locationservices_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_locationservices_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_onboarding", + "displayName": "Onboarding", + "options": [ + { + "id": "ade_setupassistant_onboarding_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_onboarding_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_passcode", + "displayName": "Passcode", + "options": [ + { + "id": "ade_setupassistant_passcode_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_passcode_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_privacy", + "displayName": "Privacy", + "options": [ + { + "id": "ade_setupassistant_privacy_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_privacy_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_restore", + "displayName": "Restore", + "options": [ + { + "id": "ade_setupassistant_restore_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_restore_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_restorecompleted", + "displayName": "Restore completed", + "options": [ + { + "id": "ade_setupassistant_restorecompleted_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_restorecompleted_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_screentime", + "displayName": "Screen Time", + "options": [ + { + "id": "ade_setupassistant_screentime_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_screentime_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_simsetup", + "displayName": "SIM setup", + "options": [ + { + "id": "ade_setupassistant_simsetup_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_simsetup_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_siri", + "displayName": "Siri", + "options": [ + { + "id": "ade_setupassistant_siri_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_siri_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_softwareupdate", + "displayName": "Software Update", + "options": [ + { + "id": "ade_setupassistant_softwareupdate_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_softwareupdate_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_softwareupdatecompleted", + "displayName": "Software Update completed", + "options": [ + { + "id": "ade_setupassistant_softwareupdatecompleted_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_softwareupdatecompleted_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_termsandconditions", + "displayName": "Terms and conditions", + "options": [ + { + "id": "ade_setupassistant_termsandconditions_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_termsandconditions_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_termsofaddress", + "displayName": "Terms of Address", + "options": [ + { + "id": "ade_setupassistant_termsofaddress_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_termsofaddress_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_touchfaceid", + "displayName": "Touch ID and Face ID", + "options": [ + { + "id": "ade_setupassistant_touchfaceid_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_touchfaceid_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_watchmigration", + "displayName": "Watch migration", + "options": [ + { + "id": "ade_setupassistant_watchmigration_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_watchmigration_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_setupassistant_zoom", + "displayName": "Zoom", + "options": [ + { + "id": "ade_setupassistant_zoom_0", + "displayName": "Hide", + "description": null + }, + { + "id": "ade_setupassistant_zoom_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "ade_useraffinity", + "displayName": "User affinity", + "options": [ + { + "id": "ade_useraffinity_1", + "displayName": "Enroll with user affinity", + "description": null + }, + { + "id": "ade_useraffinity_0", + "displayName": "Enroll without user affinity", + "description": null + }, + { + "id": "ade_useraffinity_2", + "displayName": "Enroll with Microsoft Entra ID shared mode", + "description": null + }, + { + "id": "ade_useraffinity_3", + "displayName": "Enroll with Shared iPad", + "description": null + } + ] + }, + { + "id": "ade_useraffinity_awaitfinalconfiguration", + "displayName": "Await final configuration", + "options": [ + { + "id": "ade_useraffinity_awaitfinalconfiguration_0", + "displayName": "No", + "description": null + }, + { + "id": "ade_useraffinity_awaitfinalconfiguration_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "com.apple.airplay_allowlist", + "displayName": "Allow List", + "options": null + }, + { + "id": "com.apple.airplay_allowlist_item_deviceid", + "displayName": "Device ID", + "options": null + }, + { + "id": "com.apple.airplay_com.apple.airplay", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.airplay_passwords", + "displayName": "Password", + "options": null + }, + { + "id": "com.apple.airplay_passwords_item_deviceid", + "displayName": "Device ID", + "options": null + }, + { + "id": "com.apple.airplay_passwords_item_devicename", + "displayName": "Device Name", + "options": null + }, + { + "id": "com.apple.airplay_passwords_item_password", + "displayName": "Password", + "options": null + }, + { + "id": "com.apple.airprint_airprint", + "displayName": "Printers", + "options": null + }, + { + "id": "com.apple.airprint_airprint_item_forcetls", + "displayName": "Force TLS", + "options": [ + { + "id": "com.apple.airprint_airprint_item_forcetls_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.airprint_airprint_item_forcetls_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.airprint_airprint_item_ipaddress", + "displayName": "IP Address", + "options": null + }, + { + "id": "com.apple.airprint_airprint_item_port", + "displayName": "Port", + "options": null + }, + { + "id": "com.apple.airprint_airprint_item_resourcepath", + "displayName": "Resource Path", + "options": null + }, + { + "id": "com.apple.airprint_com.apple.airprint", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { "id": "com.apple.app.lock_app", "displayName": "App", "options": null }, + { + "id": "com.apple.app.lock_app_identifier", + "displayName": "App Identifier", + "options": null + }, + { + "id": "com.apple.app.lock_app_options", + "displayName": "Options", + "options": null + }, + { + "id": "com.apple.app.lock_app_options_disableautolock", + "displayName": "Disable Auto Lock", + "options": [ + { + "id": "com.apple.app.lock_app_options_disableautolock_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_disableautolock_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_disabledevicerotation", + "displayName": "Disable Device Rotation", + "options": [ + { + "id": "com.apple.app.lock_app_options_disabledevicerotation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_disabledevicerotation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_disableringerswitch", + "displayName": "Disable Ringer Switch", + "options": [ + { + "id": "com.apple.app.lock_app_options_disableringerswitch_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_disableringerswitch_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_disablesleepwakebutton", + "displayName": "Disable Sleep Wake Button", + "options": [ + { + "id": "com.apple.app.lock_app_options_disablesleepwakebutton_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_disablesleepwakebutton_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_disabletouch", + "displayName": "Disable Touch", + "options": [ + { + "id": "com.apple.app.lock_app_options_disabletouch_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_disabletouch_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_disablevolumebuttons", + "displayName": "Disable Volume Buttons", + "options": [ + { + "id": "com.apple.app.lock_app_options_disablevolumebuttons_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_disablevolumebuttons_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_enableassistivetouch", + "displayName": "Enable Assistive Touch", + "options": [ + { + "id": "com.apple.app.lock_app_options_enableassistivetouch_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_enableassistivetouch_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_enableinvertcolors", + "displayName": "Enable Invert Colors", + "options": [ + { + "id": "com.apple.app.lock_app_options_enableinvertcolors_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_enableinvertcolors_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_enablemonoaudio", + "displayName": "Enable Mono Audio", + "options": [ + { + "id": "com.apple.app.lock_app_options_enablemonoaudio_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_enablemonoaudio_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_enablespeakselection", + "displayName": "Enable Speak Selection", + "options": [ + { + "id": "com.apple.app.lock_app_options_enablespeakselection_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_enablespeakselection_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_enablevoicecontrol", + "displayName": "Enable Voice Control", + "options": [ + { + "id": "com.apple.app.lock_app_options_enablevoicecontrol_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_enablevoicecontrol_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_enablevoiceover", + "displayName": "Enable Voice Over", + "options": [ + { + "id": "com.apple.app.lock_app_options_enablevoiceover_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_enablevoiceover_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_options_enablezoom", + "displayName": "Enable Zoom", + "options": [ + { + "id": "com.apple.app.lock_app_options_enablezoom_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_options_enablezoom_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_userenabledoptions", + "displayName": "User Enabled Options", + "options": null + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_assistivetouch", + "displayName": "Assistive Touch", + "options": [ + { + "id": "com.apple.app.lock_app_userenabledoptions_assistivetouch_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_assistivetouch_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_invertcolors", + "displayName": "Invert Colors", + "options": [ + { + "id": "com.apple.app.lock_app_userenabledoptions_invertcolors_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_invertcolors_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_voicecontrol", + "displayName": "Voice Control", + "options": [ + { + "id": "com.apple.app.lock_app_userenabledoptions_voicecontrol_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_voicecontrol_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_voiceover", + "displayName": "Voice Over", + "options": [ + { + "id": "com.apple.app.lock_app_userenabledoptions_voiceover_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_voiceover_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_zoom", + "displayName": "Zoom", + "options": [ + { + "id": "com.apple.app.lock_app_userenabledoptions_zoom_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.app.lock_app_userenabledoptions_zoom_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.app.lock_com.apple.app.lock", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.applicationaccess.new_com.apple.applicationaccess.new", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.applicationaccess.new_familycontrolsenabled", + "displayName": "Family Controls Enabled", + "options": [ + { + "id": "com.apple.applicationaccess.new_familycontrolsenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess.new_familycontrolsenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowaccountmodification", + "displayName": "Allow Account Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowaccountmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowaccountmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowactivitycontinuation", + "displayName": "Allow Activity Continuation", + "options": [ + { + "id": "com.apple.applicationaccess_allowactivitycontinuation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowactivitycontinuation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowaddinggamecenterfriends", + "displayName": "Allow Adding Game Center Friends", + "options": [ + { + "id": "com.apple.applicationaccess_allowaddinggamecenterfriends_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowaddinggamecenterfriends_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowairdrop", + "displayName": "Allow AirDrop", + "options": [ + { + "id": "com.apple.applicationaccess_allowairdrop_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowairdrop_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowairplayincomingrequests", + "displayName": "Allow Air Play Incoming Requests", + "options": [ + { + "id": "com.apple.applicationaccess_allowairplayincomingrequests_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowairplayincomingrequests_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowairprint", + "displayName": "Allow AirPrint", + "options": [ + { + "id": "com.apple.applicationaccess_allowairprint_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowairprint_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowairprintcredentialsstorage", + "displayName": "Allow AirPrint Credentials Storage", + "options": [ + { + "id": "com.apple.applicationaccess_allowairprintcredentialsstorage_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowairprintcredentialsstorage_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowairprintibeacondiscovery", + "displayName": "Allow AirPrint iBeacon Discovery", + "options": [ + { + "id": "com.apple.applicationaccess_allowairprintibeacondiscovery_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowairprintibeacondiscovery_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowappcellulardatamodification", + "displayName": "Allow App Cellular Data Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowappcellulardatamodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowappcellulardatamodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowappclips", + "displayName": "Allow App Clips", + "options": [ + { + "id": "com.apple.applicationaccess_allowappclips_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowappclips_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowappinstallation", + "displayName": "Allow App Installation", + "options": [ + { + "id": "com.apple.applicationaccess_allowappinstallation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowappinstallation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowapplepersonalizedadvertising", + "displayName": "Allow Apple Personalized Advertising", + "options": [ + { + "id": "com.apple.applicationaccess_allowapplepersonalizedadvertising_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowapplepersonalizedadvertising_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowappremoval", + "displayName": "Allow App Removal", + "options": [ + { + "id": "com.apple.applicationaccess_allowappremoval_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowappremoval_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowappstobehidden", + "displayName": "Allow Apps To Be Hidden", + "options": [ + { + "id": "com.apple.applicationaccess_allowappstobehidden_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowappstobehidden_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowappstobelocked", + "displayName": "Allow Apps To Be Locked", + "options": [ + { + "id": "com.apple.applicationaccess_allowappstobelocked_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowappstobelocked_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowardremotemanagementmodification", + "displayName": "Allow ARD Remote Management Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowardremotemanagementmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowardremotemanagementmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowassistant", + "displayName": "Allow Assistant", + "options": [ + { + "id": "com.apple.applicationaccess_allowassistant_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowassistant_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowassistantusergeneratedcontent", + "displayName": "Allow Assistant User Generated Content", + "options": [ + { + "id": "com.apple.applicationaccess_allowassistantusergeneratedcontent_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowassistantusergeneratedcontent_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowassistantwhilelocked", + "displayName": "Allow Assistant While Locked", + "options": [ + { + "id": "com.apple.applicationaccess_allowassistantwhilelocked_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowassistantwhilelocked_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowautocorrection", + "displayName": "Allow Auto Correction", + "options": [ + { + "id": "com.apple.applicationaccess_allowautocorrection_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowautocorrection_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowautodim", + "displayName": "Allow Auto Dim", + "options": [ + { + "id": "com.apple.applicationaccess_allowautodim_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowautodim_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowautomaticappdownloads", + "displayName": "Allow Automatic App Downloads", + "options": [ + { + "id": "com.apple.applicationaccess_allowautomaticappdownloads_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowautomaticappdownloads_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowautounlock", + "displayName": "Allow Auto Unlock", + "options": [ + { + "id": "com.apple.applicationaccess_allowautounlock_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowautounlock_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowbluetoothmodification", + "displayName": "Allow Bluetooth Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowbluetoothmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowbluetoothmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowbluetoothsharingmodification", + "displayName": "Allow Bluetooth Sharing Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowbluetoothsharingmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowbluetoothsharingmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowbookstore", + "displayName": "Allow Bookstore", + "options": [ + { + "id": "com.apple.applicationaccess_allowbookstore_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowbookstore_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowbookstoreerotica", + "displayName": "Allow Bookstore Erotica", + "options": [ + { + "id": "com.apple.applicationaccess_allowbookstoreerotica_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowbookstoreerotica_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcallrecording", + "displayName": "Allow Call Recording", + "options": [ + { + "id": "com.apple.applicationaccess_allowcallrecording_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcallrecording_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcamera", + "displayName": "Allow Camera", + "options": [ + { + "id": "com.apple.applicationaccess_allowcamera_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcamera_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcellularplanmodification", + "displayName": "Allow Cellular Plan Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowcellularplanmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcellularplanmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowchat", + "displayName": "Allow Chat", + "options": [ + { + "id": "com.apple.applicationaccess_allowchat_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowchat_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudaddressbook", + "displayName": "Allow Cloud Address Book", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudaddressbook_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudaddressbook_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudbackup", + "displayName": "Allow Cloud Backup", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudbackup_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudbackup_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudbookmarks", + "displayName": "Allow Cloud Bookmarks", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudbookmarks_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudbookmarks_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudcalendar", + "displayName": "Allow Cloud Calendar", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudcalendar_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudcalendar_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowclouddesktopanddocuments", + "displayName": "Allow Cloud Desktop And Documents", + "options": [ + { + "id": "com.apple.applicationaccess_allowclouddesktopanddocuments_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowclouddesktopanddocuments_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowclouddocumentsync", + "displayName": "Allow Cloud Document Sync", + "options": [ + { + "id": "com.apple.applicationaccess_allowclouddocumentsync_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowclouddocumentsync_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudfreeform", + "displayName": "Allow Cloud Freeform", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudfreeform_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudfreeform_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudkeychainsync", + "displayName": "Allow Cloud Keychain Sync", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudkeychainsync_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudkeychainsync_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudmail", + "displayName": "Allow Cloud Mail", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudmail_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudmail_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudnotes", + "displayName": "Allow Cloud Notes", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudnotes_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudnotes_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudphotolibrary", + "displayName": "Allow Cloud Photo Library", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudphotolibrary_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudphotolibrary_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudprivaterelay", + "displayName": "Allow Cloud Private Relay", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudprivaterelay_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudprivaterelay_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcloudreminders", + "displayName": "Allow Cloud Reminders", + "options": [ + { + "id": "com.apple.applicationaccess_allowcloudreminders_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcloudreminders_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcontentcaching", + "displayName": "Allow Content Caching", + "options": [ + { + "id": "com.apple.applicationaccess_allowcontentcaching_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcontentcaching_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowcontinuouspathkeyboard", + "displayName": "Allow Continuous Path Keyboard", + "options": [ + { + "id": "com.apple.applicationaccess_allowcontinuouspathkeyboard_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowcontinuouspathkeyboard_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowdefaultbrowsermodification", + "displayName": "Allow Default Browser Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowdefaultbrowsermodification_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowdefaultbrowsermodification_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowdefinitionlookup", + "displayName": "Allow Definition Lookup", + "options": [ + { + "id": "com.apple.applicationaccess_allowdefinitionlookup_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowdefinitionlookup_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowdevicenamemodification", + "displayName": "Allow Device Name Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowdevicenamemodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowdevicenamemodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowdiagnosticsubmission", + "displayName": "Allow Diagnostic Submission", + "options": [ + { + "id": "com.apple.applicationaccess_allowdiagnosticsubmission_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowdiagnosticsubmission_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowdiagnosticsubmissionmodification", + "displayName": "Allow Diagnostic Submission Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowdiagnosticsubmissionmodification_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowdiagnosticsubmissionmodification_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowdictation", + "displayName": "Allow Dictation", + "options": [ + { + "id": "com.apple.applicationaccess_allowdictation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowdictation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowenablingrestrictions", + "displayName": "Allow Enabling Restrictions", + "options": [ + { + "id": "com.apple.applicationaccess_allowenablingrestrictions_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowenablingrestrictions_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowenterpriseapptrust", + "displayName": "Allow Enterprise App Trust", + "options": [ + { + "id": "com.apple.applicationaccess_allowenterpriseapptrust_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowenterpriseapptrust_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowenterprisebookbackup", + "displayName": "Allow Enterprise Book Backup", + "options": [ + { + "id": "com.apple.applicationaccess_allowenterprisebookbackup_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowenterprisebookbackup_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowenterprisebookmetadatasync", + "displayName": "Allow Enterprise Book Metadata Sync", + "options": [ + { + "id": "com.apple.applicationaccess_allowenterprisebookmetadatasync_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowenterprisebookmetadatasync_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowerasecontentandsettings", + "displayName": "Allow Erase Content And Settings", + "options": [ + { + "id": "com.apple.applicationaccess_allowerasecontentandsettings_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowerasecontentandsettings_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowesimmodification", + "displayName": "Allow ESIM Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowesimmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowesimmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowesimoutgoingtransfers", + "displayName": "allow ESIM Outgoing Transfers", + "options": [ + { + "id": "com.apple.applicationaccess_allowesimoutgoingtransfers_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowesimoutgoingtransfers_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowexplicitcontent", + "displayName": "Allow Explicit Content", + "options": [ + { + "id": "com.apple.applicationaccess_allowexplicitcontent_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowexplicitcontent_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowexternalintelligenceintegrations", + "displayName": "Allow External Intelligence Integrations", + "options": [ + { + "id": "com.apple.applicationaccess_allowexternalintelligenceintegrations_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowexternalintelligenceintegrations_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowexternalintelligenceintegrationssignin", + "displayName": "Allow External Intelligence Integrations Sign In", + "options": [ + { + "id": "com.apple.applicationaccess_allowexternalintelligenceintegrationssignin_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowexternalintelligenceintegrationssignin_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowfilesharingmodification", + "displayName": "Allow File Sharing Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowfilesharingmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowfilesharingmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowfilesnetworkdriveaccess", + "displayName": "Allow Files Network Drive Access", + "options": [ + { + "id": "com.apple.applicationaccess_allowfilesnetworkdriveaccess_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowfilesnetworkdriveaccess_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowfilesusbdriveaccess", + "displayName": "Allow Files USB Drive Access", + "options": [ + { + "id": "com.apple.applicationaccess_allowfilesusbdriveaccess_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowfilesusbdriveaccess_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowfindmydevice", + "displayName": "Allow Find My Device", + "options": [ + { + "id": "com.apple.applicationaccess_allowfindmydevice_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowfindmydevice_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowfindmyfriends", + "displayName": "Allow Find My Friends", + "options": [ + { + "id": "com.apple.applicationaccess_allowfindmyfriends_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowfindmyfriends_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowfindmyfriendsmodification", + "displayName": "Allow Find My Friends Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowfindmyfriendsmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowfindmyfriendsmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowfingerprintforunlock", + "displayName": "Allow Fingerprint For Unlock", + "options": [ + { + "id": "com.apple.applicationaccess_allowfingerprintforunlock_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowfingerprintforunlock_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowfingerprintmodification", + "displayName": "Allow Fingerprint Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowfingerprintmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowfingerprintmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowgamecenter", + "displayName": "Allow Game Center", + "options": [ + { + "id": "com.apple.applicationaccess_allowgamecenter_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowgamecenter_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowgenmoji", + "displayName": "allow Genmoji", + "options": [ + { + "id": "com.apple.applicationaccess_allowgenmoji_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowgenmoji_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowglobalbackgroundfetchwhenroaming", + "displayName": "Allow Global Background Fetch When Roaming", + "options": [ + { + "id": "com.apple.applicationaccess_allowglobalbackgroundfetchwhenroaming_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowglobalbackgroundfetchwhenroaming_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowhostpairing", + "displayName": "Allow Host Pairing", + "options": [ + { + "id": "com.apple.applicationaccess_allowhostpairing_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowhostpairing_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowimageplayground", + "displayName": "Allow Image Playground", + "options": [ + { + "id": "com.apple.applicationaccess_allowimageplayground_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowimageplayground_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowimagewand", + "displayName": "Allow Image Wand", + "options": [ + { + "id": "com.apple.applicationaccess_allowimagewand_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowimagewand_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowinapppurchases", + "displayName": "Allow In App Purchases", + "options": [ + { + "id": "com.apple.applicationaccess_allowinapppurchases_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowinapppurchases_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowinternetsharingmodification", + "displayName": "Allow Internet Sharing Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowinternetsharingmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowinternetsharingmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowiphonemirroring", + "displayName": "Allow iPhone Mirroring", + "options": [ + { + "id": "com.apple.applicationaccess_allowiphonemirroring_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowiphonemirroring_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowiphonewidgetsonmac", + "displayName": "Allow iPhone Widgets On Mac", + "options": [ + { + "id": "com.apple.applicationaccess_allowiphonewidgetsonmac_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowiphonewidgetsonmac_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowitunes", + "displayName": "Allow iTunes", + "options": [ + { + "id": "com.apple.applicationaccess_allowitunes_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowitunes_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowitunesfilesharing", + "displayName": "Allow iTunes File Sharing", + "options": [ + { + "id": "com.apple.applicationaccess_allowitunesfilesharing_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowitunesfilesharing_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowkeyboardshortcuts", + "displayName": "Allow Keyboard Shortcuts", + "options": [ + { + "id": "com.apple.applicationaccess_allowkeyboardshortcuts_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowkeyboardshortcuts_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowlistedappbundleids", + "displayName": "Allow Listed App Bundle IDs", + "options": null + }, + { + "id": "com.apple.applicationaccess_allowlivevoicemail", + "displayName": "Allow Live Voicemail", + "options": [ + { + "id": "com.apple.applicationaccess_allowlivevoicemail_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowlivevoicemail_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowlocalusercreation", + "displayName": "Allow Local User Creation", + "options": [ + { + "id": "com.apple.applicationaccess_allowlocalusercreation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowlocalusercreation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowlockscreencontrolcenter", + "displayName": "Allow Lock Screen Control Center", + "options": [ + { + "id": "com.apple.applicationaccess_allowlockscreencontrolcenter_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowlockscreencontrolcenter_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowlockscreennotificationsview", + "displayName": "Allow Lock Screen Notifications View", + "options": [ + { + "id": "com.apple.applicationaccess_allowlockscreennotificationsview_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowlockscreennotificationsview_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowlockscreentodayview", + "displayName": "Allow Lock Screen Today View", + "options": [ + { + "id": "com.apple.applicationaccess_allowlockscreentodayview_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowlockscreentodayview_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowmailprivacyprotection", + "displayName": "Allow Mail Privacy Protection", + "options": [ + { + "id": "com.apple.applicationaccess_allowmailprivacyprotection_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmailprivacyprotection_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowmailsummary", + "displayName": "Allow Mail Summary", + "options": [ + { + "id": "com.apple.applicationaccess_allowmailsummary_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmailsummary_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowmanagedappscloudsync", + "displayName": "Allow Managed Apps Cloud Sync", + "options": [ + { + "id": "com.apple.applicationaccess_allowmanagedappscloudsync_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmanagedappscloudsync_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowmanagedtowriteunmanagedcontacts", + "displayName": "Allow Managed To Write Unmanaged Contacts", + "options": [ + { + "id": "com.apple.applicationaccess_allowmanagedtowriteunmanagedcontacts_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmanagedtowriteunmanagedcontacts_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowmarketplaceappinstallation", + "displayName": "allow Marketplace App Installation", + "options": [ + { + "id": "com.apple.applicationaccess_allowmarketplaceappinstallation_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmarketplaceappinstallation_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowmediasharingmodification", + "displayName": "Allow Media Sharing Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowmediasharingmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmediasharingmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowmultiplayergaming", + "displayName": "Allow Multiplayer Gaming", + "options": [ + { + "id": "com.apple.applicationaccess_allowmultiplayergaming_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmultiplayergaming_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowmusicservice", + "displayName": "Allow Music Service", + "options": [ + { + "id": "com.apple.applicationaccess_allowmusicservice_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowmusicservice_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allownews", + "displayName": "Allow News", + "options": [ + { + "id": "com.apple.applicationaccess_allownews_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allownews_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allownfc", + "displayName": "Allow NFC", + "options": [ + { + "id": "com.apple.applicationaccess_allownfc_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allownfc_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allownotificationsmodification", + "displayName": "Allow Notifications Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allownotificationsmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allownotificationsmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowopenfrommanagedtounmanaged", + "displayName": "Allow Open From Managed To Unmanaged", + "options": [ + { + "id": "com.apple.applicationaccess_allowopenfrommanagedtounmanaged_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowopenfrommanagedtounmanaged_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowopenfromunmanagedtomanaged", + "displayName": "Allow Open From Unmanaged To Managed", + "options": [ + { + "id": "com.apple.applicationaccess_allowopenfromunmanagedtomanaged_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowopenfromunmanagedtomanaged_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowotapkiupdates", + "displayName": "Allow OTAPKI Updates", + "options": [ + { + "id": "com.apple.applicationaccess_allowotapkiupdates_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowotapkiupdates_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpairedwatch", + "displayName": "Allow Paired Watch", + "options": [ + { + "id": "com.apple.applicationaccess_allowpairedwatch_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpairedwatch_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpassbookwhilelocked", + "displayName": "Allow Passbook While Locked", + "options": [ + { + "id": "com.apple.applicationaccess_allowpassbookwhilelocked_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpassbookwhilelocked_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpasscodemodification", + "displayName": "Allow Passcode Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowpasscodemodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpasscodemodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpasswordautofill", + "displayName": "Allow Password Auto Fill", + "options": [ + { + "id": "com.apple.applicationaccess_allowpasswordautofill_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpasswordautofill_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpasswordproximityrequests", + "displayName": "Allow Password Proximity Requests", + "options": [ + { + "id": "com.apple.applicationaccess_allowpasswordproximityrequests_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpasswordproximityrequests_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpasswordsharing", + "displayName": "Allow Password Sharing", + "options": [ + { + "id": "com.apple.applicationaccess_allowpasswordsharing_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpasswordsharing_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpersonalhotspotmodification", + "displayName": "Allow Personal Hotspot Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowpersonalhotspotmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpersonalhotspotmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpersonalizedhandwritingresults", + "displayName": "Allow Personalized Handwriting Results", + "options": [ + { + "id": "com.apple.applicationaccess_allowpersonalizedhandwritingresults_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpersonalizedhandwritingresults_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowphotostream", + "displayName": "Allow Photo Stream (Deprecated)", + "options": [ + { + "id": "com.apple.applicationaccess_allowphotostream_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowphotostream_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpodcasts", + "displayName": "Allow Podcasts", + "options": [ + { + "id": "com.apple.applicationaccess_allowpodcasts_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpodcasts_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowpredictivekeyboard", + "displayName": "Allow Predictive Keyboard", + "options": [ + { + "id": "com.apple.applicationaccess_allowpredictivekeyboard_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowpredictivekeyboard_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowprintersharingmodification", + "displayName": "Allow Printer Sharing Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowprintersharingmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowprintersharingmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowproximitysetuptonewdevice", + "displayName": "Allow Proximity Setup To New Device", + "options": [ + { + "id": "com.apple.applicationaccess_allowproximitysetuptonewdevice_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowproximitysetuptonewdevice_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowradioservice", + "displayName": "Allow Radio Service", + "options": [ + { + "id": "com.apple.applicationaccess_allowradioservice_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowradioservice_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowrapidsecurityresponseinstallation", + "displayName": "Allow Rapid Security Response Installation", + "options": [ + { + "id": "com.apple.applicationaccess_allowrapidsecurityresponseinstallation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowrapidsecurityresponseinstallation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowrapidsecurityresponseremoval", + "displayName": "Allow Rapid Security Response Removal", + "options": [ + { + "id": "com.apple.applicationaccess_allowrapidsecurityresponseremoval_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowrapidsecurityresponseremoval_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowrcsmessaging", + "displayName": "Allow RCS Messaging", + "options": [ + { + "id": "com.apple.applicationaccess_allowrcsmessaging_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowrcsmessaging_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowremoteappleeventsmodification", + "displayName": "Allow Remote Apple Events Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowremoteappleeventsmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowremoteappleeventsmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowremotescreenobservation", + "displayName": "Allow Remote Screen Observation", + "options": [ + { + "id": "com.apple.applicationaccess_allowremotescreenobservation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowremotescreenobservation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowsafari", + "displayName": "Allow Safari", + "options": [ + { + "id": "com.apple.applicationaccess_allowsafari_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowsafari_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowscreenshot", + "displayName": "Allow Screen Shot", + "options": [ + { + "id": "com.apple.applicationaccess_allowscreenshot_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowscreenshot_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowshareddevicetemporarysession", + "displayName": "Allow Shared Device Temporary Session", + "options": [ + { + "id": "com.apple.applicationaccess_allowshareddevicetemporarysession_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowshareddevicetemporarysession_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowsharedstream", + "displayName": "Allow Shared Stream", + "options": [ + { + "id": "com.apple.applicationaccess_allowsharedstream_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowsharedstream_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowspellcheck", + "displayName": "Allow Spell Check", + "options": [ + { + "id": "com.apple.applicationaccess_allowspellcheck_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowspellcheck_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowspotlightinternetresults", + "displayName": "Allow Spotlight Internet Results", + "options": [ + { + "id": "com.apple.applicationaccess_allowspotlightinternetresults_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowspotlightinternetresults_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowstartupdiskmodification", + "displayName": "Allow Startup Disk Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowstartupdiskmodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowstartupdiskmodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowsystemappremoval", + "displayName": "Allow System App Removal", + "options": [ + { + "id": "com.apple.applicationaccess_allowsystemappremoval_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowsystemappremoval_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowtimemachinebackup", + "displayName": "Allow Time Machine Backup", + "options": [ + { + "id": "com.apple.applicationaccess_allowtimemachinebackup_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowtimemachinebackup_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowuiappinstallation", + "displayName": "Allow UI App Installation", + "options": [ + { + "id": "com.apple.applicationaccess_allowuiappinstallation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowuiappinstallation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowuiconfigurationprofileinstallation", + "displayName": "Allow UI Configuration Profile Installation", + "options": [ + { + "id": "com.apple.applicationaccess_allowuiconfigurationprofileinstallation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowuiconfigurationprofileinstallation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowuniversalcontrol", + "displayName": "Allow Universal Control", + "options": [ + { + "id": "com.apple.applicationaccess_allowuniversalcontrol_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowuniversalcontrol_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowunmanagedtoreadmanagedcontacts", + "displayName": "Allow Unmanaged To Read Managed Contacts", + "options": [ + { + "id": "com.apple.applicationaccess_allowunmanagedtoreadmanagedcontacts_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowunmanagedtoreadmanagedcontacts_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowunpairedexternalboottorecovery", + "displayName": "Allow Unpaired External Boot To Recovery", + "options": [ + { + "id": "com.apple.applicationaccess_allowunpairedexternalboottorecovery_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowunpairedexternalboottorecovery_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowuntrustedtlsprompt", + "displayName": "Allow Untrusted TLS Prompt", + "options": [ + { + "id": "com.apple.applicationaccess_allowuntrustedtlsprompt_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowuntrustedtlsprompt_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowusbrestrictedmode", + "displayName": "Allow USB Restricted Mode", + "options": [ + { + "id": "com.apple.applicationaccess_allowusbrestrictedmode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowusbrestrictedmode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowvideoconferencing", + "displayName": "Allow Video Conferencing", + "options": [ + { + "id": "com.apple.applicationaccess_allowvideoconferencing_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowvideoconferencing_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowvideoconferencingremotecontrol", + "displayName": "Allow Video Conferencing Remote Control (Deprecated)", + "options": [ + { + "id": "com.apple.applicationaccess_allowvideoconferencingremotecontrol_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowvideoconferencingremotecontrol_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowvoicedialing", + "displayName": "Allow Voice Dialing (Deprecated)", + "options": [ + { + "id": "com.apple.applicationaccess_allowvoicedialing_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowvoicedialing_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowvpncreation", + "displayName": "Allow VPN Creation", + "options": [ + { + "id": "com.apple.applicationaccess_allowvpncreation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowvpncreation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowwallpapermodification", + "displayName": "Allow Wallpaper Modification", + "options": [ + { + "id": "com.apple.applicationaccess_allowwallpapermodification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowwallpapermodification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowwebdistributionappinstallation", + "displayName": "allow Web Distribution App Installation", + "options": [ + { + "id": "com.apple.applicationaccess_allowwebdistributionappinstallation_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowwebdistributionappinstallation_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_allowwritingtools", + "displayName": "Allow Writing Tools", + "options": [ + { + "id": "com.apple.applicationaccess_allowwritingtools_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_allowwritingtools_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_autonomoussingleappmodepermittedappids", + "displayName": "Autonomous Single App Mode Permitted App IDs", + "options": null + }, + { + "id": "com.apple.applicationaccess_blockedappbundleids", + "displayName": "Blocked App Bundle IDs", + "options": null + }, + { + "id": "com.apple.applicationaccess_com.apple.applicationaccess", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.applicationaccess_enforcedfingerprinttimeout", + "displayName": "Enforced Fingerprint Timeout", + "options": null + }, + { + "id": "com.apple.applicationaccess_enforcedsoftwareupdatedelay", + "displayName": "Enforced Software Update Delay", + "options": null + }, + { + "id": "com.apple.applicationaccess_enforcedsoftwareupdatemajorosdeferredinstalldelay", + "displayName": "Enforced Software Update Major OS Deferred Install Delay", + "options": null + }, + { + "id": "com.apple.applicationaccess_enforcedsoftwareupdateminorosdeferredinstalldelay", + "displayName": "Enforced Software Update Minor OS Deferred Install Delay", + "options": null + }, + { + "id": "com.apple.applicationaccess_enforcedsoftwareupdatenonosdeferredinstalldelay", + "displayName": "Enforced Software Update Non OS Deferred Install Delay", + "options": null + }, + { + "id": "com.apple.applicationaccess_forceairdropunmanaged", + "displayName": "Force AirDrop Unmanaged", + "options": [ + { + "id": "com.apple.applicationaccess_forceairdropunmanaged_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceairdropunmanaged_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceairplayoutgoingrequestspairingpassword", + "displayName": "Force AirPlay Outgoing Requests Pairing Password", + "options": [ + { + "id": "com.apple.applicationaccess_forceairplayoutgoingrequestspairingpassword_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceairplayoutgoingrequestspairingpassword_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceairprinttrustedtlsrequirement", + "displayName": "Force AirPrint Trusted TLS Requirement", + "options": [ + { + "id": "com.apple.applicationaccess_forceairprinttrustedtlsrequirement_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceairprinttrustedtlsrequirement_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceassistantprofanityfilter", + "displayName": "Force Assistant Profanity Filter", + "options": [ + { + "id": "com.apple.applicationaccess_forceassistantprofanityfilter_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceassistantprofanityfilter_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceauthenticationbeforeautofill", + "displayName": "Force Authentication Before Auto Fill", + "options": [ + { + "id": "com.apple.applicationaccess_forceauthenticationbeforeautofill_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceauthenticationbeforeautofill_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceautomaticdateandtime", + "displayName": "Force Automatic Date And Time", + "options": [ + { + "id": "com.apple.applicationaccess_forceautomaticdateandtime_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceautomaticdateandtime_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcebypassscreencapturealert", + "displayName": "Force Bypass Screen Capture Alert", + "options": [ + { + "id": "com.apple.applicationaccess_forcebypassscreencapturealert_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcebypassscreencapturealert_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceclassroomautomaticallyjoinclasses", + "displayName": "Force Classroom Automatically Join Classes", + "options": [ + { + "id": "com.apple.applicationaccess_forceclassroomautomaticallyjoinclasses_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceclassroomautomaticallyjoinclasses_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceclassroomrequestpermissiontoleaveclasses", + "displayName": "Force Classroom Request Permission To Leave Classes", + "options": [ + { + "id": "com.apple.applicationaccess_forceclassroomrequestpermissiontoleaveclasses_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceclassroomrequestpermissiontoleaveclasses_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceclassroomunpromptedappanddevicelock", + "displayName": "Force Classroom Unprompted App And Device Lock", + "options": [ + { + "id": "com.apple.applicationaccess_forceclassroomunpromptedappanddevicelock_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceclassroomunpromptedappanddevicelock_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceclassroomunpromptedscreenobservation", + "displayName": "Force Classroom Unprompted Screen Observation", + "options": [ + { + "id": "com.apple.applicationaccess_forceclassroomunpromptedscreenobservation_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceclassroomunpromptedscreenobservation_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcedelayedappsoftwareupdates", + "displayName": "Force Delayed App Software Updates", + "options": [ + { + "id": "com.apple.applicationaccess_forcedelayedappsoftwareupdates_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcedelayedappsoftwareupdates_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcedelayedmajorsoftwareupdates", + "displayName": "Force Delayed Major Software Updates", + "options": [ + { + "id": "com.apple.applicationaccess_forcedelayedmajorsoftwareupdates_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcedelayedmajorsoftwareupdates_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcedelayedsoftwareupdates", + "displayName": "Force Delayed Software Updates", + "options": [ + { + "id": "com.apple.applicationaccess_forcedelayedsoftwareupdates_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcedelayedsoftwareupdates_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceencryptedbackup", + "displayName": "Force Encrypted Backup", + "options": [ + { + "id": "com.apple.applicationaccess_forceencryptedbackup_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceencryptedbackup_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceitunesstorepasswordentry", + "displayName": "Force iTunes Store Password Entry (Deprecated)", + "options": [ + { + "id": "com.apple.applicationaccess_forceitunesstorepasswordentry_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceitunesstorepasswordentry_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcelimitadtracking", + "displayName": "Force Limit Ad Tracking", + "options": [ + { + "id": "com.apple.applicationaccess_forcelimitadtracking_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcelimitadtracking_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceondeviceonlydictation", + "displayName": "Force On Device Only Dictation", + "options": [ + { + "id": "com.apple.applicationaccess_forceondeviceonlydictation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceondeviceonlydictation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forceondeviceonlytranslation", + "displayName": "Force On Device Only Translation", + "options": [ + { + "id": "com.apple.applicationaccess_forceondeviceonlytranslation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forceondeviceonlytranslation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcepreserveesimonerase", + "displayName": "Force Preserve ESIM On Erase", + "options": [ + { + "id": "com.apple.applicationaccess_forcepreserveesimonerase_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcepreserveesimonerase_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcewatchwristdetection", + "displayName": "Force Watch Wrist Detection", + "options": [ + { + "id": "com.apple.applicationaccess_forcewatchwristdetection_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcewatchwristdetection_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcewifipoweron", + "displayName": "Force WiFi Power On", + "options": [ + { + "id": "com.apple.applicationaccess_forcewifipoweron_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcewifipoweron_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_forcewifitoallowednetworksonly", + "displayName": "Force WiFi To Allowed Networks Only", + "options": [ + { + "id": "com.apple.applicationaccess_forcewifitoallowednetworksonly_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_forcewifitoallowednetworksonly_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsau", + "displayName": "Rating Apps - Australia", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsau_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsau_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsca", + "displayName": "Rating Apps - Canada", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsca_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsca_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsde", + "displayName": "Rating Apps - Germany", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsde_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsde_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsfr", + "displayName": "Rating Apps - France", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsfr_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsfr_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsgb", + "displayName": "Rating Apps - Great Britain", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsgb_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsgb_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsie", + "displayName": "Rating Apps - Ireland", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsie_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsie_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsjp", + "displayName": "Rating Apps - Japan", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsjp_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsjp_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsnz", + "displayName": "Rating Apps - New Zealand", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsnz_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsnz_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingappsus", + "displayName": "Rating Apps - United States", + "options": [ + { + "id": "com.apple.applicationaccess_ratingappsus_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsus_1", + "displayName": "4+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsus_2", + "displayName": "9+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsus_3", + "displayName": "12+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsus_4", + "displayName": "17+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingappsus_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesau", + "displayName": "Rating Movies - Australia", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesau_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesau_1", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesau_2", + "displayName": "PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesau_3", + "displayName": "M", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesau_4", + "displayName": "MA15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesau_5", + "displayName": "R18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesau_6", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesca", + "displayName": "Rating Movies - Canada", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesca_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesca_1", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesca_2", + "displayName": "PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesca_3", + "displayName": "14A", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesca_4", + "displayName": "18A", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesca_5", + "displayName": "R", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesca_6", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesde", + "displayName": "Rating Movies - Germany", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesde_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesde_1", + "displayName": "Ab 0 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesde_2", + "displayName": "Ab 6 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesde_3", + "displayName": "Ab 12 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesde_4", + "displayName": "Ab 16 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesde_5", + "displayName": "Ab 18 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesde_6", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesfr", + "displayName": "Rating Movies - France", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesfr_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesfr_2", + "displayName": "10", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesfr_3", + "displayName": "12", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesfr_4", + "displayName": "16", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesfr_5", + "displayName": "18", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesfr_6", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb", + "displayName": "Rating Movies - Great Britain", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesgb_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb_1", + "displayName": "U", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb_2", + "displayName": "UC", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb_3", + "displayName": "PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb_4", + "displayName": "12", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb_5", + "displayName": "12A", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb_6", + "displayName": "15", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb_7", + "displayName": "18", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesgb_8", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesie", + "displayName": "Rating Movies - Ireland", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesie_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesie_1", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesie_2", + "displayName": "PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesie_3", + "displayName": "12A", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesie_4", + "displayName": "15A", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesie_5", + "displayName": "16", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesie_6", + "displayName": "18", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesie_7", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesjp", + "displayName": "Rating Movies - Japan", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesjp_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesjp_1", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesjp_2", + "displayName": "PG-12", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesjp_3", + "displayName": "R15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesjp_4", + "displayName": "R18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesjp_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz", + "displayName": "Rating Movies - New Zealand", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesnz_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_1", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_2", + "displayName": "PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_3", + "displayName": "M", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_4", + "displayName": "R13", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_5", + "displayName": "R15", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_6", + "displayName": "R16", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_7", + "displayName": "R18", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_8", + "displayName": "R", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_9", + "displayName": "RP16", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesnz_10", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingmoviesus", + "displayName": "Rating Movies - United States", + "options": [ + { + "id": "com.apple.applicationaccess_ratingmoviesus_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesus_1", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesus_2", + "displayName": "PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesus_3", + "displayName": "PG-13", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesus_4", + "displayName": "R", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesus_5", + "displayName": "NC-17", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingmoviesus_6", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingregion", + "displayName": "Rating Region", + "options": [ + { + "id": "com.apple.applicationaccess_ratingregion_0", + "displayName": "United States", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingregion_1", + "displayName": "Australia", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingregion_2", + "displayName": "Canada", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingregion_3", + "displayName": "Germany", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingregion_4", + "displayName": "France", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingregion_5", + "displayName": "Ireland", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingregion_6", + "displayName": "Japan", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingregion_7", + "displayName": "New Zealand", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingregion_8", + "displayName": "Great Britain", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau", + "displayName": "Rating TV Shows - Australia", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsau_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_1", + "displayName": "P", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_2", + "displayName": "C", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_3", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_4", + "displayName": "PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_5", + "displayName": "M", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_6", + "displayName": "MA15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_7", + "displayName": "AV15+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_8", + "displayName": "All", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsau_9", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsca", + "displayName": "Rating TV Shows - Canada", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsca_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsca_1", + "displayName": "C", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsca_2", + "displayName": "C8", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsca_3", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsca_4", + "displayName": "PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsca_5", + "displayName": "14+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsca_6", + "displayName": "18+", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsca_7", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsde", + "displayName": "Rating TV Shows - Germany", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsde_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsde_1", + "displayName": "Ab 0 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsde_2", + "displayName": "Ab 6 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsde_3", + "displayName": "Ab 12 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsde_4", + "displayName": "Ab 16 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsde_5", + "displayName": "Ab 18 Jahren", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsde_7", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsfr", + "displayName": "Rating TV Shows - France", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsfr_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsfr_1", + "displayName": "-10", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsfr_2", + "displayName": "-12", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsfr_3", + "displayName": "-16", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsfr_4", + "displayName": "-18", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsfr_5", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsgb", + "displayName": "Rating TV Shows - Great Britain", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsgb_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsgb_1", + "displayName": "Caution", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsgb_2", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsie", + "displayName": "Rating TV Shows - Ireland", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsie_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsie_1", + "displayName": "GA", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsie_2", + "displayName": "CH", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsie_3", + "displayName": "YA", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsie_4", + "displayName": "PS", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsie_5", + "displayName": "MA", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsie_6", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsjp", + "displayName": "Rating TV Shows - Japan", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsjp_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsjp_1", + "displayName": "Explicit Allowed", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsjp_2", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsnz", + "displayName": "Rating TV Shows - New Zealand", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsnz_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsnz_1", + "displayName": "G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsnz_2", + "displayName": "PGR", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsnz_3", + "displayName": "AO", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsnz_4", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsus", + "displayName": "Rating TV Shows - United States", + "options": [ + { + "id": "com.apple.applicationaccess_ratingtvshowsus_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsus_1", + "displayName": "TV-Y", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsus_2", + "displayName": "TV-Y7", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsus_3", + "displayName": "TV-G", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsus_4", + "displayName": "TV-PG", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsus_5", + "displayName": "TV-14", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsus_6", + "displayName": "TB-MA", + "description": null + }, + { + "id": "com.apple.applicationaccess_ratingtvshowsus_7", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_requiremanagedpasteboard", + "displayName": "Require Managed Pasteboard", + "options": [ + { + "id": "com.apple.applicationaccess_requiremanagedpasteboard_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_requiremanagedpasteboard_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_safariacceptcookies", + "displayName": "Safari Accept Cookies", + "options": [ + { + "id": "com.apple.applicationaccess_safariacceptcookies_0", + "displayName": "Prevent Cross-Site Tracking and Block All Cookies are enabled and the user canʼt disable either setting.", + "description": null + }, + { + "id": "com.apple.applicationaccess_safariacceptcookies_1", + "displayName": "Prevent Cross-Site Tracking is enabled and the user canʼt disable it. Block All Cookies is not enabled, although the user can enable it.", + "description": null + }, + { + "id": "com.apple.applicationaccess_safariacceptcookies_2", + "displayName": "Prevent Cross-Site Tracking is enabled and Block All Cookies is not enabled. The user can toggle either setting.", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_safariallowautofill", + "displayName": "Safari Allow Autofill", + "options": [ + { + "id": "com.apple.applicationaccess_safariallowautofill_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_safariallowautofill_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_safariallowjavascript", + "displayName": "Safari Allow Java Script", + "options": [ + { + "id": "com.apple.applicationaccess_safariallowjavascript_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_safariallowjavascript_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_safariallowpopups", + "displayName": "Safari Allow Popups", + "options": [ + { + "id": "com.apple.applicationaccess_safariallowpopups_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_safariallowpopups_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.applicationaccess_safariforcefraudwarning", + "displayName": "Safari Force Fraud Warning", + "options": [ + { + "id": "com.apple.applicationaccess_safariforcefraudwarning_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.applicationaccess_safariforcefraudwarning_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.appstore_com.apple.appstore", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.appstore_disablesoftwareupdatenotifications", + "displayName": "Disable Software Update Notifications", + "options": [ + { + "id": "com.apple.appstore_disablesoftwareupdatenotifications_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.appstore_disablesoftwareupdatenotifications_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.appstore_restrict-store-disable-app-adoption", + "displayName": "restrict-store-disable-app-adoption", + "options": [ + { + "id": "com.apple.appstore_restrict-store-disable-app-adoption_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.appstore_restrict-store-disable-app-adoption_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.appstore_restrict-store-softwareupdate-only", + "displayName": "Restrict Store Software Update Only", + "options": [ + { + "id": "com.apple.appstore_restrict-store-softwareupdate-only_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.appstore_restrict-store-softwareupdate-only_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.asam_allowedapplications", + "displayName": "Allowed Applications", + "options": null + }, + { + "id": "com.apple.asam_allowedapplications_item_bundleidentifier", + "displayName": "Bundle Identifier", + "options": null + }, + { + "id": "com.apple.asam_allowedapplications_item_teamidentifier", + "displayName": "Team Identifier", + "options": null + }, + { + "id": "com.apple.asam_com.apple.asam", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.assetcache.managed_allowcachedelete", + "displayName": "Allow Cache Delete", + "options": [ + { + "id": "com.apple.assetcache.managed_allowcachedelete_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_allowcachedelete_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_allowpersonalcaching", + "displayName": "Allow Personal Caching", + "options": [ + { + "id": "com.apple.assetcache.managed_allowpersonalcaching_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_allowpersonalcaching_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_allowsharedcaching", + "displayName": "Allow Shared Caching", + "options": [ + { + "id": "com.apple.assetcache.managed_allowsharedcaching_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_allowsharedcaching_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_autoactivation", + "displayName": "Auto Activation", + "options": [ + { + "id": "com.apple.assetcache.managed_autoactivation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_autoactivation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_autoenabletetheredcaching", + "displayName": "Auto Enable Tethered Caching", + "options": [ + { + "id": "com.apple.assetcache.managed_autoenabletetheredcaching_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_autoenabletetheredcaching_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_cachelimit", + "displayName": "Cache Limit", + "options": null + }, + { + "id": "com.apple.assetcache.managed_com.apple.assetcache.managed", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.assetcache.managed_datapath", + "displayName": "Data Path", + "options": null + }, + { + "id": "com.apple.assetcache.managed_denytetheredcaching", + "displayName": "Deny Tethered Caching", + "options": [ + { + "id": "com.apple.assetcache.managed_denytetheredcaching_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_denytetheredcaching_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_displayalerts", + "displayName": "Display Alerts", + "options": [ + { + "id": "com.apple.assetcache.managed_displayalerts_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_displayalerts_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_keepawake", + "displayName": "Keep Awake", + "options": [ + { + "id": "com.apple.assetcache.managed_keepawake_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_keepawake_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_listenranges", + "displayName": "Listen Ranges", + "options": null + }, + { + "id": "com.apple.assetcache.managed_listenranges_item_first", + "displayName": "First", + "options": null + }, + { + "id": "com.apple.assetcache.managed_listenranges_item_last", + "displayName": "Last", + "options": null + }, + { + "id": "com.apple.assetcache.managed_listenranges_item_type", + "displayName": "IP Address Type", + "options": [ + { + "id": "com.apple.assetcache.managed_listenranges_item_type_0", + "displayName": "IPv4", + "description": null + }, + { + "id": "com.apple.assetcache.managed_listenranges_item_type_1", + "displayName": "IPv6", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_listenrangesonly", + "displayName": "Listen Ranges Only", + "options": [ + { + "id": "com.apple.assetcache.managed_listenrangesonly_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_listenrangesonly_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_listenwithpeersandparents", + "displayName": "Listen With Peers And Parents", + "options": [ + { + "id": "com.apple.assetcache.managed_listenwithpeersandparents_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_listenwithpeersandparents_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_localsubnetsonly", + "displayName": "Local Subnets Only", + "options": [ + { + "id": "com.apple.assetcache.managed_localsubnetsonly_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_localsubnetsonly_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_logclientidentity", + "displayName": "Log Client Identity", + "options": [ + { + "id": "com.apple.assetcache.managed_logclientidentity_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_logclientidentity_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_parents", + "displayName": "Parents", + "options": null + }, + { + "id": "com.apple.assetcache.managed_parentselectionpolicy", + "displayName": "Parent Selection Policy", + "options": [ + { + "id": "com.apple.assetcache.managed_parentselectionpolicy_0", + "displayName": "first-available", + "description": null + }, + { + "id": "com.apple.assetcache.managed_parentselectionpolicy_1", + "displayName": "url-path-hash", + "description": null + }, + { + "id": "com.apple.assetcache.managed_parentselectionpolicy_2", + "displayName": "random", + "description": null + }, + { + "id": "com.apple.assetcache.managed_parentselectionpolicy_3", + "displayName": "round-robin", + "description": null + }, + { + "id": "com.apple.assetcache.managed_parentselectionpolicy_4", + "displayName": "sticky-available", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_peerfilterranges", + "displayName": "Peer Filter Ranges", + "options": null + }, + { + "id": "com.apple.assetcache.managed_peerfilterranges_item_first", + "displayName": "First", + "options": null + }, + { + "id": "com.apple.assetcache.managed_peerfilterranges_item_last", + "displayName": "Last", + "options": null + }, + { + "id": "com.apple.assetcache.managed_peerfilterranges_item_type", + "displayName": "IP Address Type", + "options": [ + { + "id": "com.apple.assetcache.managed_peerfilterranges_item_type_0", + "displayName": "IPv4", + "description": null + }, + { + "id": "com.apple.assetcache.managed_peerfilterranges_item_type_1", + "displayName": "IPv6", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_peerlistenranges", + "displayName": "Peer Listen Ranges", + "options": null + }, + { + "id": "com.apple.assetcache.managed_peerlistenranges_item_first", + "displayName": "First", + "options": null + }, + { + "id": "com.apple.assetcache.managed_peerlistenranges_item_last", + "displayName": "Last", + "options": null + }, + { + "id": "com.apple.assetcache.managed_peerlistenranges_item_type", + "displayName": "IP Address Type", + "options": [ + { + "id": "com.apple.assetcache.managed_peerlistenranges_item_type_0", + "displayName": "IPv4", + "description": null + }, + { + "id": "com.apple.assetcache.managed_peerlistenranges_item_type_1", + "displayName": "IPv6", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_peerlocalsubnetsonly", + "displayName": "Peer Local Subnets Only", + "options": [ + { + "id": "com.apple.assetcache.managed_peerlocalsubnetsonly_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.assetcache.managed_peerlocalsubnetsonly_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.assetcache.managed_port", + "displayName": "Port", + "options": null + }, + { + "id": "com.apple.assetcache.managed_publicranges", + "displayName": "Public Ranges", + "options": null + }, + { + "id": "com.apple.assetcache.managed_publicranges_item_first", + "displayName": "First", + "options": null + }, + { + "id": "com.apple.assetcache.managed_publicranges_item_last", + "displayName": "Last", + "options": null + }, + { + "id": "com.apple.assetcache.managed_publicranges_item_type", + "displayName": "IP Address Type", + "options": [ + { + "id": "com.apple.assetcache.managed_publicranges_item_type_0", + "displayName": "IPv4", + "description": null + }, + { + "id": "com.apple.assetcache.managed_publicranges_item_type_1", + "displayName": "IPv6", + "description": null + } + ] + }, + { + "id": "com.apple.associated-domains_com.apple.associated-domains", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.associated-domains_configuration", + "displayName": "Configuration", + "options": null + }, + { + "id": "com.apple.associated-domains_configuration_item_applicationidentifier", + "displayName": "Application Identifier", + "options": null + }, + { + "id": "com.apple.associated-domains_configuration_item_associateddomains", + "displayName": "Associated Domains", + "options": null + }, + { + "id": "com.apple.associated-domains_configuration_item_enabledirectdownloads", + "displayName": "Enable Direct Downloads", + "options": [ + { + "id": "com.apple.associated-domains_configuration_item_enabledirectdownloads_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.associated-domains_configuration_item_enabledirectdownloads_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.caldav.account_caldavaccountdescription", + "displayName": "Cal DAV Account Description", + "options": null + }, + { + "id": "com.apple.caldav.account_caldavhostname", + "displayName": "Cal DAV Host Name", + "options": null + }, + { + "id": "com.apple.caldav.account_caldavpassword", + "displayName": "Cal DAV Password", + "options": null + }, + { + "id": "com.apple.caldav.account_caldavport", + "displayName": "Cal DAV Port", + "options": null + }, + { + "id": "com.apple.caldav.account_caldavprincipalurl", + "displayName": "Cal DAV Principal URL", + "options": null + }, + { + "id": "com.apple.caldav.account_caldavusername", + "displayName": "Cal DAV Username", + "options": null + }, + { + "id": "com.apple.caldav.account_caldavusessl", + "displayName": "Cal DAV Use SSL", + "options": [ + { + "id": "com.apple.caldav.account_caldavusessl_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.caldav.account_caldavusessl_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.caldav.account_com.apple.caldav.account", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.carddav.account_carddavaccountdescription", + "displayName": "Card DAV Account Description", + "options": null + }, + { + "id": "com.apple.carddav.account_carddavhostname", + "displayName": "Card DAV Host Name", + "options": null + }, + { + "id": "com.apple.carddav.account_carddavpassword", + "displayName": "Card DAV Password", + "options": null + }, + { + "id": "com.apple.carddav.account_carddavport", + "displayName": "Card DAV Port", + "options": null + }, + { + "id": "com.apple.carddav.account_carddavprincipalurl", + "displayName": "Card DAV Principal URL", + "options": null + }, + { + "id": "com.apple.carddav.account_carddavusername", + "displayName": "Card DAV Username", + "options": null + }, + { + "id": "com.apple.carddav.account_carddavusessl", + "displayName": "Card DAV Use SSL", + "options": [ + { + "id": "com.apple.carddav.account_carddavusessl_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.carddav.account_carddavusessl_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.carddav.account_com.apple.carddav.account", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { "id": "com.apple.cellular_apns", "displayName": "APNs", "options": null }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmask", + "displayName": "Allowed Protocol Mask", + "options": [ + { + "id": "com.apple.cellular_apns_item_allowedprotocolmask_0", + "displayName": "IPv4", + "description": null + }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmask_1", + "displayName": "IPv6", + "description": null + }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmask_2", + "displayName": "Both", + "description": null + } + ] + }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmaskindomesticroaming", + "displayName": "Allowed Protocol Mask In Domestic Roaming", + "options": [ + { + "id": "com.apple.cellular_apns_item_allowedprotocolmaskindomesticroaming_0", + "displayName": "IPv4", + "description": null + }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmaskindomesticroaming_1", + "displayName": "IPv6", + "description": null + }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmaskindomesticroaming_2", + "displayName": "Both", + "description": null + } + ] + }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmaskinroaming", + "displayName": "Allowed Protocol Mask In Roaming", + "options": [ + { + "id": "com.apple.cellular_apns_item_allowedprotocolmaskinroaming_0", + "displayName": "IPv4", + "description": null + }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmaskinroaming_1", + "displayName": "IPv6", + "description": null + }, + { + "id": "com.apple.cellular_apns_item_allowedprotocolmaskinroaming_2", + "displayName": "Both", + "description": null + } + ] + }, + { + "id": "com.apple.cellular_apns_item_authenticationtype", + "displayName": "Authentication Type", + "options": [ + { + "id": "com.apple.cellular_apns_item_authenticationtype_0", + "displayName": "CHAP", + "description": null + }, + { + "id": "com.apple.cellular_apns_item_authenticationtype_1", + "displayName": "PAP", + "description": null + } + ] + }, + { + "id": "com.apple.cellular_apns_item_enablexlat464", + "displayName": "Enable XLAT464", + "options": [ + { + "id": "com.apple.cellular_apns_item_enablexlat464_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.cellular_apns_item_enablexlat464_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.cellular_apns_item_name", + "displayName": "Name", + "options": null + }, + { + "id": "com.apple.cellular_apns_item_password", + "displayName": "Password", + "options": null + }, + { + "id": "com.apple.cellular_apns_item_proxyport", + "displayName": "Proxy Port", + "options": null + }, + { + "id": "com.apple.cellular_apns_item_proxyserver", + "displayName": "Proxy Server", + "options": null + }, + { + "id": "com.apple.cellular_apns_item_username", + "displayName": "Username", + "options": null + }, + { + "id": "com.apple.cellular_attachapn", + "displayName": "Attach APN", + "options": null + }, + { + "id": "com.apple.cellular_attachapn_allowedprotocolmask", + "displayName": "Allowed Protocol Mask", + "options": [ + { + "id": "com.apple.cellular_attachapn_allowedprotocolmask_0", + "displayName": "IPv4", + "description": null + }, + { + "id": "com.apple.cellular_attachapn_allowedprotocolmask_1", + "displayName": "IPv6", + "description": null + }, + { + "id": "com.apple.cellular_attachapn_allowedprotocolmask_2", + "displayName": "Both", + "description": null + } + ] + }, + { + "id": "com.apple.cellular_attachapn_authenticationtype", + "displayName": "Authentication Type", + "options": [ + { + "id": "com.apple.cellular_attachapn_authenticationtype_0", + "displayName": "CHAP", + "description": null + }, + { + "id": "com.apple.cellular_attachapn_authenticationtype_1", + "displayName": "PAP", + "description": null + } + ] + }, + { + "id": "com.apple.cellular_attachapn_name", + "displayName": "Name", + "options": null + }, + { + "id": "com.apple.cellular_attachapn_password", + "displayName": "Password", + "options": null + }, + { + "id": "com.apple.cellular_attachapn_username", + "displayName": "Username", + "options": null + }, + { + "id": "com.apple.cellular_com.apple.cellular", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.configurationprofile.identification_com.apple.configurationprofile.identification", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification", + "displayName": "Payload Identification", + "options": null + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification_authmethod", + "displayName": "Auth Method", + "options": [ + { + "id": "com.apple.configurationprofile.identification_payloadidentification_authmethod_0", + "displayName": "Password", + "description": null + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification_authmethod_1", + "displayName": "UserEnteredPassword", + "description": null + } + ] + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification_emailaddress", + "displayName": "Email Address", + "options": null + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification_fullname", + "displayName": "Full Name", + "options": null + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification_password", + "displayName": "Password", + "options": null + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification_prompt", + "displayName": "Prompt", + "options": null + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification_promptmessage", + "displayName": "Prompt Message", + "options": null + }, + { + "id": "com.apple.configurationprofile.identification_payloadidentification_username", + "displayName": "User Name", + "options": null + }, + { + "id": "com.apple.desktop_com.apple.desktop", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.desktop_override-picture-path", + "displayName": "Override Picture Path", + "options": null + }, + { + "id": "com.apple.dictionary_com.apple.dictionary", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.dictionary_parentalcontrol", + "displayName": "Parental Control", + "options": [ + { + "id": "com.apple.dictionary_parentalcontrol_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dictionary_parentalcontrol_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adallowmultidomainauth", + "displayName": "AD Allow Multi Domain Auth", + "options": [ + { + "id": "com.apple.directoryservice.managed_adallowmultidomainauth_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adallowmultidomainauth_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adallowmultidomainauthflag", + "displayName": "AD Allow Multi Domain Auth Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adallowmultidomainauthflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adallowmultidomainauthflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adcreatemobileaccountatlogin", + "displayName": "AD Create Mobile Account At Login", + "options": [ + { + "id": "com.apple.directoryservice.managed_adcreatemobileaccountatlogin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adcreatemobileaccountatlogin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adcreatemobileaccountatloginflag", + "displayName": "AD Create Mobile Account At Login Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adcreatemobileaccountatloginflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adcreatemobileaccountatloginflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_addefaultusershell", + "displayName": "AD Default User Shell", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_addefaultusershellflag", + "displayName": "AD Default User Shell Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_addefaultusershellflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_addefaultusershellflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_addomainadmingrouplist", + "displayName": "AD Domain Admin Group List", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_addomainadmingrouplistflag", + "displayName": "AD Domain Admin Group List Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_addomainadmingrouplistflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_addomainadmingrouplistflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adforcehomelocal", + "displayName": "AD Force Home Local", + "options": [ + { + "id": "com.apple.directoryservice.managed_adforcehomelocal_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adforcehomelocal_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adforcehomelocalflag", + "displayName": "AD Force Home Local Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adforcehomelocalflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adforcehomelocalflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_admapggidattribute", + "displayName": "AD Map GGID Attribute", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_admapggidattributeflag", + "displayName": "AD Map GGID Attribute Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_admapggidattributeflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_admapggidattributeflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_admapgidattribute", + "displayName": "AD Map GID Attribute", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_admapgidattributeflag", + "displayName": "AD Map GID Attribute Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_admapgidattributeflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_admapgidattributeflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_admapuidattribute", + "displayName": "AD Map UID Attribute", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_admapuidattributeflag", + "displayName": "AD Map UID Attribute Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_admapuidattributeflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_admapuidattributeflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_admountstyle", + "displayName": "AD Mount Style", + "options": [ + { + "id": "com.apple.directoryservice.managed_admountstyle_0", + "displayName": "afp", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_admountstyle_1", + "displayName": "smb", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adnamespace", + "displayName": "AD Namespace", + "options": [ + { + "id": "com.apple.directoryservice.managed_adnamespace_0", + "displayName": "forest", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adnamespace_1", + "displayName": "domain", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adnamespaceflag", + "displayName": "AD Namespace Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adnamespaceflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adnamespaceflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adorganizationalunit", + "displayName": "AD Organizational Unit", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_adpacketencrypt", + "displayName": "AD Packet Encrypt", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_adpacketencryptflag", + "displayName": "AD Packet Encrypt Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adpacketencryptflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adpacketencryptflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adpacketsign", + "displayName": "AD Packet Sign", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_adpacketsignflag", + "displayName": "AD Packet Sign Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adpacketsignflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adpacketsignflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adpreferreddcserver", + "displayName": "AD Preferred DC Server", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_adpreferreddcserverflag", + "displayName": "AD Preferred DC Server Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adpreferreddcserverflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adpreferreddcserverflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adrestrictddns", + "displayName": "AD Restrict DDNS", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_adrestrictddnsflag", + "displayName": "AD Restrict DDNS Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adrestrictddnsflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adrestrictddnsflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adtrustchangepassintervaldays", + "displayName": "AD Trust Change Pass Interval Days", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_adtrustchangepassintervaldaysflag", + "displayName": "AD Trust Change Pass Interval Days Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adtrustchangepassintervaldaysflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adtrustchangepassintervaldaysflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adusewindowsuncpath", + "displayName": "AD Use Windows UNC Path", + "options": [ + { + "id": "com.apple.directoryservice.managed_adusewindowsuncpath_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adusewindowsuncpath_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adusewindowsuncpathflag", + "displayName": "AD Use Windows UNC Path Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adusewindowsuncpathflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adusewindowsuncpathflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adwarnuserbeforecreatingma", + "displayName": "AD Warn User Before Creating MA", + "options": [ + { + "id": "com.apple.directoryservice.managed_adwarnuserbeforecreatingma_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adwarnuserbeforecreatingma_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_adwarnuserbeforecreatingmaflag", + "displayName": "AD Warn User Before Creating MA Flag", + "options": [ + { + "id": "com.apple.directoryservice.managed_adwarnuserbeforecreatingmaflag_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.directoryservice.managed_adwarnuserbeforecreatingmaflag_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.directoryservice.managed_clientid", + "displayName": "Client ID", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_com.apple.directoryservice.managed", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_description", + "displayName": "Description", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_hostname", + "displayName": "Host Name", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_password", + "displayName": "Password", + "options": null + }, + { + "id": "com.apple.directoryservice.managed_username", + "displayName": "User Name", + "options": null + }, + { + "id": "com.apple.discrecording_burnsupport", + "displayName": "Burn Support", + "options": [ + { + "id": "com.apple.discrecording_burnsupport_0", + "displayName": "off", + "description": null + }, + { + "id": "com.apple.discrecording_burnsupport_1", + "displayName": "authenticate", + "description": null + }, + { + "id": "com.apple.discrecording_burnsupport_2", + "displayName": "on", + "description": null + } + ] + }, + { + "id": "com.apple.discrecording_com.apple.discrecording", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_com.apple.dnssettings.managed", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_dnssettings", + "displayName": "DNS Settings", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_dnssettings_dnsprotocol", + "displayName": "DNS Protocol", + "options": [ + { + "id": "com.apple.dnssettings.managed_dnssettings_dnsprotocol_0", + "displayName": "HTTPS", + "description": null + }, + { + "id": "com.apple.dnssettings.managed_dnssettings_dnsprotocol_1", + "displayName": "TLS", + "description": null + } + ] + }, + { + "id": "com.apple.dnssettings.managed_dnssettings_serveraddresses", + "displayName": "Server Addresses", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_dnssettings_servername", + "displayName": "Server Name (Deprecated)", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_dnssettings_serverurl", + "displayName": "Server URL", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_dnssettings_supplementalmatchdomains", + "displayName": "Supplemental Match Domains", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules", + "displayName": "On Demand Rules", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_action", + "displayName": "Action", + "options": [ + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_action_0", + "displayName": "Connect", + "description": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_action_1", + "displayName": "Disconnect", + "description": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_action_2", + "displayName": "Evaluate Connection", + "description": null + } + ] + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters", + "displayName": "Action Parameters", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters_domainaction", + "displayName": "Domain Action (Deprecated)", + "options": [ + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters_domainaction_0", + "displayName": "Never Connect", + "description": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters_domainaction_1", + "displayName": "Connect If Needed", + "description": null + } + ] + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters_domains", + "displayName": "Domains (Deprecated)", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters_item_domainaction", + "displayName": "Domain Action", + "options": [ + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters_item_domainaction_0", + "displayName": "NeverConnect", + "description": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters_item_domainaction_1", + "displayName": "ConnectIfNeeded", + "description": null + } + ] + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_actionparameters_item_domains", + "displayName": "Domains", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_dnsdomainmatch", + "displayName": "DNS Domain Match", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_dnsserveraddressmatch", + "displayName": "DNS Server Address Match", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_interfacetypematch", + "displayName": "Interface Type Match", + "options": [ + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_interfacetypematch_0", + "displayName": "Ethernet", + "description": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_interfacetypematch_1", + "displayName": "WiFi", + "description": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_interfacetypematch_2", + "displayName": "Cellular", + "description": null + } + ] + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_ssidmatch", + "displayName": "SSID Match", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_ondemandrules_item_urlstringprobe", + "displayName": "URL String Probe", + "options": null + }, + { + "id": "com.apple.dnssettings.managed_prohibitdisablement", + "displayName": "Prohibit Disablement", + "options": [ + { + "id": "com.apple.dnssettings.managed_prohibitdisablement_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.dnssettings.managed_prohibitdisablement_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.dock_allowdockfixupoverride", + "displayName": "Allow Dock Fixup Override", + "options": [ + { + "id": "com.apple.dock_allowdockfixupoverride_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_allowdockfixupoverride_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_autohide", + "displayName": "Auto Hide", + "options": [ + { + "id": "com.apple.dock_autohide_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_autohide_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_autohide-immutable", + "displayName": "Auto Hide Immutable", + "options": [ + { + "id": "com.apple.dock_autohide-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_autohide-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_com.apple.dock", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.dock_contents-immutable", + "displayName": "Contents Immutable", + "options": [ + { + "id": "com.apple.dock_contents-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_contents-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_dblclickbehavior", + "displayName": "Double Click Behavior", + "options": [ + { + "id": "com.apple.dock_dblclickbehavior_0", + "displayName": "Minimize", + "description": null + }, + { + "id": "com.apple.dock_dblclickbehavior_1", + "displayName": "Maximize", + "description": null + }, + { + "id": "com.apple.dock_dblclickbehavior_2", + "displayName": "None", + "description": null + } + ] + }, + { + "id": "com.apple.dock_dblclickbehavior-immutable", + "displayName": "Double Click Behavior Immutable", + "options": [ + { + "id": "com.apple.dock_dblclickbehavior-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_dblclickbehavior-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_largesize", + "displayName": "Large Size", + "options": null + }, + { + "id": "com.apple.dock_launchanim", + "displayName": "Launch Animation", + "options": [ + { + "id": "com.apple.dock_launchanim_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_launchanim_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_launchanim-immutable", + "displayName": "Launch Animation Immutable", + "options": [ + { + "id": "com.apple.dock_launchanim-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_launchanim-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_magnification", + "displayName": "Magnification", + "options": [ + { + "id": "com.apple.dock_magnification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_magnification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_magnify-immutable", + "displayName": "Magnify Immutable", + "options": [ + { + "id": "com.apple.dock_magnify-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_magnify-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_magsize-immutable", + "displayName": "Magnification Size Immutable", + "options": [ + { + "id": "com.apple.dock_magsize-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_magsize-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_mcxdockspecialfolders", + "displayName": "MCX Dock Special Folders", + "options": null + }, + { + "id": "com.apple.dock_mineffect", + "displayName": "Minimize Effect", + "options": [ + { + "id": "com.apple.dock_mineffect_0", + "displayName": "Genie", + "description": null + }, + { + "id": "com.apple.dock_mineffect_1", + "displayName": "Scale", + "description": null + } + ] + }, + { + "id": "com.apple.dock_mineffect-immutable", + "displayName": "Minimize Effect Immutable", + "options": [ + { + "id": "com.apple.dock_mineffect-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_mineffect-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_minimize-to-application", + "displayName": "Minimize To Application", + "options": [ + { + "id": "com.apple.dock_minimize-to-application_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_minimize-to-application_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_minintoapp-immutable", + "displayName": "Minimize Into Application Immutable", + "options": [ + { + "id": "com.apple.dock_minintoapp-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_minintoapp-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_orientation", + "displayName": "Orientation", + "options": [ + { + "id": "com.apple.dock_orientation_0", + "displayName": "Bottom", + "description": null + }, + { + "id": "com.apple.dock_orientation_1", + "displayName": "Left", + "description": null + }, + { + "id": "com.apple.dock_orientation_2", + "displayName": "Right", + "description": null + } + ] + }, + { + "id": "com.apple.dock_persistent-apps", + "displayName": "Persistent Apps", + "options": null + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-data", + "displayName": "Tile Data", + "options": null + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-data_file-type", + "displayName": "File Type", + "options": [ + { + "id": "com.apple.dock_persistent-apps_item_tile-data_file-type_0", + "displayName": "URL", + "description": null + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-data_file-type_1", + "displayName": "File", + "description": null + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-data_file-type_2", + "displayName": "Directory", + "description": null + } + ] + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-data_label", + "displayName": "Label", + "options": null + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-data_url", + "displayName": "URL", + "options": null + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-type", + "displayName": "Tile Type", + "options": [ + { + "id": "com.apple.dock_persistent-apps_item_tile-type_0", + "displayName": "File", + "description": null + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-type_1", + "displayName": "Directory", + "description": null + }, + { + "id": "com.apple.dock_persistent-apps_item_tile-type_2", + "displayName": "URL", + "description": null + } + ] + }, + { + "id": "com.apple.dock_persistent-others", + "displayName": "Persistent Others", + "options": null + }, + { + "id": "com.apple.dock_persistent-others_item_tile-data", + "displayName": "Tile Data", + "options": null + }, + { + "id": "com.apple.dock_persistent-others_item_tile-data_file-type", + "displayName": "File Type", + "options": [ + { + "id": "com.apple.dock_persistent-others_item_tile-data_file-type_0", + "displayName": "URL", + "description": null + }, + { + "id": "com.apple.dock_persistent-others_item_tile-data_file-type_1", + "displayName": "File", + "description": null + }, + { + "id": "com.apple.dock_persistent-others_item_tile-data_file-type_2", + "displayName": "Directory", + "description": null + } + ] + }, + { + "id": "com.apple.dock_persistent-others_item_tile-data_label", + "displayName": "Label", + "options": null + }, + { + "id": "com.apple.dock_persistent-others_item_tile-data_url", + "displayName": "URL", + "options": null + }, + { + "id": "com.apple.dock_persistent-others_item_tile-type", + "displayName": "Tile Type", + "options": [ + { + "id": "com.apple.dock_persistent-others_item_tile-type_0", + "displayName": "File", + "description": null + }, + { + "id": "com.apple.dock_persistent-others_item_tile-type_1", + "displayName": "Directory", + "description": null + }, + { + "id": "com.apple.dock_persistent-others_item_tile-type_2", + "displayName": "URL", + "description": null + } + ] + }, + { + "id": "com.apple.dock_position-immutable", + "displayName": "Position Immutable", + "options": [ + { + "id": "com.apple.dock_position-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_position-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_showindicators-immutable", + "displayName": "Show Indicators Immutable", + "options": [ + { + "id": "com.apple.dock_showindicators-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_showindicators-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_show-process-indicators", + "displayName": "Show Process Indicators", + "options": [ + { + "id": "com.apple.dock_show-process-indicators_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_show-process-indicators_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_show-recents", + "displayName": "Show Recents", + "options": [ + { + "id": "com.apple.dock_show-recents_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_show-recents_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_showrecents-immutable", + "displayName": "Show Recents Immutable", + "options": [ + { + "id": "com.apple.dock_showrecents-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_showrecents-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_size-immutable", + "displayName": "Size Immutable", + "options": [ + { + "id": "com.apple.dock_size-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_size-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_static-apps", + "displayName": "Static Apps", + "options": null + }, + { + "id": "com.apple.dock_static-apps_item_tile-data", + "displayName": "Tile Data", + "options": null + }, + { + "id": "com.apple.dock_static-apps_item_tile-data_file-type", + "displayName": "File Type", + "options": [ + { + "id": "com.apple.dock_static-apps_item_tile-data_file-type_0", + "displayName": "URL", + "description": null + }, + { + "id": "com.apple.dock_static-apps_item_tile-data_file-type_1", + "displayName": "File", + "description": null + }, + { + "id": "com.apple.dock_static-apps_item_tile-data_file-type_2", + "displayName": "Directory", + "description": null + } + ] + }, + { + "id": "com.apple.dock_static-apps_item_tile-data_label", + "displayName": "Label", + "options": null + }, + { + "id": "com.apple.dock_static-apps_item_tile-data_url", + "displayName": "URL", + "options": null + }, + { + "id": "com.apple.dock_static-apps_item_tile-type", + "displayName": "Tile Type", + "options": [ + { + "id": "com.apple.dock_static-apps_item_tile-type_0", + "displayName": "File", + "description": null + }, + { + "id": "com.apple.dock_static-apps_item_tile-type_1", + "displayName": "Directory", + "description": null + }, + { + "id": "com.apple.dock_static-apps_item_tile-type_2", + "displayName": "URL", + "description": null + } + ] + }, + { + "id": "com.apple.dock_static-only", + "displayName": "Static Only", + "options": [ + { + "id": "com.apple.dock_static-only_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_static-only_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.dock_static-others", + "displayName": "Static Others", + "options": null + }, + { + "id": "com.apple.dock_static-others_item_tile-data", + "displayName": "Tile Data", + "options": null + }, + { + "id": "com.apple.dock_static-others_item_tile-data_file-type", + "displayName": "File Type", + "options": [ + { + "id": "com.apple.dock_static-others_item_tile-data_file-type_0", + "displayName": "URL", + "description": null + }, + { + "id": "com.apple.dock_static-others_item_tile-data_file-type_1", + "displayName": "File", + "description": null + }, + { + "id": "com.apple.dock_static-others_item_tile-data_file-type_2", + "displayName": "Directory", + "description": null + } + ] + }, + { + "id": "com.apple.dock_static-others_item_tile-data_label", + "displayName": "Label", + "options": null + }, + { + "id": "com.apple.dock_static-others_item_tile-data_url", + "displayName": "URL", + "options": null + }, + { + "id": "com.apple.dock_static-others_item_tile-type", + "displayName": "Tile Type", + "options": [ + { + "id": "com.apple.dock_static-others_item_tile-type_0", + "displayName": "File", + "description": null + }, + { + "id": "com.apple.dock_static-others_item_tile-type_1", + "displayName": "Directory", + "description": null + }, + { + "id": "com.apple.dock_static-others_item_tile-type_2", + "displayName": "URL", + "description": null + } + ] + }, + { + "id": "com.apple.dock_tilesize", + "displayName": "Tile Size", + "options": null + }, + { + "id": "com.apple.dock_windowtabbing", + "displayName": "Window Tabbing", + "options": [ + { + "id": "com.apple.dock_windowtabbing_0", + "displayName": "Manual", + "description": null + }, + { + "id": "com.apple.dock_windowtabbing_1", + "displayName": "Always", + "description": null + }, + { + "id": "com.apple.dock_windowtabbing_2", + "displayName": "Full Screen", + "description": null + } + ] + }, + { + "id": "com.apple.dock_windowtabbing-immutable", + "displayName": "Window Tabbing Immutable", + "options": [ + { + "id": "com.apple.dock_windowtabbing-immutable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.dock_windowtabbing-immutable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.domains_com.apple.domains", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.domains_crosssitetrackingpreventionrelaxeddomains", + "displayName": "Cross Site Tracking Prevention Relaxed Domains", + "options": null + }, + { + "id": "com.apple.domains_emaildomains", + "displayName": "Email Domains", + "options": null + }, + { + "id": "com.apple.domains_safaripasswordautofilldomains", + "displayName": "Safari Password Auto Fill Domains", + "options": null + }, + { + "id": "com.apple.domains_webdomains", + "displayName": "Web Domains", + "options": null + }, + { + "id": "com.apple.extensiblesso_authenticationmethod", + "displayName": "Authentication Method (Deprecated)", + "options": [ + { + "id": "com.apple.extensiblesso_authenticationmethod_0", + "displayName": "Password", + "description": null + }, + { + "id": "com.apple.extensiblesso_authenticationmethod_1", + "displayName": "UserSecureEnclaveKey", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_com.apple.extensiblesso", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.extensiblesso_com.apple.extensiblesso-kerberos_kerberos", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.extensiblesso_deniedbundleidentifiers", + "displayName": "Denied Bundle Identifiers", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata", + "displayName": "Extension Data", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowautomaticlogin_kerberos", + "displayName": "Allow Automatic Login", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_allowautomaticlogin_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowautomaticlogin_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowpassword_kerberos", + "displayName": "allow Password", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_allowpassword_kerberos_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowpassword_kerberos_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowpasswordchange_kerberos", + "displayName": "Allow Password Change", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_allowpasswordchange_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowpasswordchange_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowsmartcard_kerberos", + "displayName": "allow Smart Card", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_allowsmartcard_kerberos_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_allowsmartcard_kerberos_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_credentialbundleidacl_kerberos", + "displayName": "Credential Bundle ID ACL", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_credentialusemode_kerberos", + "displayName": "Credential Use Mode", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_credentialusemode_kerberos_0", + "displayName": "Always", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_credentialusemode_kerberos_1", + "displayName": "When Not Specified", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_credentialusemode_kerberos_2", + "displayName": "Kerberos Default ", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_customusernamelabel_kerberos", + "displayName": "Custom Username Label", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_delayusersetup_kerberos", + "displayName": "Delay User Setup", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_delayusersetup_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_delayusersetup_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_domainrealmmapping_generickey_kerberos_keytobereplaced", + "displayName": "Realm", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_domainrealmmapping_generickey_kerberos_string", + "displayName": "Domain Realm Mapping", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_domainrealmmapping_kerberos", + "displayName": "Domain Realm Mapping", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_domainrealmmapping_realm_kerberos", + "displayName": "Realm (Deprecated)", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_generickey_boolean", + "displayName": "Value", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_generickey_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_generickey_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_generickey_integer", + "displayName": "Value", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_generickey_keytobereplaced", + "displayName": "Key", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_generickey_string", + "displayName": "Value", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_helptext_kerberos", + "displayName": "Help Text", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_identityissuerautoselectfilter_kerberos", + "displayName": "identity Issuer Auto Select Filter", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_includekerberosappsinbundleidacl_kerberos", + "displayName": "Include Kerberos Apps In Bundle ID ACL", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_includekerberosappsinbundleidacl_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_includekerberosappsinbundleidacl_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_includemanagedappsinbundleidacl_kerberos", + "displayName": "Include Managed Apps In Bundle ID ACL", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_includemanagedappsinbundleidacl_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_includemanagedappsinbundleidacl_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_isdefaultrealm_kerberos", + "displayName": "Is Default Realm", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_isdefaultrealm_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_isdefaultrealm_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_kerberos", + "displayName": "Extension Data", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_monitorcredentialscache_kerberos", + "displayName": "Monitor Credentials Cache", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_monitorcredentialscache_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_monitorcredentialscache_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_performkerberosonly_kerberos", + "displayName": "Perform Kerberos Only", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_performkerberosonly_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_performkerberosonly_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_preferredkdcs_kerberos", + "displayName": "Preferred KDCs", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_principalname_kerberos", + "displayName": "Principal Name", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_pwchangeurl_kerberos", + "displayName": "Password Change URL", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_pwnotificationdays_kerberos", + "displayName": "Password Notification Days", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_pwreqcomplexity_kerberos", + "displayName": "Password Req Complexity", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_pwreqcomplexity_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_pwreqcomplexity_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_pwreqhistory_kerberos", + "displayName": "Password Req History", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_pwreqlength_kerberos", + "displayName": "Password Req Length", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_pwreqminage_kerberos", + "displayName": "Password Req Min Age", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_pwreqtext_kerberos", + "displayName": "Password Req Text", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_requiretlsforldap_kerberos", + "displayName": "Require TLS For LDAP", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_requiretlsforldap_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_requiretlsforldap_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_requireuserpresence_kerberos", + "displayName": "Require User Presence", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_requireuserpresence_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_requireuserpresence_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_sitecode_kerberos", + "displayName": "Site Code", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_startinsmartcardmode_kerberos", + "displayName": "start In Smart Card Mode", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_startinsmartcardmode_kerberos_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_startinsmartcardmode_kerberos_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_synclocalpassword_kerberos", + "displayName": "Sync Local Password", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_synclocalpassword_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_synclocalpassword_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensiondata_usesiteautodiscovery_kerberos", + "displayName": "Use Site Auto Discovery", + "options": [ + { + "id": "com.apple.extensiblesso_extensiondata_usesiteautodiscovery_kerberos_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.extensiblesso_extensiondata_usesiteautodiscovery_kerberos_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_extensionidentifier", + "displayName": "Extension Identifier", + "options": null + }, + { + "id": "com.apple.extensiblesso_extensionidentifier_kerberos", + "displayName": "Extension Identifier", + "options": { + "id": "com.apple.extensiblesso_extensionidentifier_kerberos_0", + "displayName": "com.apple.AppSSOKerberos.KerberosExtension", + "description": null + } + }, + { + "id": "com.apple.extensiblesso_hosts", + "displayName": "Hosts", + "options": null + }, + { + "id": "com.apple.extensiblesso_hosts_kerberos", + "displayName": "Hosts", + "options": null + }, + { + "id": "com.apple.extensiblesso_ignored_$typepicker", + "displayName": "Type", + "options": [ + { + "id": "com.apple.extensiblesso_ignored_0", + "displayName": "String", + "description": "String" + }, + { + "id": "com.apple.extensiblesso_ignored_1", + "displayName": "Integer", + "description": "Integer" + }, + { + "id": "com.apple.extensiblesso_ignored_2", + "displayName": "Boolean", + "description": "Boolean" + } + ] + }, + { + "id": "com.apple.extensiblesso_ignored_kerberos_$typepicker", + "displayName": "IGNORED", + "options": { + "id": "com.apple.extensiblesso_ignored_kerberos_0", + "displayName": "Array", + "description": null + } + }, + { + "id": "com.apple.extensiblesso_platformsso", + "displayName": "Platform SSO", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_accountdisplayname", + "displayName": "Account Display Name", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_additionalgroups", + "displayName": "Additional Groups", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_administratorgroups", + "displayName": "Administrator Groups", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_authenticationgraceperiod", + "displayName": "Authentication Grace Period", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_authenticationmethod", + "displayName": "Authentication Method", + "options": [ + { + "id": "com.apple.extensiblesso_platformsso_authenticationmethod_0", + "displayName": "Password", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_authenticationmethod_1", + "displayName": "UserSecureEnclaveKey", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_authenticationmethod_2", + "displayName": "SmartCard", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_platformsso_authorizationgroups", + "displayName": "Authorization Groups", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_authorizationgroups_authorization right", + "displayName": "Authorization Right (Deprecated)", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_authorizationgroups_generickey", + "displayName": "ANY", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_authorizationgroups_generickey_keytobereplaced", + "displayName": "Authorization Groups", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_authorizationgroups_group", + "displayName": "Group (Deprecated)", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_enableauthorization", + "displayName": "Enable Authorization", + "options": [ + { + "id": "com.apple.extensiblesso_platformsso_enableauthorization_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_enableauthorization_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_platformsso_enablecreateuseratlogin", + "displayName": "Enable Create User At Login", + "options": [ + { + "id": "com.apple.extensiblesso_platformsso_enablecreateuseratlogin_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_enablecreateuseratlogin_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_platformsso_filevaultpolicy", + "displayName": "FileVault Policy", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_loginfrequency", + "displayName": "Login Frequency", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_loginpolicy", + "displayName": "Login Policy", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_newuserauthorizationmode", + "displayName": "New User Authorization Mode", + "options": [ + { + "id": "com.apple.extensiblesso_platformsso_newuserauthorizationmode_0", + "displayName": "Standard", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_newuserauthorizationmode_1", + "displayName": "Admin", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_newuserauthorizationmode_2", + "displayName": "Groups", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_platformsso_nonplatformssoaccounts", + "displayName": "Non Platform SSO Accounts", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_offlinegraceperiod", + "displayName": "Offline Grace Period", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_tokentousermapping", + "displayName": "Token To User Mapping", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_tokentousermapping_accountname", + "displayName": "Account Name", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_tokentousermapping_fullname", + "displayName": "Full Name", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_unlockpolicy", + "displayName": "Unlock Policy", + "options": null + }, + { + "id": "com.apple.extensiblesso_platformsso_userauthorizationmode", + "displayName": "User Authorization Mode", + "options": [ + { + "id": "com.apple.extensiblesso_platformsso_userauthorizationmode_0", + "displayName": "Standard", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_userauthorizationmode_1", + "displayName": "Admin", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_userauthorizationmode_2", + "displayName": "Groups", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_platformsso_useshareddevicekeys", + "displayName": "Use Shared Device Keys", + "options": [ + { + "id": "com.apple.extensiblesso_platformsso_useshareddevicekeys_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.extensiblesso_platformsso_useshareddevicekeys_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_realm", + "displayName": "Realm", + "options": null + }, + { + "id": "com.apple.extensiblesso_realm_kerberos", + "displayName": "Realm", + "options": null + }, + { + "id": "com.apple.extensiblesso_registrationtoken", + "displayName": "Registration Token", + "options": null + }, + { + "id": "com.apple.extensiblesso_screenlockedbehavior", + "displayName": "Screen Locked Behavior", + "options": { + "id": "com.apple.extensiblesso_screenlockedbehavior_0", + "displayName": "Do Not Handle", + "description": null + } + }, + { + "id": "com.apple.extensiblesso_teamidentifier", + "displayName": "Team Identifier", + "options": null + }, + { + "id": "com.apple.extensiblesso_teamidentifier_kerberos", + "displayName": "Team Identifier", + "options": { + "id": "com.apple.extensiblesso_teamidentifier_kerberos_0", + "displayName": "apple", + "description": null + } + }, + { + "id": "com.apple.extensiblesso_type", + "displayName": "Type", + "options": [ + { + "id": "com.apple.extensiblesso_type_0", + "displayName": "Credential", + "description": null + }, + { + "id": "com.apple.extensiblesso_type_1", + "displayName": "Redirect", + "description": null + } + ] + }, + { + "id": "com.apple.extensiblesso_type_kerberos", + "displayName": "Type", + "options": { + "id": "com.apple.extensiblesso_type_kerberos_0", + "displayName": "Credential", + "description": null + } + }, + { + "id": "com.apple.extensiblesso_urls", + "displayName": "URLs", + "options": null + }, + { + "id": "com.apple.familycontrols.contentfilter_com.apple.familycontrols.contentfilter", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.familycontrols.contentfilter_filterblacklist", + "displayName": "Filter Blocklist", + "options": null + }, + { + "id": "com.apple.familycontrols.contentfilter_filterwhitelist", + "displayName": "Filter Allowlist", + "options": null + }, + { + "id": "com.apple.familycontrols.contentfilter_restrictweb", + "displayName": "Restrict Web", + "options": [ + { + "id": "com.apple.familycontrols.contentfilter_restrictweb_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.familycontrols.contentfilter_restrictweb_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.contentfilter_sitewhitelist", + "displayName": "Site Allowlist", + "options": null + }, + { + "id": "com.apple.familycontrols.contentfilter_sitewhitelist_item_address", + "displayName": "Address", + "options": null + }, + { + "id": "com.apple.familycontrols.contentfilter_sitewhitelist_item_pagetitle", + "displayName": "Page Title", + "options": null + }, + { + "id": "com.apple.familycontrols.contentfilter_usecontentfilter", + "displayName": "Use Content Filter", + "options": [ + { + "id": "com.apple.familycontrols.contentfilter_usecontentfilter_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.familycontrols.contentfilter_usecontentfilter_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.contentfilter_whitelistenabled", + "displayName": "Allowlist Enabled", + "options": [ + { + "id": "com.apple.familycontrols.contentfilter_whitelistenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.familycontrols.contentfilter_whitelistenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_com.apple.familycontrols.timelimits.v2", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_familycontrolsenabled", + "displayName": "Family Controls Enabled", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_familycontrolsenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_familycontrolsenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits", + "displayName": "Time Limits", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance", + "displayName": "Weekday Allowance", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_enabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_enabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_end", + "displayName": "End", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_rangetype", + "displayName": "Range Type", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_rangetype_0", + "displayName": "Weekday", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_rangetype_1", + "displayName": "Weekend", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_secondsperday", + "displayName": "Seconds Per Day", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-allowance_start", + "displayName": "Start", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew", + "displayName": "Weekday Curfew", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_enabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_enabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_end", + "displayName": "End", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_rangetype", + "displayName": "Range Type", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_rangetype_0", + "displayName": "Weekday", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_rangetype_1", + "displayName": "Weekend", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_secondsperday", + "displayName": "Seconds Per Day", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekday-curfew_start", + "displayName": "Start", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance", + "displayName": "Weekend Allowance", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_enabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_enabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_end", + "displayName": "End", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_rangetype", + "displayName": "Range Type", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_rangetype_0", + "displayName": "Weekday", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_rangetype_1", + "displayName": "Weekend", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_secondsperday", + "displayName": "Seconds Per Day", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-allowance_start", + "displayName": "Start", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew", + "displayName": "Weekend Curfew", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_enabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_enabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_end", + "displayName": "End", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_rangetype", + "displayName": "Range Type", + "options": [ + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_rangetype_0", + "displayName": "Weekday", + "description": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_rangetype_1", + "displayName": "Weekend", + "description": null + } + ] + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_secondsperday", + "displayName": "Seconds Per Day", + "options": null + }, + { + "id": "com.apple.familycontrols.timelimits.v2_time-limits_weekend-curfew_start", + "displayName": "Start", + "options": null + }, + { + "id": "com.apple.fileproviderd_allowmanagedfileproviderstorequestattribution", + "displayName": "Allow Managed File Providers To Request Attribution", + "options": [ + { + "id": "com.apple.fileproviderd_allowmanagedfileproviderstorequestattribution_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.fileproviderd_allowmanagedfileproviderstorequestattribution_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.fileproviderd_com.apple.fileproviderd", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.finder_com.apple.finder", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.finder_prohibitburn", + "displayName": "Prohibit Burn", + "options": [ + { + "id": "com.apple.finder_prohibitburn_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_prohibitburn_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.finder_prohibitconnectto", + "displayName": "Prohibit Connect To", + "options": [ + { + "id": "com.apple.finder_prohibitconnectto_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_prohibitconnectto_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.finder_prohibiteject", + "displayName": "Prohibit Eject", + "options": [ + { + "id": "com.apple.finder_prohibiteject_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_prohibiteject_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.finder_prohibitgotofolder", + "displayName": "Prohibit Go To Folder", + "options": [ + { + "id": "com.apple.finder_prohibitgotofolder_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_prohibitgotofolder_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.finder_showexternalharddrivesondesktop", + "displayName": "Show External Hard Drives On Desktop", + "options": [ + { + "id": "com.apple.finder_showexternalharddrivesondesktop_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_showexternalharddrivesondesktop_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.finder_showharddrivesondesktop", + "displayName": "Show Hard Drives On Desktop", + "options": [ + { + "id": "com.apple.finder_showharddrivesondesktop_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_showharddrivesondesktop_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.finder_showmountedserversondesktop", + "displayName": "Show Mounted Servers On Desktop", + "options": [ + { + "id": "com.apple.finder_showmountedserversondesktop_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_showmountedserversondesktop_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.finder_showremovablemediaondesktop", + "displayName": "Show Removable Media On Desktop", + "options": [ + { + "id": "com.apple.finder_showremovablemediaondesktop_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_showremovablemediaondesktop_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.finder_warnonemptytrash", + "displayName": "Warn On Empty Trash", + "options": [ + { + "id": "com.apple.finder_warnonemptytrash_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.finder_warnonemptytrash_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.font_com.apple.font", + "displayName": "com.apple.font", + "options": null + }, + { "id": "com.apple.font_font", "displayName": "Font", "options": null }, + { "id": "com.apple.font_name", "displayName": "Name", "options": null }, + { + "id": "com.apple.gamed_com.apple.gamed", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.gamed_gkfeatureaccountmodificationallowed", + "displayName": "GK Feature Account Modification Allowed", + "options": [ + { + "id": "com.apple.gamed_gkfeatureaccountmodificationallowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.gamed_gkfeatureaccountmodificationallowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.ldap.account_com.apple.ldap.account", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.ldap.account_ldapaccountdescription", + "displayName": "LDAP Account Description", + "options": null + }, + { + "id": "com.apple.ldap.account_ldapaccounthostname", + "displayName": "LDAP Account Host Name", + "options": null + }, + { + "id": "com.apple.ldap.account_ldapaccountpassword", + "displayName": "LDAP Account Password", + "options": null + }, + { + "id": "com.apple.ldap.account_ldapaccountusername", + "displayName": "LDAP Account User Name", + "options": null + }, + { + "id": "com.apple.ldap.account_ldapaccountusessl", + "displayName": "LDAP Account Use SSL", + "options": [ + { + "id": "com.apple.ldap.account_ldapaccountusessl_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.ldap.account_ldapaccountusessl_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.ldap.account_ldapsearchsettings", + "displayName": "LDAP Search Settings", + "options": null + }, + { + "id": "com.apple.ldap.account_ldapsearchsettings_item_ldapsearchsettingdescription", + "displayName": "LDAP Search Setting Description", + "options": null + }, + { + "id": "com.apple.ldap.account_ldapsearchsettings_item_ldapsearchsettingscope", + "displayName": "LDAP Search Setting Scope", + "options": [ + { + "id": "com.apple.ldap.account_ldapsearchsettings_item_ldapsearchsettingscope_0", + "displayName": "Base", + "description": null + }, + { + "id": "com.apple.ldap.account_ldapsearchsettings_item_ldapsearchsettingscope_1", + "displayName": "OneLevel", + "description": null + }, + { + "id": "com.apple.ldap.account_ldapsearchsettings_item_ldapsearchsettingscope_2", + "displayName": "Subtree", + "description": null + } + ] + }, + { + "id": "com.apple.ldap.account_ldapsearchsettings_item_ldapsearchsettingsearchbase", + "displayName": "LDAP Search Setting Search Base", + "options": null + }, + { + "id": "com.apple.loginitems.managed_autolaunchedapplicationdictionary-managed", + "displayName": "Auto Launch Items", + "options": null + }, + { + "id": "com.apple.loginitems.managed_autolaunchedapplicationdictionary-managed_item_hide", + "displayName": "Hide", + "options": [ + { + "id": "com.apple.loginitems.managed_autolaunchedapplicationdictionary-managed_item_hide_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginitems.managed_autolaunchedapplicationdictionary-managed_item_hide_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginitems.managed_autolaunchedapplicationdictionary-managed_item_path", + "displayName": "Path", + "options": null + }, + { + "id": "com.apple.loginitems.managed_com.apple.loginitems.managed", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.loginwindow_adminhostinfo", + "displayName": "Admin Host Info", + "options": null + }, + { + "id": "com.apple.loginwindow_allowlist", + "displayName": "Allow List", + "options": null + }, + { + "id": "com.apple.loginwindow_autologinpassword", + "displayName": "Autologin Password", + "options": null + }, + { + "id": "com.apple.loginwindow_autologinusername", + "displayName": "Autologin Username", + "options": null + }, + { + "id": "com.apple.loginwindow_com.apple.loginwindow", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.loginwindow_denylist", + "displayName": "Deny List", + "options": null + }, + { + "id": "com.apple.loginwindow_disableconsoleaccess", + "displayName": "Disable Console Access", + "options": [ + { + "id": "com.apple.loginwindow_disableconsoleaccess_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_disableconsoleaccess_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_disablescreenlockimmediate", + "displayName": "Disable Screen Lock Immediate", + "options": [ + { + "id": "com.apple.loginwindow_disablescreenlockimmediate_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_disablescreenlockimmediate_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_hideadminusers", + "displayName": "Hide Admin Users", + "options": [ + { + "id": "com.apple.loginwindow_hideadminusers_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_hideadminusers_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_hidelocalusers", + "displayName": "Hide Local Users", + "options": [ + { + "id": "com.apple.loginwindow_hidelocalusers_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_hidelocalusers_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_includenetworkuser", + "displayName": "Include Network User", + "options": [ + { + "id": "com.apple.loginwindow_includenetworkuser_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_includenetworkuser_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_loginwindowtext", + "displayName": "Login Window Text", + "options": null + }, + { + "id": "com.apple.loginwindow_logoutdisabledwhileloggedin", + "displayName": "Log Out Disabled While Logged In", + "options": [ + { + "id": "com.apple.loginwindow_logoutdisabledwhileloggedin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_logoutdisabledwhileloggedin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_poweroffdisabledwhileloggedin", + "displayName": "Power Off Disabled While Logged In", + "options": [ + { + "id": "com.apple.loginwindow_poweroffdisabledwhileloggedin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_poweroffdisabledwhileloggedin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_restartdisabled", + "displayName": "Restart Disabled", + "options": [ + { + "id": "com.apple.loginwindow_restartdisabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_restartdisabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_restartdisabledwhileloggedin", + "displayName": "Restart Disabled While Logged In", + "options": [ + { + "id": "com.apple.loginwindow_restartdisabledwhileloggedin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_restartdisabledwhileloggedin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_showfullname", + "displayName": "Show Full Name", + "options": [ + { + "id": "com.apple.loginwindow_showfullname_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_showfullname_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_showotherusers_managed", + "displayName": "Show Other Users Managed", + "options": [ + { + "id": "com.apple.loginwindow_showotherusers_managed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_showotherusers_managed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_shutdowndisabled", + "displayName": "Shut Down Disabled", + "options": [ + { + "id": "com.apple.loginwindow_shutdowndisabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_shutdowndisabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_shutdowndisabledwhileloggedin", + "displayName": "Shut Down Disabled While Logged In", + "options": [ + { + "id": "com.apple.loginwindow_shutdowndisabledwhileloggedin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_shutdowndisabledwhileloggedin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.loginwindow_sleepdisabled", + "displayName": "Sleep Disabled", + "options": [ + { + "id": "com.apple.loginwindow_sleepdisabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.loginwindow_sleepdisabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_acknowledgeddatacollectionpolicy", + "displayName": "Automatically acknowledge data collection policy", + "options": [ + { + "id": "com.apple.managedclient.preferences_acknowledgeddatacollectionpolicy_0", + "displayName": "Acknowledge - send required data", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_acknowledgeddatacollectionpolicy_1", + "displayName": "Acknowledge - send required and optional data (Deprecated)", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_addressbarmicrosoftsearchinbingproviderenabled", + "displayName": "Enable Microsoft Search in Bing suggestions in the address bar", + "options": [ + { + "id": "com.apple.managedclient.preferences_addressbarmicrosoftsearchinbingproviderenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_addressbarmicrosoftsearchinbingproviderenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads", + "options": [ + { + "id": "com.apple.managedclient.preferences_adssettingforintrusiveadssites_0", + "displayName": "Allow ads on all sites", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_adssettingforintrusiveadssites_1", + "displayName": "Block ads on sites with intrusive ads. (Default value)", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allowcertswithoutmatchingemailaddress", + "displayName": "Allow S/MIME certificates without a matching email address", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowcertswithoutmatchingemailaddress_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowcertswithoutmatchingemailaddress_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allowcrossoriginauthprompt", + "displayName": "Allow cross-origin HTTP Basic Auth prompts", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowcrossoriginauthprompt_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowcrossoriginauthprompt_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allowdeletingbrowserhistory", + "displayName": "Enable deleting browser and download history", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowdeletingbrowserhistory_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowdeletingbrowserhistory_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allowedemaildomains", + "displayName": "Allowed Email Domains", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_allowedthreats", + "displayName": "Allowed threats", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_allowfileselectiondialogs", + "displayName": "Allow file selection dialogs", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowfileselectiondialogs_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowfileselectiondialogs_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allowpopupsduringpageunload", + "displayName": "Allows a page to show popups during its unloading", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowpopupsduringpageunload_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowpopupsduringpageunload_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allowsurfgame", + "displayName": "Allow surf game", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowsurfgame_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowsurfgame_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allowsyncxhrinpagedismissal", + "displayName": "Allow pages to send synchronous XHR requests during page dismissal", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowsyncxhrinpagedismissal_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowsyncxhrinpagedismissal_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_allowtrackingforurls", + "displayName": "Configure tracking prevention exceptions for specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_allowvisualbasictobindtosystem", + "displayName": "Allow Visual Basic macros to use system APIs", + "options": [ + { + "id": "com.apple.managedclient.preferences_allowvisualbasictobindtosystem_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_allowvisualbasictobindtosystem_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_alternateerrorpagesenabled", + "displayName": "Suggest similar pages when a webpage can’t be found", + "options": [ + { + "id": "com.apple.managedclient.preferences_alternateerrorpagesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_alternateerrorpagesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_alwaysopenpdfexternally", + "displayName": "Always open PDF files externally", + "options": [ + { + "id": "com.apple.managedclient.preferences_alwaysopenpdfexternally_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_alwaysopenpdfexternally_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for InPrivate and Guest profiles", + "options": [ + { + "id": "com.apple.managedclient.preferences_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Enable ambient authentication in regular sessions only.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enable ambient authentication in InPrivate and regular sessions", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_ambientauthenticationinprivatemodesenabled_2", + "displayName": "Enable ambient authentication in guest and regular sessions", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_ambientauthenticationinprivatemodesenabled_3", + "displayName": "Enable ambient authentication in regular, InPrivate and guest sessions", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_appcacheforceenabled", + "displayName": "Allows the AppCache feature to be re-enabled, even if it's turned off by default", + "options": [ + { + "id": "com.apple.managedclient.preferences_appcacheforceenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_appcacheforceenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem", + "displayName": "Applications", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app", + "displayName": "Company Portal", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_application id", + "displayName": "Company Portal Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_lcid", + "displayName": "Company Portal LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_company portal.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app", + "displayName": "Microsoft Defender ATP (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_application id", + "displayName": "Microsoft Defender ATP Application ID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_lcid", + "displayName": "Microsoft Defender ATP LCID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_manifestserver", + "displayName": "Update channel override (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender atp.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app", + "displayName": "Microsoft Defender", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_application id", + "displayName": "Microsoft Defender Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_lcid", + "displayName": "Microsoft Defender LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft defender.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app", + "displayName": "Microsoft Edge Beta (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_application id", + "displayName": "Microsoft Edge Beta Application ID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_lcid", + "displayName": "Microsoft Edge Beta LCID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_manifestserver", + "displayName": "Update channel override (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge beta.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app", + "displayName": "Microsoft Edge Canary (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_application id", + "displayName": "Microsoft Edge Canary Application ID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_lcid", + "displayName": "Microsoft Edge Canary LCID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_manifestserver", + "displayName": "Update channel override (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge canary.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app", + "displayName": "Microsoft Edge Dev (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_application id", + "displayName": "Microsoft Edge Dev Application ID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_lcid", + "displayName": "Microsoft Edge Dev LCID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_manifestserver", + "displayName": "Update channel override (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge dev.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app", + "displayName": "Microsoft Edge (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_application id", + "displayName": "Microsoft Edge Application ID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_lcid", + "displayName": "Microsoft Edge LCID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_manifestserver", + "displayName": "Update channel override (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft edge.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app", + "displayName": "Microsoft Excel", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_application id", + "displayName": "Microsoft Excel Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_lcid", + "displayName": "Microsoft Excel LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft excel.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app", + "displayName": "Microsoft OneNote", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_application id", + "displayName": "Microsoft OneNote Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_lcid", + "displayName": "Microsoft OneNote LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft onenote.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app", + "displayName": "Microsoft Outlook", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_application id", + "displayName": "Microsoft Outlook Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_lcid", + "displayName": "Microsoft Outlook LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft outlook.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app", + "displayName": "Microsoft PowerPoint", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_application id", + "displayName": "Microsoft PowerPoint Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_lcid", + "displayName": "Microsoft PowerPoint LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft powerpoint.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app", + "displayName": "Microsoft Remote Desktop", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_application id", + "displayName": "Microsoft Remote Desktop Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_lcid", + "displayName": "Microsoft Remote Desktop LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams (work or school).app", + "displayName": "Microsoft Teams (work or school).app", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams (work or school).app_application id", + "displayName": "Microsoft Teams (work or school) Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams (work or school).app_lcid", + "displayName": "Microsoft Teams (work or school) LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams (work or school).app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams (work or school).app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams (work or school).app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams (work or school).app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams (work or school).app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams classic.app", + "displayName": "Microsoft Teams classic", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams classic.app_application id", + "displayName": "ApplicationsSystem//Applications/Microsoft Teams classic.app/Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams classic.app_lcid", + "displayName": "Microsoft Teams classic LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams classic.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams classic.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams classic.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams classic.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams classic.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app", + "displayName": "Microsoft Teams (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_application id", + "displayName": "Microsoft Teams Application ID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_lcid", + "displayName": "Microsoft Teams LCID (Deprecated)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_manifestserver", + "displayName": "Update channel override (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft teams.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app", + "displayName": "Microsoft Word", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_application id", + "displayName": "Microsoft Word Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_lcid", + "displayName": "Microsoft Word LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft word.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app", + "displayName": "OneDrive", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_application id", + "displayName": "OneDrive Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_lcid", + "displayName": "OneDrive LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_onedrive.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app", + "displayName": "Skype for Business", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_application id", + "displayName": "Skype for Business Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_lcid", + "displayName": "Skype for Business LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_applications_skype for business.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app", + "displayName": "Microsoft Auto Update", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_application id", + "displayName": "Microsoft AutoUpdate Application ID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_channelname", + "displayName": "Channel Name (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_channelname_2", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_lcid", + "displayName": "Microsoft AutoUpdate LCID", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_manifestserver", + "displayName": "Update channel override", + "options": [ + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_manifestserver_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_manifestserver_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_manifestserver_2", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app_manifestserver_3", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_audiocaptureallowed", + "displayName": "Allow or block audio capture", + "options": [ + { + "id": "com.apple.managedclient.preferences_audiocaptureallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_audiocaptureallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_audiocaptureallowedurls", + "displayName": "Sites that can access audio capture devices without requesting permission", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_audiosandboxenabled", + "displayName": "Allow the audio sandbox to run", + "options": [ + { + "id": "com.apple.managedclient.preferences_audiosandboxenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_audiosandboxenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_authnegotiatedelegateallowlist", + "displayName": "Specifies a list of servers that Microsoft Edge can delegate user credentials to", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_authschemes", + "displayName": "Supported authentication schemes", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_authserverallowlist", + "displayName": "Configure list of allowed authentication servers", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_autofilladdressenabled", + "displayName": "Enable AutoFill for addresses", + "options": [ + { + "id": "com.apple.managedclient.preferences_autofilladdressenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autofilladdressenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_autofillcreditcardenabled", + "displayName": "Enable AutoFill for credit cards", + "options": [ + { + "id": "com.apple.managedclient.preferences_autofillcreditcardenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autofillcreditcardenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_autoimportatfirstrun", + "displayName": "Automatically import another browser's data and settings at first run", + "options": [ + { + "id": "com.apple.managedclient.preferences_autoimportatfirstrun_0", + "displayName": "Automatically imports all supported datatypes and settings from the default browser", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autoimportatfirstrun_1", + "displayName": "Automatically imports all supported datatypes and settings from Internet Explorer", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autoimportatfirstrun_2", + "displayName": "Automatically imports all supported datatypes and settings from Google Chrome", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autoimportatfirstrun_3", + "displayName": "Automatically imports all supported datatypes and settings from Safari", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autoimportatfirstrun_4", + "displayName": "Disables automatic import, and the import section of the first-run experience is skipped", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autoimportatfirstrun_5", + "displayName": "Automatically imports all supported datatypes and settings from Mozilla Firefox", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_automaticallydownloadexternalcontent", + "displayName": "Download embedded images", + "options": [ + { + "id": "com.apple.managedclient.preferences_automaticallydownloadexternalcontent_0", + "displayName": "Never download images", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_automaticallydownloadexternalcontent_1", + "displayName": "Automatically download images from users in the address book", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_automaticallydownloadexternalcontent_2", + "displayName": "Always download images regardless of sender", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_automaticdefinitionupdateenabled", + "displayName": "Automatic security intelligence updates", + "options": [ + { + "id": "com.apple.managedclient.preferences_automaticdefinitionupdateenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_automaticdefinitionupdateenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_automaticsamplesubmission", + "displayName": "Enable / disable automatic sample submissions", + "options": [ + { + "id": "com.apple.managedclient.preferences_automaticsamplesubmission_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_automaticsamplesubmission_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_automaticuploadbandwidthpercentage", + "displayName": "Automatic upload bandwidth percentage", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_autoopenallowedforurls", + "displayName": "URLs where AutoOpenFileTypes can apply", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_autoopenfiletypes", + "displayName": "List of file types that should be automatically opened on download", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_autoplayallowed", + "displayName": "Allow media autoplay for websites", + "options": [ + { + "id": "com.apple.managedclient.preferences_autoplayallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_autoplayallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_autoselectcertificateforurls", + "displayName": "Automatically select client certificates for these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_backgroundtemplatelistupdatesenabled", + "displayName": "Enables background updates to the list of available templates for Collections and other features that use templates", + "options": [ + { + "id": "com.apple.managedclient.preferences_backgroundtemplatelistupdatesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_backgroundtemplatelistupdatesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_basicauthoverhttpenabled", + "displayName": "Allow Basic authentication for HTTP", + "options": [ + { + "id": "com.apple.managedclient.preferences_basicauthoverhttpenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_basicauthoverhttpenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_bingadssuppression", + "displayName": "Block all ads on Bing search results", + "options": [ + { + "id": "com.apple.managedclient.preferences_bingadssuppression_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_bingadssuppression_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_blockexternalextensions", + "displayName": "Blocks external extensions from being installed", + "options": [ + { + "id": "com.apple.managedclient.preferences_blockexternalextensions_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_blockexternalextensions_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_blockexternalsync", + "displayName": "Block external sync", + "options": [ + { + "id": "com.apple.managedclient.preferences_blockexternalsync_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_blockexternalsync_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_blockthirdpartycookies", + "displayName": "Block third party cookies", + "options": [ + { + "id": "com.apple.managedclient.preferences_blockthirdpartycookies_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_blockthirdpartycookies_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_browseraddprofileenabled", + "displayName": "Enable profile creation from the Identity flyout menu or the Settings page", + "options": [ + { + "id": "com.apple.managedclient.preferences_browseraddprofileenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_browseraddprofileenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_browserguestmodeenabled", + "displayName": "Enable guest mode", + "options": [ + { + "id": "com.apple.managedclient.preferences_browserguestmodeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_browserguestmodeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_browsernetworktimequeriesenabled", + "displayName": "Allow queries to a Browser Network Time service", + "options": [ + { + "id": "com.apple.managedclient.preferences_browsernetworktimequeriesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_browsernetworktimequeriesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_browsersignin", + "displayName": "Browser sign-in settings", + "options": [ + { + "id": "com.apple.managedclient.preferences_browsersignin_0", + "displayName": "Disable browser sign-in", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_browsersignin_1", + "displayName": "Enable browser sign-in", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_browsersignin_2", + "displayName": "Force users to sign-in to use the browser", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_builtincertificateverifierenabled", + "displayName": "Determines whether the built-in certificate verifier will be used to verify server certificates", + "options": [ + { + "id": "com.apple.managedclient.preferences_builtincertificateverifierenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_builtincertificateverifierenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_builtindnsclientenabled", + "displayName": "Use built-in DNS client", + "options": [ + { + "id": "com.apple.managedclient.preferences_builtindnsclientenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_builtindnsclientenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_calendarfirstdayofweek", + "displayName": "Specify first day of the week", + "options": [ + { + "id": "com.apple.managedclient.preferences_calendarfirstdayofweek_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_calendarfirstdayofweek_1", + "displayName": "Monday", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_calendarfirstdayofweek_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_calendarfirstdayofweek_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_calendarfirstdayofweek_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_calendarfirstdayofweek_5", + "displayName": "Friday", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_calendarfirstdayofweek_6", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_certificatetransparencyenforcementdisabledforcas", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_certificatetransparencyenforcementdisabledforlegacycas", + "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_certificatetransparencyenforcementdisabledforurls", + "displayName": "Disable Certificate Transparency enforcement for specific URLs", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_channelname", + "displayName": "Update channel", + "options": [ + { + "id": "com.apple.managedclient.preferences_channelname_0", + "displayName": "Current Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_channelname_1", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_channelname_2", + "displayName": "Current Channel (Deferred)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_channelname_3", + "displayName": "Beta Channel", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_channelname_4", + "displayName": "Current Channel (Monthly)", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_clearbrowsingdataonexit", + "displayName": "Clear browsing data when Microsoft Edge closes", + "options": [ + { + "id": "com.apple.managedclient.preferences_clearbrowsingdataonexit_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_clearbrowsingdataonexit_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_clearcachedimagesandfilesonexit", + "displayName": "Clear cached images and files when Microsoft Edge closes", + "options": [ + { + "id": "com.apple.managedclient.preferences_clearcachedimagesandfilesonexit_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_clearcachedimagesandfilesonexit_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_cloudblocklevel", + "displayName": "Cloud Block Level", + "options": [ + { + "id": "com.apple.managedclient.preferences_cloudblocklevel_0", + "displayName": "normal", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_cloudblocklevel_1", + "displayName": "moderate", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_cloudblocklevel_2", + "displayName": "high", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_cloudblocklevel_3", + "displayName": "high_plus", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_cloudblocklevel_4", + "displayName": "zero_tolerance", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_collectionsservicesandexportsblocklist", + "displayName": "Block access to a specified list of services and export targets in Collections", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_commandlineflagsecuritywarningsenabled", + "displayName": "Enable security warnings for command-line flags", + "options": [ + { + "id": "com.apple.managedclient.preferences_commandlineflagsecuritywarningsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_commandlineflagsecuritywarningsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_componentupdatesenabled", + "displayName": "Enable component updates in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_componentupdatesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_componentupdatesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_configuredonottrack", + "displayName": "Configure Do Not Track", + "options": [ + { + "id": "com.apple.managedclient.preferences_configuredonottrack_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_configuredonottrack_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_configurefriendlyurlformat", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users", + "options": [ + { + "id": "com.apple.managedclient.preferences_configurefriendlyurlformat_0", + "displayName": "The plain URL without any extra information, such as the page's title. This is the recommended option when this policy is configured. For more information, see the description.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_configurefriendlyurlformat_1", + "displayName": "Titled Hyperlink: A hyperlink that points to the copied URL, but whose visible text is the title of the destination page. This is the Friendly URL format.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_configurefriendlyurlformat_2", + "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_configureonlinetexttospeech", + "displayName": "Configure Online Text To Speech", + "options": [ + { + "id": "com.apple.managedclient.preferences_configureonlinetexttospeech_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_configureonlinetexttospeech_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_consumerexperience", + "displayName": "Control sign-in to consumer version", + "options": [ + { + "id": "com.apple.managedclient.preferences_consumerexperience_0", + "displayName": "enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_consumerexperience_1", + "displayName": "disabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_cookiesallowedforurls", + "displayName": "Allow cookies on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_cookiesblockedforurls", + "displayName": "Block cookies on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_cookiessessiononlyforurls", + "displayName": "Limit cookies from specific websites to the current session", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_customhelplink", + "displayName": "Specify custom help link", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_datalossprevention", + "displayName": "Use Data Loss Prevention", + "options": [ + { + "id": "com.apple.managedclient.preferences_datalossprevention_0", + "displayName": "enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_datalossprevention_1", + "displayName": "disabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultbrowsersettingenabled", + "displayName": "Set Microsoft Edge as default browser", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultbrowsersettingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultbrowsersettingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultcookiessetting", + "displayName": "Configure cookies", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultcookiessetting_0", + "displayName": "Let all sites create cookies", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultcookiessetting_1", + "displayName": "Don't let any site create cookies", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultcookiessetting_2", + "displayName": "Keep cookies for the duration of the session", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultemailaddressordomain", + "displayName": "Default domain name", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultfilesystemreadguardsetting_0", + "displayName": "Don't allow any site to request read access to files and directories via the File System API", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultfilesystemreadguardsetting_1", + "displayName": "Allow sites to ask the user to grant read access to files and directories via the File System API", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultfilesystemwriteguardsetting_0", + "displayName": "Don't allow any site to request write access to files and directories", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultfilesystemwriteguardsetting_1", + "displayName": "Allow sites to ask the user to grant write access to files and directories", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultgeolocationsetting", + "displayName": "Default geolocation setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultgeolocationsetting_0", + "displayName": "Allow sites to track users' physical location", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultgeolocationsetting_1", + "displayName": "Don't allow any site to track users' physical location", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultgeolocationsetting_2", + "displayName": "Ask whenever a site wants to track users' physical location", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultimagessetting", + "displayName": "Default images setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultimagessetting_0", + "displayName": "Allow all sites to show all images", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultimagessetting_1", + "displayName": "Don't allow any site to show images", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultinsecurecontentsetting_0", + "displayName": "Do not allow any site to load mixed content", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultinsecurecontentsetting_1", + "displayName": "Allow users to add exceptions to allow mixed content", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultjavascriptsetting", + "displayName": "Default JavaScript setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultjavascriptsetting_0", + "displayName": "Allow all sites to run JavaScript", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultjavascriptsetting_1", + "displayName": "Don't allow any site to run JavaScript", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultnotificationssetting", + "displayName": "Default notification setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultnotificationssetting_0", + "displayName": "Allow sites to show desktop notifications", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultnotificationssetting_1", + "displayName": "Don't allow any site to show desktop notifications", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultnotificationssetting_2", + "displayName": "Ask every time a site wants to show desktop notifications", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultpluginssetting", + "displayName": "Default Adobe Flash setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultpluginssetting_0", + "displayName": "Block the Adobe Flash plugin", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultpluginssetting_1", + "displayName": "Click to play", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultpopupssetting", + "displayName": "Default pop-up window setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultpopupssetting_0", + "displayName": "Allow all sites to show pop-ups", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultpopupssetting_1", + "displayName": "Do not allow any site to show popups", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultprinterselection", + "displayName": "Default printer selection rules", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchprovidercontextmenuaccessallowed", + "displayName": "Allow default search provider context menu search access", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultsearchprovidercontextmenuaccessallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchprovidercontextmenuaccessallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchproviderenabled", + "displayName": "Enable the default search provider", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultsearchproviderenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchproviderenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchproviderencodings", + "displayName": "Default search provider encodings", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchproviderimageurl", + "displayName": "Specifies the search-by-image feature for the default search provider", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for an image URL that uses POST", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchprovidername", + "displayName": "Default search provider name", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsearchprovidersuggesturl", + "displayName": "Default search provider URL for suggestions", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsensorssetting", + "displayName": "Default sensors setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultsensorssetting_0", + "displayName": "Allow sites to access sensors", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultsensorssetting_1", + "displayName": "Do not allow any site to access sensors", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultserialguardsetting", + "displayName": "Control use of the Serial API", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultserialguardsetting_0", + "displayName": "Do not allow any site to request access to serial ports via the Serial API", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultserialguardsetting_1", + "displayName": "Allow sites to ask for user permission to access a serial port", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultstolocalopensave", + "displayName": "Default to local files for open/save", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultstolocalopensave_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultstolocalopensave_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultweatherlocation", + "displayName": "Default weather location", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultwebbluetoothguardsetting_0", + "displayName": "Do not allow any site to request access to Bluetooth devices via the Web Bluetooth API", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultwebbluetoothguardsetting_1", + "displayName": "Allow sites to ask the user to grant access to a nearby Bluetooth device", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API", + "options": [ + { + "id": "com.apple.managedclient.preferences_defaultwebusbguardsetting_0", + "displayName": "Do not allow any site to request access to USB devices via the WebUSB API", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_defaultwebusbguardsetting_1", + "displayName": "Allow sites to ask the user to grant access to a connected USB device", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_developertoolsavailability", + "displayName": "Control where developer tools can be used", + "options": [ + { + "id": "com.apple.managedclient.preferences_developertoolsavailability_0", + "displayName": "Block the developer tools on extensions installed by enterprise policy, allow in other contexts", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_developertoolsavailability_1", + "displayName": "Allow using the developer tools", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_developertoolsavailability_2", + "displayName": "Don't allow using the developer tools", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_diagnosticdata", + "displayName": "Send required and optional diagnostic data about browser usage", + "options": [ + { + "id": "com.apple.managedclient.preferences_diagnosticdata_0", + "displayName": "Off (Not recommended)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_diagnosticdata_1", + "displayName": "Required data", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_diagnosticdata_2", + "displayName": "Optional data", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_diagnosticdatatypepreference", + "displayName": "Diagnostic data level", + "options": [ + { + "id": "com.apple.managedclient.preferences_diagnosticdatatypepreference_0", + "displayName": "Required data only", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_diagnosticdatatypepreference_1", + "displayName": "Required and Optional data", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_diagnosticdatatypepreference_2", + "displayName": "Do not send data", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_diagnosticlevel", + "displayName": "Diagnostic collection level", + "options": [ + { + "id": "com.apple.managedclient.preferences_diagnosticlevel_0", + "displayName": "optional", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_diagnosticlevel_1", + "displayName": "required", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disable3dapis", + "displayName": "Disable support for 3D graphics APIs", + "options": [ + { + "id": "com.apple.managedclient.preferences_disable3dapis_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disable3dapis_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disableauthnegotiatecnamelookup", + "displayName": "Disable CNAME lookup when negotiating Kerberos authentication", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableauthnegotiatecnamelookup_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableauthnegotiatecnamelookup_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disableautoconfig", + "displayName": "Disable automatic sign in", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableautoconfig_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableautoconfig_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablecloudfonts", + "displayName": "Disable cloud fonts", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablecloudfonts_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablecloudfonts_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disabledonotforward", + "displayName": "Disable 'Do Not Forward' options", + "options": [ + { + "id": "com.apple.managedclient.preferences_disabledonotforward_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disabledonotforward_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disableencryptonly", + "displayName": "Disable Microsoft 365 encryption options", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableencryptonly_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableencryptonly_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disableexport", + "displayName": "Disable export to OLM files", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableexport_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableexport_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablehydrationtoast", + "displayName": "Disable download toasts", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablehydrationtoast_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablehydrationtoast_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disableimport", + "displayName": "Disable import from OLM and PST files", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableimport_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableimport_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disableinsidercheckbox", + "displayName": "Disable Office Insider membership", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableinsidercheckbox_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableinsidercheckbox_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablepersonalsync", + "displayName": "Disable personal accounts", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablepersonalsync_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablepersonalsync_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablerespondtomeetingwithoutresponse", + "displayName": "Disable 'Do not send response'", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablerespondtomeetingwithoutresponse_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablerespondtomeetingwithoutresponse_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablescreenshots", + "displayName": "Disable taking screenshots", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablescreenshots_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablescreenshots_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablesignatures", + "displayName": "Disable email signatures", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablesignatures_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablesignatures_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disableskypemeeting", + "displayName": "Disable Skype for Business meeting support", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableskypemeeting_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableskypemeeting_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablesmimecompose", + "displayName": "Disable S/MIME", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablesmimecompose_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablesmimecompose_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disableteamsmeeting", + "displayName": "Disable Microsoft Teams meeting support", + "options": [ + { + "id": "com.apple.managedclient.preferences_disableteamsmeeting_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disableteamsmeeting_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disabletutorial", + "displayName": "Disable tutorial", + "options": [ + { + "id": "com.apple.managedclient.preferences_disabletutorial_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disabletutorial_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablevisualbasicexternaldylibs", + "displayName": "Prevent Visual Basic macros from using external dynamic libraries", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablevisualbasicexternaldylibs_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablevisualbasicexternaldylibs_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablevisualbasicmacscript", + "displayName": "Prevent Visual Basic macros from using legacy MacScript", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablevisualbasicmacscript_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablevisualbasicmacscript_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disablevisualbasictobindtopopen", + "displayName": "Prevent Visual Basic macros from using pipes to communicate", + "options": [ + { + "id": "com.apple.managedclient.preferences_disablevisualbasictobindtopopen_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_disablevisualbasictobindtopopen_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_disallowedthreatactions", + "displayName": "Disallowed threat actions", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_diskcachedir", + "displayName": "Set disk cache directory", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_diskcachesize", + "displayName": "Set disk cache size, in bytes", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_dnsinterceptionchecksenabled", + "displayName": "DNS interception checks enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_dnsinterceptionchecksenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_dnsinterceptionchecksenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_dnsoverhttpsmode", + "displayName": "Control the mode of DNS-over-HTTPS", + "options": [ + { + "id": "com.apple.managedclient.preferences_dnsoverhttpsmode_0", + "displayName": "Enable DNS-over-HTTPS with insecure fallback", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_dnsoverhttpsmode_1", + "displayName": "Disable DNS-over-HTTPS", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_dnsoverhttpsmode_2", + "displayName": "Enable DNS-over-HTTPS without insecure fallback", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_downloadbandwidthlimited", + "displayName": "Set maximum download throughput", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_downloaddirectory", + "displayName": "Set download directory", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_downloadrestrictions", + "displayName": "Allow download restrictions", + "options": [ + { + "id": "com.apple.managedclient.preferences_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_downloadrestrictions_1", + "displayName": "Block dangerous downloads", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_downloadrestrictions_2", + "displayName": "Block potentially dangerous downloads", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_earlypreview", + "displayName": "Enable / disable early preview", + "options": [ + { + "id": "com.apple.managedclient.preferences_earlypreview_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_earlypreview_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgecollectionsenabled", + "displayName": "Enable the Collections feature", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgecollectionsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgecollectionsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_edgeshoppingassistantenabled", + "displayName": "Shopping in Microsoft Edge Enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_edgeshoppingassistantenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_edgeshoppingassistantenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_editfavoritesenabled", + "displayName": "Allows users to edit favorites", + "options": [ + { + "id": "com.apple.managedclient.preferences_editfavoritesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_editfavoritesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enableallocsiclients", + "displayName": "Enable simultaneous edits for Office apps", + "options": [ + { + "id": "com.apple.managedclient.preferences_enableallocsiclients_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enableallocsiclients_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enableauthnegotiateport", + "displayName": "Include non-standard port in Kerberos SPN", + "options": [ + { + "id": "com.apple.managedclient.preferences_enableauthnegotiateport_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enableauthnegotiateport_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enablebackgroundaccessibilitychecker", + "displayName": "Background accessibility checking", + "options": [ + { + "id": "com.apple.managedclient.preferences_enablebackgroundaccessibilitychecker_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablebackgroundaccessibilitychecker_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enablecheckforupdatesbutton", + "displayName": "Enable check for updates", + "options": [ + { + "id": "com.apple.managedclient.preferences_enablecheckforupdatesbutton_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablecheckforupdatesbutton_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enabled", + "displayName": "Enable / disable cloud delivered protection", + "options": [ + { + "id": "com.apple.managedclient.preferences_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enabledeprecatedwebplatformfeatures", + "displayName": "Re-enable deprecated web platform features for a limited time", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_enabledomainactionsdownload", + "displayName": "Enable Domain Actions Download from Microsoft", + "options": [ + { + "id": "com.apple.managedclient.preferences_enabledomainactionsdownload_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enabledomainactionsdownload_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enablefilehashcomputation", + "displayName": "Enable file hash computation", + "options": [ + { + "id": "com.apple.managedclient.preferences_enablefilehashcomputation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablefilehashcomputation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enablemediarouter", + "displayName": "Enable Google Cast", + "options": [ + { + "id": "com.apple.managedclient.preferences_enablemediarouter_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablemediarouter_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enablenewoutlook", + "displayName": "Enable New Outlook", + "options": [ + { + "id": "com.apple.managedclient.preferences_enablenewoutlook_0", + "displayName": "Classic Outlook only", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablenewoutlook_1", + "displayName": "Default to Classic Outlook. Users may switch to New Outlook", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablenewoutlook_2", + "displayName": "Default to New Outlook. Users may revert to Classic Outlook", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablenewoutlook_3", + "displayName": "New Outlook only", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enableodignore", + "displayName": "Ignore named files", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_enableonlinerevocationchecks", + "displayName": "Enable online OCSP/CRL checks", + "options": [ + { + "id": "com.apple.managedclient.preferences_enableonlinerevocationchecks_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enableonlinerevocationchecks_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enablerealtimeprotection", + "displayName": "Enable real-time protection (deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_enablerealtimeprotection_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablerealtimeprotection_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enablesha1forlocalanchors", + "displayName": "Allow certificates signed using SHA-1 when issued by local trust anchors", + "options": [ + { + "id": "com.apple.managedclient.preferences_enablesha1forlocalanchors_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enablesha1forlocalanchors_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel", + "displayName": "Enforcement level", + "options": [ + { + "id": "com.apple.managedclient.preferences_enforcementlevel_0", + "displayName": "disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel_1", + "displayName": "audit", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel_2", + "displayName": "block", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel_antivirusengine", + "displayName": "Enforcement level", + "options": [ + { + "id": "com.apple.managedclient.preferences_enforcementlevel_antivirusengine_0", + "displayName": "passive", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel_antivirusengine_1", + "displayName": "on_demand", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel_antivirusengine_2", + "displayName": "real_time", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel_tamperprotection", + "displayName": "Enforcement level", + "options": [ + { + "id": "com.apple.managedclient.preferences_enforcementlevel_tamperprotection_0", + "displayName": "disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel_tamperprotection_1", + "displayName": "audit", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enforcementlevel_tamperprotection_2", + "displayName": "block", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_enterprisehardwareplatformapienabled", + "displayName": "Allow managed extensions to use the Enterprise Hardware Platform API", + "options": [ + { + "id": "com.apple.managedclient.preferences_enterprisehardwareplatformapienabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_enterprisehardwareplatformapienabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_exclusions", + "displayName": "Scan exclusions", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_$type", + "displayName": "Type", + "options": [ + { + "id": "com.apple.managedclient.preferences_exclusions_item_$type_0", + "displayName": "Path", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_$type_1", + "displayName": "File extension", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_$type_2", + "displayName": "File name", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_args_tamperprotection", + "displayName": "Process's arguments", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_extension", + "displayName": "File extension", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_isdirectory", + "displayName": "Directory (selected) or file (not selected)", + "options": [ + { + "id": "com.apple.managedclient.preferences_exclusions_item_isdirectory_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_isdirectory_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_name", + "displayName": "Name", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_path", + "displayName": "Path", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_path_tamperprotection", + "displayName": "Process path", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_signingid_tamperprotection", + "displayName": "Process's Signing Identifier", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_item_teamid_tamperprotection", + "displayName": "Process's TeamIdentifier", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusions_tamperprotection", + "displayName": "Process exclusions", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_exclusionsmergepolicy", + "displayName": "Exclusions merge", + "options": [ + { + "id": "com.apple.managedclient.preferences_exclusionsmergepolicy_0", + "displayName": "merge", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_exclusionsmergepolicy_1", + "displayName": "admin_only", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_exemptdomainfiletypepairsfromfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service", + "options": [ + { + "id": "com.apple.managedclient.preferences_experimentationandconfigurationservicecontrol_0", + "displayName": "Retrieve configurations and experiments", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_experimentationandconfigurationservicecontrol_1", + "displayName": "Retrieve configurations only", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_experimentationandconfigurationservicecontrol_2", + "displayName": "Disable communication with the Experimentation and Configuration Service", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_extendedlogging", + "displayName": "Enable extended logging", + "options": [ + { + "id": "com.apple.managedclient.preferences_extendedlogging_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_extendedlogging_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_extensionallowedtypes", + "displayName": "Configure allowed extension types", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_extensioninstallallowlist", + "displayName": "Allow specific extensions to be installed", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_extensioninstallblocklist", + "displayName": "Control which extensions cannot be installed", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_extensioninstallforcelist", + "displayName": "Control which extensions are installed silently", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_extensioninstallsources", + "displayName": "Configure extension and user script install sources", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_externalprotocoldialogshowalwaysopencheckbox", + "displayName": "Show an \"Always open\" checkbox in external protocol dialog", + "options": [ + { + "id": "com.apple.managedclient.preferences_externalprotocoldialogshowalwaysopencheckbox_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_externalprotocoldialogshowalwaysopencheckbox_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_familysafetysettingsenabled", + "displayName": "Allow users to configure Family safety", + "options": [ + { + "id": "com.apple.managedclient.preferences_familysafetysettingsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_familysafetysettingsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_favoritesbarenabled", + "displayName": "Enable favorites bar", + "options": [ + { + "id": "com.apple.managedclient.preferences_favoritesbarenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_favoritesbarenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_filesondemandenabled", + "displayName": "Enable Files On-Demand", + "options": [ + { + "id": "com.apple.managedclient.preferences_filesondemandenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_filesondemandenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_filesystemreadaskforurls", + "displayName": "Allow read access via the File System API on these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_filesystemreadblockedforurls", + "displayName": "Block read access via the File System API on these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_filesystemwriteaskforurls", + "displayName": "Allow write access to files and directories on these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_filesystemwriteblockedforurls", + "displayName": "Block write access to files and directories on these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_forcebingsafesearch", + "displayName": "Enforce Bing SafeSearch", + "options": [ + { + "id": "com.apple.managedclient.preferences_forcebingsafesearch_0", + "displayName": "Don't configure search restrictions in Bing", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forcebingsafesearch_1", + "displayName": "Configure moderate search restrictions in Bing", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forcebingsafesearch_2", + "displayName": "Configure strict search restrictions in Bing", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_forcecertificatepromptsonmultiplematches", + "displayName": "Configure whether Microsoft Edge should automatically select a certificate when there are multiple certificate matches for a site configured with \"AutoSelectCertificateForUrls\"", + "options": [ + { + "id": "com.apple.managedclient.preferences_forcecertificatepromptsonmultiplematches_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forcecertificatepromptsonmultiplematches_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_forceephemeralprofiles", + "displayName": "Enable use of ephemeral profiles", + "options": [ + { + "id": "com.apple.managedclient.preferences_forceephemeralprofiles_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forceephemeralprofiles_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_forcegooglesafesearch", + "displayName": "Enforce Google SafeSearch", + "options": [ + { + "id": "com.apple.managedclient.preferences_forcegooglesafesearch_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forcegooglesafesearch_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_forcelegacydefaultreferrerpolicy", + "displayName": "Use a default referrer policy of no-referrer-when-downgrade.", + "options": [ + { + "id": "com.apple.managedclient.preferences_forcelegacydefaultreferrerpolicy_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forcelegacydefaultreferrerpolicy_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_forcesync", + "displayName": "Force synchronization of browser data and do not show the sync consent prompt", + "options": [ + { + "id": "com.apple.managedclient.preferences_forcesync_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forcesync_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode", + "options": [ + { + "id": "com.apple.managedclient.preferences_forceyoutuberestrict_0", + "displayName": "Do not enforce Restricted Mode on YouTube", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forceyoutuberestrict_1", + "displayName": "Enforce at least Moderate Restricted Mode on YouTube", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_forceyoutuberestrict_2", + "displayName": "Enforce Strict Restricted Mode for YouTube", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_globallyscopehttpauthcacheenabled", + "displayName": "Enable globally scoped HTTP auth cache", + "options": [ + { + "id": "com.apple.managedclient.preferences_globallyscopehttpauthcacheenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_globallyscopehttpauthcacheenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_gotointranetsiteforsinglewordentryinaddressbar", + "displayName": "Force direct intranet site navigation instead of searching on single word entries in the Address Bar", + "options": [ + { + "id": "com.apple.managedclient.preferences_gotointranetsiteforsinglewordentryinaddressbar_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_gotointranetsiteforsinglewordentryinaddressbar_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_guardagainstappmodification", + "displayName": "Guard against app modification", + "options": [ + { + "id": "com.apple.managedclient.preferences_guardagainstappmodification_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_guardagainstappmodification_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_hardwareaccelerationmodeenabled", + "displayName": "Use hardware acceleration when available", + "options": [ + { + "id": "com.apple.managedclient.preferences_hardwareaccelerationmodeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_hardwareaccelerationmodeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_hidedockicon", + "displayName": "Hide dock icon", + "options": [ + { + "id": "com.apple.managedclient.preferences_hidedockicon_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_hidedockicon_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_hidefirstrunexperience", + "displayName": "Hide the First-run experience and splash screen", + "options": [ + { + "id": "com.apple.managedclient.preferences_hidefirstrunexperience_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_hidefirstrunexperience_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_hidefoldersonmycomputerrootinfolderlist", + "displayName": "Hide On My Computer folders", + "options": [ + { + "id": "com.apple.managedclient.preferences_hidefoldersonmycomputerrootinfolderlist_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_hidefoldersonmycomputerrootinfolderlist_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_hidestatusmenuicon", + "displayName": "Show / hide status menu icon", + "options": [ + { + "id": "com.apple.managedclient.preferences_hidestatusmenuicon_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_hidestatusmenuicon_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_homepageisnewtabpage", + "displayName": "Set the new tab page as the home page", + "options": [ + { + "id": "com.apple.managedclient.preferences_homepageisnewtabpage_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_homepageisnewtabpage_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_homepagelocation", + "displayName": "Configure the home page URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_howtocheck", + "displayName": "Enable AutoUpdate", + "options": [ + { + "id": "com.apple.managedclient.preferences_howtocheck_0", + "displayName": "True", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_howtocheck_1", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_howtocheck_2", + "displayName": "Manual Check", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_hstspolicybypasslist", + "displayName": "Configure the list of names that will bypass the HSTS policy check", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_imagesallowedforurls", + "displayName": "Allow images on these sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_imagesblockedforurls", + "displayName": "Block images on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_importautofillformdata", + "displayName": "Allow importing of autofill form data", + "options": [ + { + "id": "com.apple.managedclient.preferences_importautofillformdata_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importautofillformdata_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importbrowsersettings", + "displayName": "Allow importing of browser settings", + "options": [ + { + "id": "com.apple.managedclient.preferences_importbrowsersettings_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importbrowsersettings_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importcookies", + "displayName": "Allow importing of Cookies", + "options": [ + { + "id": "com.apple.managedclient.preferences_importcookies_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importcookies_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importextensions", + "displayName": "Allow importing of extensions", + "options": [ + { + "id": "com.apple.managedclient.preferences_importextensions_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importextensions_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importfavorites", + "displayName": "Allow importing of favorites", + "options": [ + { + "id": "com.apple.managedclient.preferences_importfavorites_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importfavorites_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importhistory", + "displayName": "Allow importing of browsing history", + "options": [ + { + "id": "com.apple.managedclient.preferences_importhistory_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importhistory_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importhomepage", + "displayName": "Allow importing of home page settings", + "options": [ + { + "id": "com.apple.managedclient.preferences_importhomepage_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importhomepage_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importopentabs", + "displayName": "Allow importing of open tabs", + "options": [ + { + "id": "com.apple.managedclient.preferences_importopentabs_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importopentabs_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importpaymentinfo", + "displayName": "Allow importing of payment info", + "options": [ + { + "id": "com.apple.managedclient.preferences_importpaymentinfo_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importpaymentinfo_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importsavedpasswords", + "displayName": "Allow importing of saved passwords", + "options": [ + { + "id": "com.apple.managedclient.preferences_importsavedpasswords_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importsavedpasswords_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importsearchengine", + "displayName": "Allow importing of search engine settings", + "options": [ + { + "id": "com.apple.managedclient.preferences_importsearchengine_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importsearchengine_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_importshortcuts", + "displayName": "Allow importing of shortcuts", + "options": [ + { + "id": "com.apple.managedclient.preferences_importshortcuts_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_importshortcuts_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_inprivatemodeavailability", + "displayName": "Configure InPrivate mode availability", + "options": [ + { + "id": "com.apple.managedclient.preferences_inprivatemodeavailability_0", + "displayName": "InPrivate mode available", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_inprivatemodeavailability_1", + "displayName": "InPrivate mode disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_inprivatemodeavailability_2", + "displayName": "InPrivate mode forced", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_insecurecontentallowedforurls", + "displayName": "Allow insecure content on specified sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_insecurecontentblockedforurls", + "displayName": "Block insecure content on specified sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_insecureformswarningsenabled", + "displayName": "Enable warnings for insecure forms", + "options": [ + { + "id": "com.apple.managedclient.preferences_insecureformswarningsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_insecureformswarningsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_intensivewakeupthrottlingenabled", + "displayName": "Control the IntensiveWakeUpThrottling feature", + "options": [ + { + "id": "com.apple.managedclient.preferences_intensivewakeupthrottlingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_intensivewakeupthrottlingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior", + "options": [ + { + "id": "com.apple.managedclient.preferences_intranetredirectbehavior_0", + "displayName": "Use default browser behavior.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_intranetredirectbehavior_1", + "displayName": "Disable DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_intranetredirectbehavior_2", + "displayName": "Disable DNS interception checks; allow did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_intranetredirectbehavior_3", + "displayName": "Allow DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_isolateorigins", + "displayName": "Enable site isolation for specific origins", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_javascriptallowedforurls", + "displayName": "Allow JavaScript on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_javascriptblockedforurls", + "displayName": "Block JavaScript on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_kfmblockoptin", + "displayName": "Prevent users from using the Folder Backup feature (Known Folder Move)", + "options": [ + { + "id": "com.apple.managedclient.preferences_kfmblockoptin_0", + "displayName": "No prevention", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_kfmblockoptin_1", + "displayName": "Prevent Folder Backup", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_kfmblockoptin_2", + "displayName": "Prevent Folder Backup and Redirect to local device", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_kfmblockoptout", + "displayName": "Force users to use the Folder Backup feature (Known Folder Move)", + "options": [ + { + "id": "com.apple.managedclient.preferences_kfmblockoptout_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_kfmblockoptout_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_kfmoptinwithwizard", + "displayName": "Prompt users to enable the Folder Backup feature (Known Folder Move)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_kfmsilentoptin", + "displayName": "Automatically and silently enable the Folder Backup feature (Known Folder Move)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_kfmsilentoptindesktop", + "displayName": "Include ~/Desktop in Folder Backup (Known Folder Move)", + "options": [ + { + "id": "com.apple.managedclient.preferences_kfmsilentoptindesktop_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_kfmsilentoptindesktop_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_kfmsilentoptindocuments", + "displayName": "Include ~/Documents in Folder Backup (Known Folder Move)", + "options": [ + { + "id": "com.apple.managedclient.preferences_kfmsilentoptindocuments_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_kfmsilentoptindocuments_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_kfmsilentoptinwithnotification", + "displayName": "Display a notification to users once their folders have been redirected", + "options": [ + { + "id": "com.apple.managedclient.preferences_kfmsilentoptinwithnotification_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_kfmsilentoptinwithnotification_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_kioskaddressbareditingenabled", + "displayName": "Configure address bar editing for kiosk mode public browsing experience", + "options": [ + { + "id": "com.apple.managedclient.preferences_kioskaddressbareditingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_kioskaddressbareditingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_legacysamesitecookiebehaviorenabled", + "displayName": "Enable default legacy SameSite cookie behavior setting", + "options": [ + { + "id": "com.apple.managedclient.preferences_legacysamesitecookiebehaviorenabled_0", + "displayName": "Revert to legacy SameSite behavior for cookies on all sites", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_legacysamesitecookiebehaviorenabled_1", + "displayName": "Use SameSite-by-default behavior for cookies on all sites", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_legacysamesitecookiebehaviorenabledfordomainlist", + "displayName": "Revert to legacy SameSite behavior for cookies on specified sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_localprovidersenabled", + "displayName": "Allow suggestions from local providers", + "options": [ + { + "id": "com.apple.managedclient.preferences_localprovidersenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_localprovidersenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_manifestserver", + "displayName": "Deferred updates (Deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_manifestserver_0", + "displayName": "Defer 3 days", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_1", + "displayName": "Defer 7 days", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_2", + "displayName": "Defer 14 days", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_3", + "displayName": "Defer 21 days", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_4", + "displayName": "Defer 28 days", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_5", + "displayName": "Defer 45 days", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_6", + "displayName": "Pause at 16.64 (August 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_7", + "displayName": "Pause at 16.63 (July 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_8", + "displayName": "Pause at 16.62 (June 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_9", + "displayName": "Pause at 16.61 (May 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_10", + "displayName": "Pause at 16.60 (April 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_11", + "displayName": "Pause at 16.59 (March 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_12", + "displayName": "Pause at 16.58 (February 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_13", + "displayName": "Pause at 16.57 (January 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_14", + "displayName": "Pause at 16.56 (December 2021 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_15", + "displayName": "Pause at 16.55 (November 2021 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_16", + "displayName": "Pause at 16.54 (October 2021 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_17", + "displayName": "Pause at 16.53 (September 2021 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_18", + "displayName": "Pause at 16.52 (August 2021 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_19", + "displayName": "Pause at 16.51 (July 2021 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_20", + "displayName": "Pause at 16.80 (December 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_21", + "displayName": "Pause at 16.79 (November 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_22", + "displayName": "Pause at 16.78 (October 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_23", + "displayName": "Pause at 16.77 (September 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_24", + "displayName": "Pause at 16.76 (August 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_25", + "displayName": "Pause at 16.75 (July 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_26", + "displayName": "Pause at 16.74 (June 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_27", + "displayName": "Pause at 16.73 (May 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_28", + "displayName": "Pause at 16.72 (April 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_29", + "displayName": "Pause at 16.71 (March 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_30", + "displayName": "Pause at 16.70 (February 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_31", + "displayName": "Pause at 16.69 (January 2023 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_32", + "displayName": "Pause at 16.68 (December 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_33", + "displayName": "Pause at 16.67 (November 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_34", + "displayName": "Pause at 16.66 (October 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_35", + "displayName": "Pause at 16.65 (September 2022 Release)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_manifestserver_36", + "displayName": "Change Freeze", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_maxconnectionsperproxy", + "displayName": "Maximum number of concurrent connections to the proxy server", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_maximumondemandscanthreads", + "displayName": "Degree of parallelism for on-demand scans", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_mediaroutercastallowallips", + "displayName": "Allow Google Cast to connect to Cast devices on all IP addresses", + "options": [ + { + "id": "com.apple.managedclient.preferences_mediaroutercastallowallips_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_mediaroutercastallowallips_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_metricsreportingenabled", + "displayName": "Enable usage and crash-related data reporting", + "options": [ + { + "id": "com.apple.managedclient.preferences_metricsreportingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_metricsreportingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_nativemessagingallowlist", + "displayName": "Control which native messaging hosts users can use", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_nativemessagingblocklist", + "displayName": "Configure native messaging block list", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_nativemessaginguserlevelhosts", + "displayName": "Allow user-level native messaging hosts (installed without admin permissions)", + "options": [ + { + "id": "com.apple.managedclient.preferences_nativemessaginguserlevelhosts_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_nativemessaginguserlevelhosts_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_networkpredictionoptions", + "displayName": "Enable network prediction", + "options": [ + { + "id": "com.apple.managedclient.preferences_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular. (Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_networkpredictionoptions_2", + "displayName": "Don't predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_newtabpageallowedbackgroundtypes", + "displayName": "Configure the background types allowed for the new tab page layout", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpageallowedbackgroundtypes_0", + "displayName": "Disable daily background image type", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpageallowedbackgroundtypes_1", + "displayName": "Disable custom background image type", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpageallowedbackgroundtypes_2", + "displayName": "Disable all background image types", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_newtabpagehidedefaulttopsites", + "displayName": "Hide the default top sites from the new tab page", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpagehidedefaulttopsites_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagehidedefaulttopsites_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_newtabpagelocation", + "displayName": "Configure the new tab page URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpageprerenderenabled", + "displayName": "Enable preload of the new tab page for faster rendering", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpageprerenderenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpageprerenderenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_newtabpagesearchbox", + "displayName": "Configure the new tab page search box experience", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpagesearchbox_0", + "displayName": "Search box (Recommended)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagesearchbox_1", + "displayName": "Address bar", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_newtabpagesetfeedtype", + "displayName": "Configure the Microsoft Edge new tab page experience", + "options": [ + { + "id": "com.apple.managedclient.preferences_newtabpagesetfeedtype_0", + "displayName": "Microsoft News feed experience", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_newtabpagesetfeedtype_1", + "displayName": "Office 365 feed experience", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_notificationsallowedforurls", + "displayName": "Allow notifications on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_notificationsblockedforurls", + "displayName": "Block notifications on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_npssurveydisabled", + "displayName": "Disable user surveys", + "options": [ + { + "id": "com.apple.managedclient.preferences_npssurveydisabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_npssurveydisabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_ntlmv2enabled", + "displayName": "Control whether NTLMv2 authentication is enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_ntlmv2enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_ntlmv2enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_officeactivationemailaddress", + "displayName": "Office Activation Email Address", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_officeautosignin", + "displayName": "Enable automatic sign-in", + "options": [ + { + "id": "com.apple.managedclient.preferences_officeautosignin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_officeautosignin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_officeexperiencesanalyzingcontentpreference", + "displayName": "Allow experiences and functionality that analyzes user content", + "options": [ + { + "id": "com.apple.managedclient.preferences_officeexperiencesanalyzingcontentpreference_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_officeexperiencesanalyzingcontentpreference_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_officeexperiencesdownloadingcontentpreference", + "displayName": "Allow experiences and functionality that downloads user content", + "options": [ + { + "id": "com.apple.managedclient.preferences_officeexperiencesdownloadingcontentpreference_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_officeexperiencesdownloadingcontentpreference_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_officewebaddindisableomexcatalog", + "displayName": "Disable third-party store add-in catalog", + "options": [ + { + "id": "com.apple.managedclient.preferences_officewebaddindisableomexcatalog_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_officewebaddindisableomexcatalog_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_oldisablejunkoptionsprefkey", + "displayName": "Disable Junk settings", + "options": [ + { + "id": "com.apple.managedclient.preferences_oldisablejunkoptionsprefkey_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_oldisablejunkoptionsprefkey_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_openatlogin", + "displayName": "Open at login", + "options": [ + { + "id": "com.apple.managedclient.preferences_openatlogin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_openatlogin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_optionalconnectedexperiencespreference", + "displayName": "Allow optional connected experiences", + "options": [ + { + "id": "com.apple.managedclient.preferences_optionalconnectedexperiencespreference_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_optionalconnectedexperiencespreference_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_overridesecurityrestrictionsoninsecureorigin", + "displayName": "Control where security restrictions on insecure origins apply", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_passivemode", + "displayName": "Enable passive mode (deprecated)", + "options": [ + { + "id": "com.apple.managedclient.preferences_passivemode_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_passivemode_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_passwordmanagerenabled", + "displayName": "Enable saving passwords to the password manager", + "options": [ + { + "id": "com.apple.managedclient.preferences_passwordmanagerenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_passwordmanagerenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_passwordmonitorallowed", + "displayName": "Allow Microsoft Edge to monitor user passwords", + "options": [ + { + "id": "com.apple.managedclient.preferences_passwordmonitorallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_passwordmonitorallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_passwordprotectionloginurls", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture fingerprint of password", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_passwordprotectionwarningtrigger", + "displayName": "Configure password protection warning trigger", + "options": [ + { + "id": "com.apple.managedclient.preferences_passwordprotectionwarningtrigger_0", + "displayName": "Password protection warning is off", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_passwordprotectionwarningtrigger_1", + "displayName": "Password protection warning is triggered by password reuse", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_passwordrevealenabled", + "displayName": "Enable Password reveal button", + "options": [ + { + "id": "com.apple.managedclient.preferences_passwordrevealenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_passwordrevealenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_paymentmethodqueryenabled", + "displayName": "Allow websites to query for available payment methods", + "options": [ + { + "id": "com.apple.managedclient.preferences_paymentmethodqueryenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_paymentmethodqueryenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_personalizationreportingenabled", + "displayName": "Allow personalization of ads, search and news by sending browsing history to Microsoft", + "options": [ + { + "id": "com.apple.managedclient.preferences_personalizationreportingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_personalizationreportingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_phoenixonboardingflowfrelaunched", + "displayName": "Hide the 'Personalize the new Outlook' dialog", + "options": [ + { + "id": "com.apple.managedclient.preferences_phoenixonboardingflowfrelaunched_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_phoenixonboardingflowfrelaunched_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_pluginsblockedforurls", + "displayName": "Block the Adobe Flash plug-in on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_popupsallowedforurls", + "displayName": "Allow pop-up windows on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_popupsblockedforurls", + "displayName": "Block pop-up windows on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_preventsmartscreenpromptoverride", + "displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites", + "options": [ + { + "id": "com.apple.managedclient.preferences_preventsmartscreenpromptoverride_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_preventsmartscreenpromptoverride_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_preventsmartscreenpromptoverrideforfiles", + "displayName": "Prevent bypassing of Microsoft Defender SmartScreen warnings about downloads", + "options": [ + { + "id": "com.apple.managedclient.preferences_preventsmartscreenpromptoverrideforfiles_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_preventsmartscreenpromptoverrideforfiles_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_printertypedenylist", + "displayName": "Disable printer types on the deny list", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_printheaderfooter", + "displayName": "Print headers and footers", + "options": [ + { + "id": "com.apple.managedclient.preferences_printheaderfooter_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printheaderfooter_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_printingenabled", + "displayName": "Enable printing", + "options": [ + { + "id": "com.apple.managedclient.preferences_printingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_printpreviewusesystemdefaultprinter", + "displayName": "Set the system default printer as the default printer", + "options": [ + { + "id": "com.apple.managedclient.preferences_printpreviewusesystemdefaultprinter_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_printpreviewusesystemdefaultprinter_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_proactiveauthenabled", + "displayName": "Enable Proactive Authentication", + "options": [ + { + "id": "com.apple.managedclient.preferences_proactiveauthenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proactiveauthenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_promotionaltabsenabled", + "displayName": "Enable full-tab promotional content", + "options": [ + { + "id": "com.apple.managedclient.preferences_promotionaltabsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_promotionaltabsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_promptfordownloadlocation", + "displayName": "Ask where to save downloaded files", + "options": [ + { + "id": "com.apple.managedclient.preferences_promptfordownloadlocation_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_promptfordownloadlocation_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_proxybypasslist", + "displayName": "Configure proxy bypass rules", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_proxymode", + "displayName": "Configure proxy server settings", + "options": [ + { + "id": "com.apple.managedclient.preferences_proxymode_0", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proxymode_1", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proxymode_2", + "displayName": "Use a .pac proxy script", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proxymode_3", + "displayName": "Use fixed proxy servers", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_proxymode_4", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_proxypacurl", + "displayName": "Set the proxy .pac file URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_proxyserver", + "displayName": "Configure address or URL of proxy server", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_quicallowed", + "displayName": "Allow QUIC protocol", + "options": [ + { + "id": "com.apple.managedclient.preferences_quicallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_quicallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_relaunchnotification", + "displayName": "Notify a user that a browser restart is recommended or required for pending updates", + "options": [ + { + "id": "com.apple.managedclient.preferences_relaunchnotification_0", + "displayName": "Recommended - Show a recurring prompt to the user indicating that a restart is recommended", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_relaunchnotification_1", + "displayName": "Required - Show a recurring prompt to the user indicating that a restart is required", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_relaunchnotificationperiod", + "displayName": "Set the time period for update notifications", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_resolvenavigationerrorsusewebservice", + "displayName": "Enable resolution of navigation errors using a web service", + "options": [ + { + "id": "com.apple.managedclient.preferences_resolvenavigationerrorsusewebservice_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_resolvenavigationerrorsusewebservice_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_restoreonstartup", + "displayName": "Action to take on startup", + "options": [ + { + "id": "com.apple.managedclient.preferences_restoreonstartup_0", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_restoreonstartup_1", + "displayName": "Open a list of URLs", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_restoreonstartup_2", + "displayName": "Open a new tab", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_restoreonstartupurls", + "displayName": "Sites to open when the browser starts", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_restrictsignintopattern", + "displayName": "Restrict which accounts can be used as Microsoft Edge primary accounts", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_runallflashinallowmode", + "displayName": "Extend Adobe Flash content setting to all content", + "options": [ + { + "id": "com.apple.managedclient.preferences_runallflashinallowmode_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_runallflashinallowmode_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_savecookiesonexit", + "displayName": "Save cookies when Microsoft Edge closes", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_savingbrowserhistorydisabled", + "displayName": "Disable saving browser history", + "options": [ + { + "id": "com.apple.managedclient.preferences_savingbrowserhistorydisabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_savingbrowserhistorydisabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_scanafterdefinitionupdate", + "displayName": "Run a scan after definitions are updated", + "options": [ + { + "id": "com.apple.managedclient.preferences_scanafterdefinitionupdate_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_scanafterdefinitionupdate_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_scanarchives", + "displayName": "Scanning inside archive files", + "options": [ + { + "id": "com.apple.managedclient.preferences_scanarchives_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_scanarchives_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_scanhistorymaximumitems", + "displayName": "Scan history size", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_scanresultsretentiondays", + "displayName": "Scan results retention", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_screencaptureallowed", + "displayName": "Allow or deny screen capture", + "options": [ + { + "id": "com.apple.managedclient.preferences_screencaptureallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_screencaptureallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_scrolltotextfragmentenabled", + "displayName": "Enable scrolling to text specified in URL fragments", + "options": [ + { + "id": "com.apple.managedclient.preferences_scrolltotextfragmentenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_scrolltotextfragmentenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_searchsuggestenabled", + "displayName": "Enable search suggestions", + "options": [ + { + "id": "com.apple.managedclient.preferences_searchsuggestenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_searchsuggestenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_securitykeypermitattestation", + "displayName": "Websites or domains that don't need permission to use direct Security Key attestation", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_sendsiteinfotoimproveservices", + "displayName": "Send site information to improve Microsoft services", + "options": [ + { + "id": "com.apple.managedclient.preferences_sendsiteinfotoimproveservices_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sendsiteinfotoimproveservices_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_sensorsallowedforurls", + "displayName": "Allow access to sensors on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_sensorsblockedforurls", + "displayName": "Block access to sensors on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_serialaskforurls", + "displayName": "Allow the Serial API on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_serialblockedforurls", + "displayName": "Block the Serial API on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_sharepointonpremfrontdoorurl", + "displayName": "SharePoint Server Front Door URL", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_sharepointonpremprioritizationpolicy", + "displayName": "SharePoint Prioritization", + "options": [ + { + "id": "com.apple.managedclient.preferences_sharepointonpremprioritizationpolicy_0", + "displayName": "Prioritize SharePoint Online", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sharepointonpremprioritizationpolicy_1", + "displayName": "Prioritize SharePoint Server", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_sharepointonpremtenantname", + "displayName": "SharePoint Server Tenant Name", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_showcasticonintoolbar", + "displayName": "Show the cast icon in the toolbar", + "options": [ + { + "id": "com.apple.managedclient.preferences_showcasticonintoolbar_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showcasticonintoolbar_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_showdocstageonlaunch", + "displayName": "Show Template Gallery on app launch", + "options": [ + { + "id": "com.apple.managedclient.preferences_showdocstageonlaunch_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showdocstageonlaunch_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_showhomebutton", + "displayName": "Show Home button on toolbar", + "options": [ + { + "id": "com.apple.managedclient.preferences_showhomebutton_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showhomebutton_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_showmicrosoftrewards", + "displayName": "Show Microsoft Rewards experiences", + "options": [ + { + "id": "com.apple.managedclient.preferences_showmicrosoftrewards_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showmicrosoftrewards_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_showofficeshortcutinfavoritesbar", + "displayName": "Show Microsoft Office shortcut in favorites bar", + "options": [ + { + "id": "com.apple.managedclient.preferences_showofficeshortcutinfavoritesbar_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showofficeshortcutinfavoritesbar_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_showwhatsnewonlaunch", + "displayName": "Show Whats New dialog", + "options": [ + { + "id": "com.apple.managedclient.preferences_showwhatsnewonlaunch_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_showwhatsnewonlaunch_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_signedhttpexchangeenabled", + "displayName": "Enable Signed HTTP Exchange (SXG) support", + "options": [ + { + "id": "com.apple.managedclient.preferences_signedhttpexchangeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_signedhttpexchangeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_siteperprocess", + "displayName": "Enable site isolation for every site", + "options": [ + { + "id": "com.apple.managedclient.preferences_siteperprocess_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_siteperprocess_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabsblockedforurls", + "displayName": "Block Sleeping Tabs on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabsenabled", + "displayName": "Configure Sleeping Tabs", + "options": [ + { + "id": "com.apple.managedclient.preferences_sleepingtabsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs", + "options": [ + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_0", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_1", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_2", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_3", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_4", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_5", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_6", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sleepingtabstimeout_7", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_smartscreenallowlistdomains", + "displayName": "Configure the list of domains for which Microsoft Defender SmartScreen won't trigger warnings", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_smartscreenenabled", + "displayName": "Configure Microsoft Defender SmartScreen", + "options": [ + { + "id": "com.apple.managedclient.preferences_smartscreenenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_smartscreenenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_smartscreenpuaenabled", + "displayName": "Configure Microsoft Defender SmartScreen to block potentially unwanted apps", + "options": [ + { + "id": "com.apple.managedclient.preferences_smartscreenpuaenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_smartscreenpuaenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_smimecertificateslookuporder", + "displayName": "Set the order in which S/MIME certificates are considered", + "options": [ + { + "id": "com.apple.managedclient.preferences_smimecertificateslookuporder_0", + "displayName": "Contacts", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_smimecertificateslookuporder_1", + "displayName": "Global Address List", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_smimecertificateslookuporder_2", + "displayName": "Device", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_smimecertificateslookuporder_3", + "displayName": "LDAP", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_speechrecognitionenabled", + "displayName": "Configure Speech Recognition", + "options": [ + { + "id": "com.apple.managedclient.preferences_speechrecognitionenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_speechrecognitionenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_spellcheckenabled", + "displayName": "Enable spellcheck", + "options": [ + { + "id": "com.apple.managedclient.preferences_spellcheckenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_spellcheckenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_sslerroroverrideallowed", + "displayName": "Allow users to proceed from the HTTPS warning page", + "options": [ + { + "id": "com.apple.managedclient.preferences_sslerroroverrideallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sslerroroverrideallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_sslversionmin", + "displayName": "Minimum TLS version enabled", + "options": [ + { + "id": "com.apple.managedclient.preferences_sslversionmin_0", + "displayName": "TLS 1.0", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sslversionmin_1", + "displayName": "TLS 1.1", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_sslversionmin_2", + "displayName": "TLS 1.2", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_startdaemononapplaunch", + "displayName": "Register app on launch", + "options": [ + { + "id": "com.apple.managedclient.preferences_startdaemononapplaunch_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_startdaemononapplaunch_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_strictermixedcontenttreatmentenabled", + "displayName": "Enable stricter treatment for mixed content", + "options": [ + { + "id": "com.apple.managedclient.preferences_strictermixedcontenttreatmentenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_strictermixedcontenttreatmentenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_suppresso365autodiscoveroverride", + "displayName": "Use domain-based autodiscover instead of Office 365", + "options": [ + { + "id": "com.apple.managedclient.preferences_suppresso365autodiscoveroverride_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_suppresso365autodiscoveroverride_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_suppressunsupportedoswarning", + "displayName": "Suppress the unsupported OS warning", + "options": [ + { + "id": "com.apple.managedclient.preferences_suppressunsupportedoswarning_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_suppressunsupportedoswarning_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_syncdisabled", + "displayName": "Disable synchronization of data using Microsoft sync services", + "options": [ + { + "id": "com.apple.managedclient.preferences_syncdisabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_syncdisabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_synctypeslistdisabled", + "displayName": "Configure the list of types that are excluded from synchronization", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_systemextensions", + "displayName": "Use System Extensions", + "options": [ + { + "id": "com.apple.managedclient.preferences_systemextensions_0", + "displayName": "enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_systemextensions_1", + "displayName": "disabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_tabfreezingenabled", + "displayName": "Allow freezing of background tabs", + "options": [ + { + "id": "com.apple.managedclient.preferences_tabfreezingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_tabfreezingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_tags", + "displayName": "Device tags", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_tags_item_key", + "displayName": "Type of tag", + "options": { + "id": "com.apple.managedclient.preferences_tags_item_key_0", + "displayName": "GROUP", + "description": null + } + }, + { + "id": "com.apple.managedclient.preferences_tags_item_value", + "displayName": "Value of tag", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_targetblankimpliesnoopener", + "displayName": "Do not set window.opener for links targeting _blank", + "options": [ + { + "id": "com.apple.managedclient.preferences_targetblankimpliesnoopener_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_targetblankimpliesnoopener_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_taskmanagerendprocessenabled", + "displayName": "Enable ending processes in the Browser task manager", + "options": [ + { + "id": "com.apple.managedclient.preferences_taskmanagerendprocessenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_taskmanagerendprocessenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_threattypesettings", + "displayName": "Threat type settings", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_threattypesettings_item_key", + "displayName": "Threat type", + "options": [ + { + "id": "com.apple.managedclient.preferences_threattypesettings_item_key_0", + "displayName": "potentially_unwanted_application", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_threattypesettings_item_key_1", + "displayName": "archive_bomb", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_threattypesettings_item_value", + "displayName": "Action to take", + "options": [ + { + "id": "com.apple.managedclient.preferences_threattypesettings_item_value_0", + "displayName": "audit", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_threattypesettings_item_value_1", + "displayName": "block", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_threattypesettings_item_value_2", + "displayName": "off", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_threattypesettingsmergepolicy", + "displayName": "Threat type settings merge", + "options": [ + { + "id": "com.apple.managedclient.preferences_threattypesettingsmergepolicy_0", + "displayName": "merge", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_threattypesettingsmergepolicy_1", + "displayName": "admin_only", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_tls13hardeningforlocalanchorsenabled", + "displayName": "Enable a TLS 1.3 security feature for local trust anchors.", + "options": [ + { + "id": "com.apple.managedclient.preferences_tls13hardeningforlocalanchorsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_tls13hardeningforlocalanchorsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_tlsciphersuitedenylist", + "displayName": "Specify the TLS cipher suites to disable", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_totalmemorylimitmb", + "displayName": "Set limit on megabytes of memory a single Microsoft Edge instance can use.", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_trackingprevention", + "displayName": "Block tracking of users' web-browsing activity", + "options": [ + { + "id": "com.apple.managedclient.preferences_trackingprevention_0", + "displayName": "Off (no tracking prevention)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_trackingprevention_1", + "displayName": "Basic (blocks harmful trackers, content and ads will be personalized)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_trackingprevention_2", + "displayName": "Balanced (blocks harmful trackers and trackers from sites user has not visited; content and ads will be less personalized)", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_trackingprevention_3", + "displayName": "Strict (blocks harmful trackers and majority of trackers from all sites; content and ads will have minimal personalization. Some parts of sites might not work)", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_translateenabled", + "displayName": "Enable Translate", + "options": [ + { + "id": "com.apple.managedclient.preferences_translateenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_translateenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_trusto365autodiscoverredirect", + "displayName": "Trust Office 365 autodiscover redirects", + "options": [ + { + "id": "com.apple.managedclient.preferences_trusto365autodiscoverredirect_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_trusto365autodiscoverredirect_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_updatecache", + "displayName": "Update cache server", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_updatecheckfrequency", + "displayName": "Update check frequency (mins)", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_updatedeadline.daysbeforeforcedquit", + "displayName": "Days before forced updates", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_updatedeadline.finalcountdown", + "displayName": "Number of minutes for the final countdown timer", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_updateroptimization", + "displayName": "Updater optimization technique", + "options": [ + { + "id": "com.apple.managedclient.preferences_updateroptimization_0", + "displayName": "Lower network overhead", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_updateroptimization_1", + "displayName": "Lower processor overhead", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_updateroptimization_2", + "displayName": "Always use full updates", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_uploadbandwidthlimited", + "displayName": "Set maximum upload throughput", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_urlallowlist", + "displayName": "Define a list of allowed URLs", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_urlblocklist", + "displayName": "Block access to a list of URLs", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_useragentclienthintsenabled", + "displayName": "Enable the User-Agent Client Hints feature", + "options": [ + { + "id": "com.apple.managedclient.preferences_useragentclienthintsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_useragentclienthintsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_userdatadir", + "displayName": "Set the user data directory", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_userfeedbackallowed", + "displayName": "Allow user feedback", + "options": [ + { + "id": "com.apple.managedclient.preferences_userfeedbackallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_userfeedbackallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_userinitiatedfeedback", + "displayName": "User initiated feedback", + "options": [ + { + "id": "com.apple.managedclient.preferences_userinitiatedfeedback_0", + "displayName": "enabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_userinitiatedfeedback_1", + "displayName": "disabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_userpreference_apptheming", + "displayName": "Set theme", + "options": [ + { + "id": "com.apple.managedclient.preferences_userpreference_apptheming_0", + "displayName": "Blue", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_userpreference_apptheming_1", + "displayName": "Purple", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_userpreference_apptheming_2", + "displayName": "Pink", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_userpreference_apptheming_3", + "displayName": "Orange", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_userpreference_apptheming_4", + "displayName": "Red", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_userpreference_apptheming_5", + "displayName": "Green", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_userpreference_maxchecklistdisplaydurationmet", + "displayName": "Hide the 'Get started with Outlook' control in the task pane", + "options": [ + { + "id": "com.apple.managedclient.preferences_userpreference_maxchecklistdisplaydurationmet_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_userpreference_maxchecklistdisplaydurationmet_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_usesystemprintdialog", + "displayName": "Print using system print dialog", + "options": [ + { + "id": "com.apple.managedclient.preferences_usesystemprintdialog_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_usesystemprintdialog_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_vbaobjectmodelistrusted", + "displayName": "Allow macros to modify Visual Basic projects", + "options": [ + { + "id": "com.apple.managedclient.preferences_vbaobjectmodelistrusted_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_vbaobjectmodelistrusted_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_verticaltabsallowed", + "displayName": "Configures availability of a vertical layout for tabs on the side of the browser", + "options": [ + { + "id": "com.apple.managedclient.preferences_verticaltabsallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_verticaltabsallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_videocaptureallowed", + "displayName": "Allow or block video capture", + "options": [ + { + "id": "com.apple.managedclient.preferences_videocaptureallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_videocaptureallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_videocaptureallowedurls", + "displayName": "Sites that can access video capture devices without requesting permission", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_visualbasicentirelydisabled", + "displayName": "Prevent all Visual Basic macros from executing", + "options": [ + { + "id": "com.apple.managedclient.preferences_visualbasicentirelydisabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_visualbasicentirelydisabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_visualbasicmacroexecutionstate", + "displayName": "Visual Basic macro policy", + "options": [ + { + "id": "com.apple.managedclient.preferences_visualbasicmacroexecutionstate_0", + "displayName": "Macros disabled by default, with warning to enable", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_visualbasicmacroexecutionstate_1", + "displayName": "Disable all macros", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_visualbasicmacroexecutionstate_2", + "displayName": "Always allow macros to run (potentially dangerous)", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_weather_update_automatically", + "displayName": "Disable automatic updating of weather location", + "options": [ + { + "id": "com.apple.managedclient.preferences_weather_update_automatically_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_weather_update_automatically_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_webcaptureenabled", + "displayName": "Enable web capture feature in Microsoft Edge", + "options": [ + { + "id": "com.apple.managedclient.preferences_webcaptureenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webcaptureenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_webrtcallowlegacytlsprotocols", + "displayName": "Allow legacy TLS/DTLS downgrade in WebRTC", + "options": [ + { + "id": "com.apple.managedclient.preferences_webrtcallowlegacytlsprotocols_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webrtcallowlegacytlsprotocols_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_webrtclocalhostiphandling", + "displayName": "Restrict exposure of local IP address by WebRTC", + "options": [ + { + "id": "com.apple.managedclient.preferences_webrtclocalhostiphandling_0", + "displayName": "Allow all interfaces. This exposes the local IP address", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webrtclocalhostiphandling_1", + "displayName": "Allow public and private interfaces over http default route. This exposes the local IP address", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webrtclocalhostiphandling_2", + "displayName": "Allow public interface over http default route. This doesn't expose the local IP address", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_webrtclocalhostiphandling_3", + "displayName": "Use TCP unless proxy server supports UDP. This doesn't expose the local IP address", + "description": null + } + ] + }, + { + "id": "com.apple.managedclient.preferences_webrtclocalipsallowedurls", + "displayName": "Manage exposure of local IP addressess by WebRTC", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_webusbaskforurls", + "displayName": "Allow WebUSB on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_webusbblockedforurls", + "displayName": "Block WebUSB on specific sites", + "options": null + }, + { + "id": "com.apple.managedclient.preferences_wpadquickcheckenabled", + "displayName": "Set WPAD optimization", + "options": [ + { + "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.filevault2_com.apple.mcx.filevault2", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcx.filevault2_defer", + "displayName": "Defer", + "options": { + "id": "com.apple.mcx.filevault2_defer_true", + "displayName": "Enabled", + "description": null + } + }, + { + "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout", + "displayName": "Defer Dont Ask At User Logout", + "options": [ + { + "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.filevault2_deferforceatuserloginmaxbypassattempts", + "displayName": "Defer Force At User Login Max Bypass Attempts", + "options": null + }, + { + "id": "com.apple.mcx.filevault2_enable", + "displayName": "Enable", + "options": [ + { + "id": "com.apple.mcx.filevault2_enable_0", + "displayName": "On", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_enable_1", + "displayName": "Off", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.filevault2_forceenableinsetupassistant", + "displayName": "Force Enable In Setup Assistant", + "options": [ + { + "id": "com.apple.mcx.filevault2_forceenableinsetupassistant_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_forceenableinsetupassistant_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.filevault2_outputpath", + "displayName": "Output Path", + "options": null + }, + { + "id": "com.apple.mcx.filevault2_password", + "displayName": "Password", + "options": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths", + "displayName": "Recovery Key Rotation In Months", + "options": [ + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_0", + "displayName": "Not configured", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_1", + "displayName": "1 month", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_2", + "displayName": "2 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_3", + "displayName": "3 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_4", + "displayName": "4 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_5", + "displayName": "5 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_6", + "displayName": "6 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_7", + "displayName": "7 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_8", + "displayName": "8 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_9", + "displayName": "9 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_10", + "displayName": "10 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_11", + "displayName": "11 months", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_12", + "displayName": "12 months", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.filevault2_showrecoverykey", + "displayName": "Show Recovery Key", + "options": [ + { + "id": "com.apple.mcx.filevault2_showrecoverykey_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_showrecoverykey_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.filevault2_usekeychain", + "displayName": "Use Keychain", + "options": [ + { + "id": "com.apple.mcx.filevault2_usekeychain_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_usekeychain_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.filevault2_userecoverykey", + "displayName": "Use Recovery Key", + "options": { + "id": "com.apple.mcx.filevault2_userecoverykey_true", + "displayName": "Enabled", + "description": null + } + }, + { + "id": "com.apple.mcx.filevault2_userentersmissinginfo", + "displayName": "User Enters Missing Info", + "options": [ + { + "id": "com.apple.mcx.filevault2_userentersmissinginfo_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx.filevault2_userentersmissinginfo_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.filevault2_username", + "displayName": "Username", + "options": null + }, + { + "id": "com.apple.mcx.timemachine_autobackup", + "displayName": "Auto Backup", + "options": [ + { + "id": "com.apple.mcx.timemachine_autobackup_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx.timemachine_autobackup_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.timemachine_backupallvolumes", + "displayName": "Backup All Volumes", + "options": [ + { + "id": "com.apple.mcx.timemachine_backupallvolumes_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx.timemachine_backupallvolumes_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.timemachine_backupdesturl", + "displayName": "Backup Destination URL", + "options": null + }, + { + "id": "com.apple.mcx.timemachine_backupsizemb", + "displayName": "Backup Size MB", + "options": null + }, + { + "id": "com.apple.mcx.timemachine_backupskipsys", + "displayName": "Backup Skip System", + "options": [ + { + "id": "com.apple.mcx.timemachine_backupskipsys_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx.timemachine_backupskipsys_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.timemachine_basepaths", + "displayName": "Base Paths", + "options": null + }, + { + "id": "com.apple.mcx.timemachine_com.apple.mcx.timemachine", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcx.timemachine_mobilebackups", + "displayName": "Mobile Backups", + "options": [ + { + "id": "com.apple.mcx.timemachine_mobilebackups_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx.timemachine_mobilebackups_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx.timemachine_skippaths", + "displayName": "Skip Paths", + "options": null + }, + { + "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass", + "displayName": "Ask For Secure Token Auth Bypass", + "options": [ + { + "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_cachedaccounts.expiry.delete.disusedseconds", + "displayName": "Expiry Delete Disused Seconds", + "options": null + }, + { + "id": "com.apple.mcx_cachedaccounts.warnoncreate.allownever", + "displayName": "Warn On Create Allow Never", + "options": [ + { + "id": "com.apple.mcx_cachedaccounts.warnoncreate.allownever_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_cachedaccounts.warnoncreate.allownever_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.cachedaccounts.createatlogin", + "displayName": "Create At Login", + "options": [ + { + "id": "com.apple.mcx_com.apple.cachedaccounts.createatlogin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.cachedaccounts.createatlogin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.cachedaccounts.warnoncreate", + "displayName": "Warn On Create", + "options": [ + { + "id": "com.apple.mcx_com.apple.cachedaccounts.warnoncreate_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.cachedaccounts.warnoncreate_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower", + "displayName": "Desktop Power", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_automatic restart on power loss", + "displayName": "Automatic Restart On Power Loss", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_automatic restart on power loss_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_automatic restart on power loss_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_disk sleep timer", + "displayName": "Disk Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_display sleep timer", + "displayName": "Display Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_dynamic power step", + "displayName": "Dynamic Power Step", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_dynamic power step_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_dynamic power step_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_reduce processor speed", + "displayName": "Reduce Processor Speed", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_reduce processor speed_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_reduce processor speed_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_system sleep timer", + "displayName": "System Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_wake on lan", + "displayName": "Wake on LAN", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_wake on lan_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_wake on lan_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_wake on modem ring", + "displayName": "Wake On Modem Ring", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_wake on modem ring_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.acpower_wake on modem ring_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule", + "displayName": "Desktop Schedule", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff", + "displayName": "Repeating Power Off", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_eventtype", + "displayName": "Event Type", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_eventtype_0", + "displayName": "Wake", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_eventtype_1", + "displayName": "Power On", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_eventtype_2", + "displayName": "Wake Power On", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_eventtype_3", + "displayName": "Sleep", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_eventtype_4", + "displayName": "Shutdown", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_eventtype_5", + "displayName": "Restart", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_time", + "displayName": "Time", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_weekdays", + "displayName": "Weekdays", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_weekdays_0", + "displayName": "Mon", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_weekdays_1", + "displayName": "Tue", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_weekdays_2", + "displayName": "Wed", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_weekdays_3", + "displayName": "Thu", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_weekdays_4", + "displayName": "Fri", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_weekdays_5", + "displayName": "Sat", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweroff_weekdays_6", + "displayName": "Sun", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron", + "displayName": "Repeating Power On", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_eventtype", + "displayName": "Event Type", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_eventtype_0", + "displayName": "Wake", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_eventtype_1", + "displayName": "Power On", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_eventtype_2", + "displayName": "Wake Power On", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_eventtype_3", + "displayName": "Sleep", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_eventtype_4", + "displayName": "Shutdown", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_eventtype_5", + "displayName": "Restart", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_time", + "displayName": "Time", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_weekdays", + "displayName": "Weekdays", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_weekdays_0", + "displayName": "Mon", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_weekdays_1", + "displayName": "Tue", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_weekdays_2", + "displayName": "Wed", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_weekdays_3", + "displayName": "Thu", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_weekdays_4", + "displayName": "Fri", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_weekdays_5", + "displayName": "Sat", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.desktop.schedule_repeatingpoweron_weekdays_6", + "displayName": "Sun", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower", + "displayName": "Laptop Power", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_automatic restart on power loss", + "displayName": "Automatic Restart On Power Loss", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_automatic restart on power loss_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_automatic restart on power loss_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_disk sleep timer", + "displayName": "Disk Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_display sleep timer", + "displayName": "Display Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_dynamic power step", + "displayName": "Dynamic Power Step", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_dynamic power step_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_dynamic power step_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_reduce processor speed", + "displayName": "Reduce Processor Speed", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_reduce processor speed_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_reduce processor speed_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_system sleep timer", + "displayName": "System Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_wake on lan", + "displayName": "Wake on LAN", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_wake on lan_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_wake on lan_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_wake on modem ring", + "displayName": "Wake On Modem Ring", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_wake on modem ring_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.acpower_wake on modem ring_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower", + "displayName": "Laptop Battery Power", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_automatic restart on power loss", + "displayName": "Automatic Restart On Power Loss", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_automatic restart on power loss_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_automatic restart on power loss_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_disk sleep timer", + "displayName": "Disk Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_display sleep timer", + "displayName": "Display Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_dynamic power step", + "displayName": "Dynamic Power Step", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_dynamic power step_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_dynamic power step_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_reduce processor speed", + "displayName": "Reduce Processor Speed", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_reduce processor speed_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_reduce processor speed_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_system sleep timer", + "displayName": "System Sleep Timer", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_wake on lan", + "displayName": "Wake on LAN", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_wake on lan_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_wake on lan_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_wake on modem ring", + "displayName": "Wake On Modem Ring", + "options": [ + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_wake on modem ring_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_com.apple.energysaver.portable.batterypower_wake on modem ring_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_com.apple.mcx-accounts", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.mcx-energysaver", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.mcx-fdefilevaultoptions", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.mcx-mobileaccounts", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcx_com.apple.mcx-timeserver", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcx_destroyfvkeyonstandby", + "displayName": "Destroy FV Key On Standby", + "options": [ + { + "id": "com.apple.mcx_destroyfvkeyonstandby_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_destroyfvkeyonstandby_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_disableguestaccount", + "displayName": "Disable Guest Account", + "options": [ + { + "id": "com.apple.mcx_disableguestaccount_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_disableguestaccount_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_dontallowfdedisable", + "displayName": "Prevent FileVault From Being Disabled", + "options": [ + { + "id": "com.apple.mcx_dontallowfdedisable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_dontallowfdedisable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_dontallowfdeenable", + "displayName": "Prevent FileVault From Being Enabled", + "options": [ + { + "id": "com.apple.mcx_dontallowfdeenable_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_dontallowfdeenable_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_enableguestaccount", + "displayName": "Enable Guest Account", + "options": [ + { + "id": "com.apple.mcx_enableguestaccount_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_enableguestaccount_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_sleepdisabled", + "displayName": "Sleep Disabled", + "options": [ + { + "id": "com.apple.mcx_sleepdisabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcx_sleepdisabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcx_timeserver", + "displayName": "Time Server", + "options": null + }, + { + "id": "com.apple.mcx_timezone", + "displayName": "Time Zone", + "options": null + }, + { + "id": "com.apple.mcxmenuextras_airport.menu", + "displayName": "AirPort", + "options": [ + { + "id": "com.apple.mcxmenuextras_airport.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_airport.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_battery.menu", + "displayName": "Battery", + "options": [ + { + "id": "com.apple.mcxmenuextras_battery.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_battery.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_bluetooth.menu", + "displayName": "Bluetooth", + "options": [ + { + "id": "com.apple.mcxmenuextras_bluetooth.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_bluetooth.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_clock.menu", + "displayName": "Clock", + "options": [ + { + "id": "com.apple.mcxmenuextras_clock.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_clock.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_com.apple.mcxmenuextras", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcxmenuextras_cpu.menu", + "displayName": "CPU", + "options": [ + { + "id": "com.apple.mcxmenuextras_cpu.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_cpu.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_delayseconds", + "displayName": "Delay Seconds", + "options": null + }, + { + "id": "com.apple.mcxmenuextras_displays.menu", + "displayName": "Displays", + "options": [ + { + "id": "com.apple.mcxmenuextras_displays.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_displays.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_eject.menu", + "displayName": "Eject", + "options": [ + { + "id": "com.apple.mcxmenuextras_eject.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_eject.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_fax.menu", + "displayName": "Fax", + "options": [ + { + "id": "com.apple.mcxmenuextras_fax.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_fax.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_homesync.menu", + "displayName": "HomeSync", + "options": [ + { + "id": "com.apple.mcxmenuextras_homesync.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_homesync.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_ichat.menu", + "displayName": "iChat", + "options": [ + { + "id": "com.apple.mcxmenuextras_ichat.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_ichat.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_ink.menu", + "displayName": "Ink", + "options": [ + { + "id": "com.apple.mcxmenuextras_ink.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_ink.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_irda.menu", + "displayName": "IrDA", + "options": [ + { + "id": "com.apple.mcxmenuextras_irda.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_irda.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_maxwaitseconds", + "displayName": "Max Wait Seconds", + "options": null + }, + { + "id": "com.apple.mcxmenuextras_pccard.menu", + "displayName": "PCCard", + "options": [ + { + "id": "com.apple.mcxmenuextras_pccard.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_pccard.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_ppp.menu", + "displayName": "PPP", + "options": [ + { + "id": "com.apple.mcxmenuextras_ppp.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_ppp.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_pppoe.menu", + "displayName": "PPPoE", + "options": [ + { + "id": "com.apple.mcxmenuextras_pppoe.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_pppoe.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_remotedesktop.menu", + "displayName": "Remote Desktop", + "options": [ + { + "id": "com.apple.mcxmenuextras_remotedesktop.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_remotedesktop.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_script menu.menu", + "displayName": "Script Menu", + "options": [ + { + "id": "com.apple.mcxmenuextras_script menu.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_script menu.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_spaces.menu", + "displayName": "Spaces", + "options": [ + { + "id": "com.apple.mcxmenuextras_spaces.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_spaces.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_sync.menu", + "displayName": "Sync", + "options": [ + { + "id": "com.apple.mcxmenuextras_sync.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_sync.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_textinput.menu", + "displayName": "Text Input", + "options": [ + { + "id": "com.apple.mcxmenuextras_textinput.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_textinput.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_timemachine.menu", + "displayName": "TimeMachine", + "options": [ + { + "id": "com.apple.mcxmenuextras_timemachine.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_timemachine.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_universalaccess.menu", + "displayName": "Universal Access", + "options": [ + { + "id": "com.apple.mcxmenuextras_universalaccess.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_universalaccess.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_user.menu", + "displayName": "User", + "options": [ + { + "id": "com.apple.mcxmenuextras_user.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_user.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_volume.menu", + "displayName": "Volume", + "options": [ + { + "id": "com.apple.mcxmenuextras_volume.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_volume.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_vpn.menu", + "displayName": "VPN", + "options": [ + { + "id": "com.apple.mcxmenuextras_vpn.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_vpn.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxmenuextras_wwan.menu", + "displayName": "WWAN", + "options": [ + { + "id": "com.apple.mcxmenuextras_wwan.menu_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxmenuextras_wwan.menu_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxprinting_allowlocalprinters", + "displayName": "Allow Local Printers", + "options": [ + { + "id": "com.apple.mcxprinting_allowlocalprinters_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxprinting_allowlocalprinters_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxprinting_com.apple.mcxprinting", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mcxprinting_defaultprinter", + "displayName": "Default Printer", + "options": null + }, + { + "id": "com.apple.mcxprinting_defaultprinter_deviceuri", + "displayName": "Device URI", + "options": null + }, + { + "id": "com.apple.mcxprinting_defaultprinter_displayname", + "displayName": "Display Name", + "options": null + }, + { + "id": "com.apple.mcxprinting_footerfontname", + "displayName": "Footer Font Name", + "options": null + }, + { + "id": "com.apple.mcxprinting_footerfontsize", + "displayName": "Footer Font Size", + "options": null + }, + { + "id": "com.apple.mcxprinting_printfooter", + "displayName": "Print Footer", + "options": [ + { + "id": "com.apple.mcxprinting_printfooter_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxprinting_printfooter_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxprinting_printmacaddress", + "displayName": "Print MAC Address", + "options": [ + { + "id": "com.apple.mcxprinting_printmacaddress_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxprinting_printmacaddress_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxprinting_requireadmintoaddprinters", + "displayName": "Require Admin To Add Printers", + "options": [ + { + "id": "com.apple.mcxprinting_requireadmintoaddprinters_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxprinting_requireadmintoaddprinters_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxprinting_requireadmintoprintlocally", + "displayName": "Require Admin To Print Locally", + "options": [ + { + "id": "com.apple.mcxprinting_requireadmintoprintlocally_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxprinting_requireadmintoprintlocally_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxprinting_showonlymanagedprinters", + "displayName": "Show Only Managed Printers", + "options": [ + { + "id": "com.apple.mcxprinting_showonlymanagedprinters_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxprinting_showonlymanagedprinters_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mcxprinting_userprinterlist", + "displayName": "User Printer List", + "options": null + }, + { + "id": "com.apple.mcxprinting_userprinterlist_printer", + "displayName": "Printer", + "options": null + }, + { + "id": "com.apple.mcxprinting_userprinterlist_printer_deviceuri", + "displayName": "Device URI", + "options": null + }, + { + "id": "com.apple.mcxprinting_userprinterlist_printer_displayname", + "displayName": "Display Name", + "options": null + }, + { + "id": "com.apple.mcxprinting_userprinterlist_printer_location", + "displayName": "Location", + "options": null + }, + { + "id": "com.apple.mcxprinting_userprinterlist_printer_model", + "displayName": "Model", + "options": null + }, + { + "id": "com.apple.mcxprinting_userprinterlist_printer_ppdurl", + "displayName": "PPD URL", + "options": null + }, + { + "id": "com.apple.mcxprinting_userprinterlist_printer_printerlocked", + "displayName": "Printer Locked", + "options": [ + { + "id": "com.apple.mcxprinting_userprinterlist_printer_printerlocked_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mcxprinting_userprinterlist_printer_printerlocked_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_allowsimple", + "displayName": "Allow Simple Passcode", + "options": [ + { + "id": "com.apple.mobiledevice.passwordpolicy_allowsimple_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_allowsimple_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_changeatnextauth", + "displayName": "Change At Next Auth", + "options": [ + { + "id": "com.apple.mobiledevice.passwordpolicy_changeatnextauth_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_changeatnextauth_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_com.apple.mobiledevice.passwordpolicy", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_customregex", + "displayName": "Custom Regex", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_customregex_passwordcontentdescription", + "displayName": "Password Content Description", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_customregex_passwordcontentdescription_generickey", + "displayName": "Description", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_customregex_passwordcontentdescription_generickey_keytobereplaced", + "displayName": "Password Content Description", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_customregex_passwordcontentregex", + "displayName": "Password Content Regex", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_forcepin", + "displayName": "Force PIN", + "options": [ + { + "id": "com.apple.mobiledevice.passwordpolicy_forcepin_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_forcepin_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_maxfailedattempts", + "displayName": "Max Failed Attempts", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_maxgraceperiod", + "displayName": "Max Grace Period", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_maxinactivity", + "displayName": "Max Inactivity", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_maxpinageindays", + "displayName": "Max PIN Age In Days", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_mincomplexchars", + "displayName": "Min Complex Characters", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_minlength", + "displayName": "Min Length", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_minutesuntilfailedloginreset", + "displayName": "Minutes Until Failed Login Reset", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_pinhistory", + "displayName": "PIN History", + "options": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_requirealphanumeric", + "displayName": "Require Alphanumeric Passcode", + "options": [ + { + "id": "com.apple.mobiledevice.passwordpolicy_requirealphanumeric_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.mobiledevice.passwordpolicy_requirealphanumeric_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.networkusagerules_applicationrules", + "displayName": "Application Rules", + "options": null + }, + { + "id": "com.apple.networkusagerules_applicationrules_item_allowcellulardata", + "displayName": "Allow Cellular Data", + "options": [ + { + "id": "com.apple.networkusagerules_applicationrules_item_allowcellulardata_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.networkusagerules_applicationrules_item_allowcellulardata_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.networkusagerules_applicationrules_item_allowroamingcellulardata", + "displayName": "Allow Roaming Cellular Data", + "options": [ + { + "id": "com.apple.networkusagerules_applicationrules_item_allowroamingcellulardata_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.networkusagerules_applicationrules_item_allowroamingcellulardata_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.networkusagerules_applicationrules_item_appidentifiermatches", + "displayName": "App Identifier Matches", + "options": null + }, + { + "id": "com.apple.networkusagerules_com.apple.networkusagerules", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.networkusagerules_simrules", + "displayName": "SIM Rules", + "options": null + }, + { + "id": "com.apple.networkusagerules_simrules_item_iccids", + "displayName": "ICCI Ds", + "options": null + }, + { + "id": "com.apple.networkusagerules_simrules_item_wifiassistpolicy", + "displayName": "Wi Fi Assist Policy", + "options": [ + { + "id": "com.apple.networkusagerules_simrules_item_wifiassistpolicy_0", + "displayName": "2", + "description": null + }, + { + "id": "com.apple.networkusagerules_simrules_item_wifiassistpolicy_1", + "displayName": "3", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_com.apple.notificationsettings", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings", + "displayName": "Notification Settings", + "options": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_alerttype", + "displayName": "Alert Type", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_alerttype_0", + "displayName": "None", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_alerttype_1", + "displayName": "Temporary Banner", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_alerttype_2", + "displayName": "Persistent Banner", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_badgesenabled", + "displayName": "Badges Enabled", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_badgesenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_badgesenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_bundleidentifier", + "displayName": "Bundle Identifier", + "options": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_criticalalertenabled", + "displayName": "Critical Alert Enabled", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_criticalalertenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_criticalalertenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_groupingtype", + "displayName": "Grouping Type", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_groupingtype_0", + "displayName": "Automatic: Group notifications into app-specified groups", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_groupingtype_1", + "displayName": "By app: Group notifications into one group", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_groupingtype_2", + "displayName": "Off: Don't group notifications", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_notificationsenabled", + "displayName": "Notifications Enabled", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_notificationsenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_notificationsenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_previewtype", + "displayName": "Preview Type", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_previewtype_0", + "displayName": "Always: Previews will be shown when the device is locked and unlocked", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_previewtype_1", + "displayName": "When Unlocked: Previews will only be shown when the device is unlocked", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_previewtype_2", + "displayName": "Never: Previews will never be shown", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_showincarplay", + "displayName": "Show In Car Play", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_showincarplay_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_showincarplay_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_showinlockscreen", + "displayName": "Show In Lock Screen", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_showinlockscreen_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_showinlockscreen_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_showinnotificationcenter", + "displayName": "Show In Notification Center", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_showinnotificationcenter_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_showinnotificationcenter_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_soundsenabled", + "displayName": "Sounds Enabled", + "options": [ + { + "id": "com.apple.notificationsettings_notificationsettings_item_soundsenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.notificationsettings_notificationsettings_item_soundsenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.nsextension_allowedextensions", + "displayName": "Allowed Extensions", + "options": null + }, + { + "id": "com.apple.nsextension_com.apple.nsextension", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.nsextension_deniedextensionpoints", + "displayName": "Denied Extension Points", + "options": null + }, + { + "id": "com.apple.nsextension_deniedextensions", + "displayName": "Denied Extensions", + "options": null + }, + { + "id": "com.apple.preference.security_com.apple.preference.security", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.preference.security_dontallowfirewallui", + "displayName": "Do Not Allow Firewall UI", + "options": [ + { + "id": "com.apple.preference.security_dontallowfirewallui_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.preference.security_dontallowfirewallui_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.preference.security_dontallowlockmessageui", + "displayName": "Do Not Allow Lock Message UI", + "options": [ + { + "id": "com.apple.preference.security_dontallowlockmessageui_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.preference.security_dontallowlockmessageui_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.preference.security_dontallowpasswordresetui", + "displayName": "Do Not Allow Password Reset UI", + "options": [ + { + "id": "com.apple.preference.security_dontallowpasswordresetui_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.preference.security_dontallowpasswordresetui_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.preference.users_com.apple.preference.users", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.preference.users_disableusingicloudpassword", + "displayName": "Disable Using iCloud Password", + "options": [ + { + "id": "com.apple.preference.users_disableusingicloudpassword_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.preference.users_disableusingicloudpassword_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.profileremovalpassword_com.apple.profileremovalpassword", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.profileremovalpassword_removalpassword", + "displayName": "Removal Password", + "options": null + }, + { + "id": "com.apple.proxy.http.global_com.apple.proxy.http.global", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.proxy.http.global_proxycaptiveloginallowed", + "displayName": "Proxy Captive Login Allowed", + "options": [ + { + "id": "com.apple.proxy.http.global_proxycaptiveloginallowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.proxy.http.global_proxycaptiveloginallowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.proxy.http.global_proxypacfallbackallowed", + "displayName": "Proxy PAC Fallback Allowed", + "options": [ + { + "id": "com.apple.proxy.http.global_proxypacfallbackallowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.proxy.http.global_proxypacfallbackallowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.proxy.http.global_proxypacurl", + "displayName": "Proxy PAC URL (Deprecated)", + "options": null + }, + { + "id": "com.apple.proxy.http.global_proxypassword", + "displayName": "Proxy Password", + "options": null + }, + { + "id": "com.apple.proxy.http.global_proxyserver", + "displayName": "Proxy Server (Deprecated)", + "options": null + }, + { + "id": "com.apple.proxy.http.global_proxyserverport", + "displayName": "Proxy Server Port (Deprecated)", + "options": null + }, + { + "id": "com.apple.proxy.http.global_proxytype", + "displayName": "Proxy Type", + "options": [ + { + "id": "com.apple.proxy.http.global_proxytype_0", + "displayName": "Manual", + "description": null + }, + { + "id": "com.apple.proxy.http.global_proxytype_1", + "displayName": "Auto", + "description": null + } + ] + }, + { + "id": "com.apple.proxy.http.global_proxyusername", + "displayName": "Proxy Username", + "options": null + }, + { + "id": "com.apple.screensaver.user_com.apple.screensaver.user", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.screensaver.user_idletime", + "displayName": "Idle Time", + "options": null + }, + { + "id": "com.apple.screensaver.user_modulename", + "displayName": "Module Name", + "options": null + }, + { + "id": "com.apple.screensaver.user_modulepath", + "displayName": "Module Path", + "options": null + }, + { + "id": "com.apple.screensaver_askforpassword", + "displayName": "Ask For Password", + "options": [ + { + "id": "com.apple.screensaver_askforpassword_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.screensaver_askforpassword_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.screensaver_askforpassworddelay", + "displayName": "Ask For Password Delay", + "options": null + }, + { + "id": "com.apple.screensaver_com.apple.screensaver", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.screensaver_loginwindowidletime", + "displayName": "Login Window Idle Time", + "options": null + }, + { + "id": "com.apple.screensaver_loginwindowmodulepath", + "displayName": "Login Window Module Path", + "options": null + }, + { + "id": "com.apple.screensaver_modulename", + "displayName": "Module Name", + "options": null + }, + { + "id": "com.apple.security.fderecoverykeyescrow_com.apple.security.fderecoverykeyescrow", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.security.fderecoverykeyescrow_devicekey", + "displayName": "Device Key", + "options": null + }, + { + "id": "com.apple.security.fderecoverykeyescrow_location", + "displayName": "Location", + "options": null + }, + { + "id": "com.apple.security.firewall_allowsigned", + "displayName": "Allow Signed", + "options": [ + { + "id": "com.apple.security.firewall_allowsigned_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.firewall_allowsigned_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.firewall_allowsignedapp", + "displayName": "Allow Signed App", + "options": [ + { + "id": "com.apple.security.firewall_allowsignedapp_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.firewall_allowsignedapp_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.firewall_applications", + "displayName": "Applications", + "options": null + }, + { + "id": "com.apple.security.firewall_applications_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.security.firewall_applications_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.firewall_applications_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.firewall_applications_item_bundleid", + "displayName": "Bundle ID", + "options": null + }, + { + "id": "com.apple.security.firewall_blockallincoming", + "displayName": "Block All Incoming", + "options": [ + { + "id": "com.apple.security.firewall_blockallincoming_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.firewall_blockallincoming_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.firewall_com.apple.security.firewall", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.security.firewall_enablefirewall", + "displayName": "Enable Firewall", + "options": [ + { + "id": "com.apple.security.firewall_enablefirewall_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.firewall_enablefirewall_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.firewall_enablelogging", + "displayName": "Enable Logging (Deprecated)", + "options": [ + { + "id": "com.apple.security.firewall_enablelogging_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.firewall_enablelogging_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.firewall_enablestealthmode", + "displayName": "Enable Stealth Mode", + "options": [ + { + "id": "com.apple.security.firewall_enablestealthmode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.firewall_enablestealthmode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.firewall_loggingoption", + "displayName": "Logging Option (Deprecated)", + "options": [ + { + "id": "com.apple.security.firewall_loggingoption_0", + "displayName": "throttled", + "description": null + }, + { + "id": "com.apple.security.firewall_loggingoption_1", + "displayName": "brief", + "description": null + }, + { + "id": "com.apple.security.firewall_loggingoption_2", + "displayName": "detail", + "description": null + } + ] + }, + { + "id": "com.apple.security.smartcard_allowsmartcard", + "displayName": "Allow Smart Card", + "options": [ + { + "id": "com.apple.security.smartcard_allowsmartcard_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.smartcard_allowsmartcard_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.smartcard_checkcertificatetrust", + "displayName": "Check Certificate Trust", + "options": [ + { + "id": "com.apple.security.smartcard_checkcertificatetrust_0", + "displayName": "Disable certificate trust check", + "description": null + }, + { + "id": "com.apple.security.smartcard_checkcertificatetrust_1", + "displayName": "Enable certificate trust check and standard validity check", + "description": null + }, + { + "id": "com.apple.security.smartcard_checkcertificatetrust_2", + "displayName": "Enable certificate trust check and soft revocation check", + "description": null + }, + { + "id": "com.apple.security.smartcard_checkcertificatetrust_3", + "displayName": "Enable certificate trust check and hard revocation check", + "description": null + } + ] + }, + { + "id": "com.apple.security.smartcard_com.apple.security.smartcard", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.security.smartcard_enforcesmartcard", + "displayName": "Enforce Smart Card", + "options": [ + { + "id": "com.apple.security.smartcard_enforcesmartcard_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.smartcard_enforcesmartcard_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.smartcard_onecardperuser", + "displayName": "One Card Per User", + "options": [ + { + "id": "com.apple.security.smartcard_onecardperuser_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.smartcard_onecardperuser_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.security.smartcard_tokenremovalaction", + "displayName": "Token Removal Action", + "options": [ + { + "id": "com.apple.security.smartcard_tokenremovalaction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.security.smartcard_tokenremovalaction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.security.smartcard_userpairing", + "displayName": "User Pairing", + "options": [ + { + "id": "com.apple.security.smartcard_userpairing_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.security.smartcard_userpairing_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.servicemanagement_com.apple.servicemanagement", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.servicemanagement_rules", + "displayName": "Rules", + "options": null + }, + { + "id": "com.apple.servicemanagement_rules_item_comment", + "displayName": "Comment", + "options": null + }, + { + "id": "com.apple.servicemanagement_rules_item_ruletype", + "displayName": "Rule Type", + "options": [ + { + "id": "com.apple.servicemanagement_rules_item_ruletype_0", + "displayName": "Bundle Identifier", + "description": null + }, + { + "id": "com.apple.servicemanagement_rules_item_ruletype_1", + "displayName": "Bundle Identifier Prefix", + "description": null + }, + { + "id": "com.apple.servicemanagement_rules_item_ruletype_2", + "displayName": "Label", + "description": null + }, + { + "id": "com.apple.servicemanagement_rules_item_ruletype_3", + "displayName": "Label Prefix", + "description": null + }, + { + "id": "com.apple.servicemanagement_rules_item_ruletype_4", + "displayName": "Team Identifier", + "description": null + } + ] + }, + { + "id": "com.apple.servicemanagement_rules_item_rulevalue", + "displayName": "Rule Value", + "options": null + }, + { + "id": "com.apple.servicemanagement_rules_item_teamidentifier", + "displayName": "Team Identifier", + "options": null + }, + { + "id": "com.apple.shareddeviceconfiguration_assettaginformation", + "displayName": "Asset Tag Information", + "options": null + }, + { + "id": "com.apple.shareddeviceconfiguration_com.apple.shareddeviceconfiguration", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.shareddeviceconfiguration_lockscreenfootnote", + "displayName": "Lock Screen Footnote", + "options": null + }, + { + "id": "com.apple.softwareupdate_allowprereleaseinstallation", + "displayName": "Allow Pre Release Installation", + "options": [ + { + "id": "com.apple.softwareupdate_allowprereleaseinstallation_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.softwareupdate_allowprereleaseinstallation_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.softwareupdate_automaticallyinstallappupdates", + "displayName": "Automatically Install App Updates", + "options": [ + { + "id": "com.apple.softwareupdate_automaticallyinstallappupdates_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.softwareupdate_automaticallyinstallappupdates_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.softwareupdate_automaticallyinstallmacosupdates", + "displayName": "Automatically Install Mac OS Updates", + "options": [ + { + "id": "com.apple.softwareupdate_automaticallyinstallmacosupdates_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.softwareupdate_automaticallyinstallmacosupdates_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.softwareupdate_automaticcheckenabled", + "displayName": "Automatic Check Enabled", + "options": [ + { + "id": "com.apple.softwareupdate_automaticcheckenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.softwareupdate_automaticcheckenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.softwareupdate_automaticdownload", + "displayName": "Automatic Download", + "options": [ + { + "id": "com.apple.softwareupdate_automaticdownload_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.softwareupdate_automaticdownload_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.softwareupdate_com.apple.softwareupdate", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.softwareupdate_configdatainstall", + "displayName": "Config Data Install", + "options": [ + { + "id": "com.apple.softwareupdate_configdatainstall_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.softwareupdate_configdatainstall_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.softwareupdate_criticalupdateinstall", + "displayName": "Critical Update Install", + "options": [ + { + "id": "com.apple.softwareupdate_criticalupdateinstall_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.softwareupdate_criticalupdateinstall_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.softwareupdate_restrict-software-update-require-admin-to-install", + "displayName": "Restrict Software Update Require Admin To Install", + "options": [ + { + "id": "com.apple.softwareupdate_restrict-software-update-require-admin-to-install_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.softwareupdate_restrict-software-update-require-admin-to-install_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.subscribedcalendar.account_com.apple.subscribedcalendar.account", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.subscribedcalendar.account_subcalaccountdescription", + "displayName": "Account Description", + "options": null + }, + { + "id": "com.apple.subscribedcalendar.account_subcalaccounthostname", + "displayName": "Account Host Name", + "options": null + }, + { + "id": "com.apple.subscribedcalendar.account_subcalaccountpassword", + "displayName": "Account Password", + "options": null + }, + { + "id": "com.apple.subscribedcalendar.account_subcalaccountusername", + "displayName": "Account Username", + "options": null + }, + { + "id": "com.apple.subscribedcalendar.account_subcalaccountusessl", + "displayName": "Account Use SSL", + "options": [ + { + "id": "com.apple.subscribedcalendar.account_subcalaccountusessl_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.subscribedcalendar.account_subcalaccountusessl_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.system.logging_com.apple.system.logging", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.system.logging_system", + "displayName": "System", + "options": null + }, + { + "id": "com.apple.system.logging_system_enable-private-data", + "displayName": "Enable Private Data", + "options": [ + { + "id": "com.apple.system.logging_system_enable-private-data_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.system.logging_system_enable-private-data_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_com.apple.systemconfiguration", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies", + "displayName": "Proxies", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_exceptionslist", + "displayName": "Exceptions List", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_fallbackallowed", + "displayName": "Fall Back Allowed", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_fallbackallowed_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_fallbackallowed_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_ftpenable", + "displayName": "FTP Enable", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_ftpenable_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_ftpenable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_ftppassive", + "displayName": "FTP Passive", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_ftppassive_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_ftppassive_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_ftpport", + "displayName": "FTP Port", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_ftpproxy", + "displayName": "FTP Proxy", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_gopherenable", + "displayName": "Gopher Enable", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_gopherenable_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_gopherenable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_gopherport", + "displayName": "Gopher Port", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_gopherproxy", + "displayName": "Gopher Proxy", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_httpenable", + "displayName": "HTTP Enable", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_httpenable_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_httpenable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_httpport", + "displayName": "HTTP Port", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_httpproxy", + "displayName": "HTTP Proxy", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_httpsenable", + "displayName": "HTTPS Enable", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_httpsenable_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_httpsenable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_httpsport", + "displayName": "HTTPS Port", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_httpsproxy", + "displayName": "HTTPS Proxy", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_proxyautoconfigenable", + "displayName": "Proxy Auto Config Enable", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_proxyautoconfigenable_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_proxyautoconfigenable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_proxyautoconfigurlstring", + "displayName": "Proxy Auto Config URL String", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_proxycaptiveloginallowed", + "displayName": "Proxy Captive Login Allowed", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_proxycaptiveloginallowed_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_proxycaptiveloginallowed_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_rtspenable", + "displayName": "RTSP Enable", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_rtspenable_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_rtspenable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_rtspport", + "displayName": "RTSP Port", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_rtspproxy", + "displayName": "RTSP Proxy", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_socksenable", + "displayName": "SOCKS Enable", + "options": [ + { + "id": "com.apple.systemconfiguration_proxies_socksenable_0", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systemconfiguration_proxies_socksenable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systemconfiguration_proxies_socksportinteger", + "displayName": "SOCKS Port Integer", + "options": null + }, + { + "id": "com.apple.systemconfiguration_proxies_socksproxy", + "displayName": "SOCKS Proxy", + "options": null + }, + { + "id": "com.apple.system-extension-policy_allowedsystemextensions", + "displayName": "Allowed System Extensions", + "options": null + }, + { + "id": "com.apple.system-extension-policy_allowedsystemextensions_generickey", + "displayName": "Allowed System Extensions", + "options": null + }, + { + "id": "com.apple.system-extension-policy_allowedsystemextensions_generickey_keytobereplaced", + "displayName": "Team Identifier", + "options": null + }, + { + "id": "com.apple.system-extension-policy_allowedsystemextensiontypes", + "displayName": "Allowed System Extension Types", + "options": null + }, + { + "id": "com.apple.system-extension-policy_allowedsystemextensiontypes_generickey", + "displayName": "Allowed System Extension Types", + "options": null + }, + { + "id": "com.apple.system-extension-policy_allowedsystemextensiontypes_generickey_keytobereplaced", + "displayName": "Team Identifier", + "options": null + }, + { + "id": "com.apple.system-extension-policy_allowedteamidentifiers", + "displayName": "Allowed Team Identifiers", + "options": null + }, + { + "id": "com.apple.system-extension-policy_allowuseroverrides", + "displayName": "Allow User Overrides", + "options": [ + { + "id": "com.apple.system-extension-policy_allowuseroverrides_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.system-extension-policy_allowuseroverrides_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.system-extension-policy_com.apple.system-extension-policy", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions", + "displayName": "Non Removable From UI System Extensions", + "options": null + }, + { + "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions_generickey", + "displayName": "ANY", + "options": null + }, + { + "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions_generickey_keytobereplaced", + "displayName": "Non Removable From UI System Extensions", + "options": null + }, + { + "id": "com.apple.system-extension-policy_nonremovablesystemextensions", + "displayName": "Non Removable System Extensions", + "options": null + }, + { + "id": "com.apple.system-extension-policy_nonremovablesystemextensions_generickey", + "displayName": "ANY", + "options": null + }, + { + "id": "com.apple.system-extension-policy_nonremovablesystemextensions_generickey_keytobereplaced", + "displayName": "Non Removable System Extensions", + "options": null + }, + { + "id": "com.apple.system-extension-policy_removablesystemextensions", + "displayName": "Removable System Extensions", + "options": null + }, + { + "id": "com.apple.system-extension-policy_removablesystemextensions_generickey", + "displayName": "Removable System Extensions", + "options": null + }, + { + "id": "com.apple.system-extension-policy_removablesystemextensions_generickey_keytobereplaced", + "displayName": "Team Identifier", + "options": null + }, + { + "id": "com.apple.systempolicy.control_allowidentifieddevelopers", + "displayName": "Allow Identified Developers", + "options": [ + { + "id": "com.apple.systempolicy.control_allowidentifieddevelopers_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systempolicy.control_allowidentifieddevelopers_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systempolicy.control_com.apple.systempolicy.control", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.systempolicy.control_enableassessment", + "displayName": "Enable Assessment", + "options": [ + { + "id": "com.apple.systempolicy.control_enableassessment_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systempolicy.control_enableassessment_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systempolicy.control_enablexprotectmalwareupload", + "displayName": "Enable XProtect Malware Upload", + "options": [ + { + "id": "com.apple.systempolicy.control_enablexprotectmalwareupload_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.systempolicy.control_enablexprotectmalwareupload_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.systempolicy.managed_com.apple.systempolicy.managed", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.systempolicy.managed_disableoverride", + "displayName": "Disable Override", + "options": [ + { + "id": "com.apple.systempolicy.managed_disableoverride_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.systempolicy.managed_disableoverride_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.systempreferences_com.apple.systempreferences", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.systempreferences_disabledpreferencepanes", + "displayName": "Disabled Preference Panes", + "options": null + }, + { + "id": "com.apple.systempreferences_enabledpreferencepanes", + "displayName": "Enabled Preference Panes", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_com.apple.tcc.configuration-profile-policy", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services", + "displayName": "Services", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility", + "displayName": "Accessibility", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_accessibility_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook", + "displayName": "Address Book", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_addressbook_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents", + "displayName": "Apple Events", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_aereceivercoderequirement", + "displayName": "AE Receiver Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_aereceiveridentifier", + "displayName": "AE Receiver Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_aereceiveridentifiertype", + "displayName": "AE Receiver Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_aereceiveridentifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_aereceiveridentifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_appleevents_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways", + "displayName": "Bluetooth Always", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_aereceivercoderequirement", + "displayName": "AE Receiver Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_aereceiveridentifier", + "displayName": "AE Receiver Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_aereceiveridentifiertype", + "displayName": "AE Receiver Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_aereceiveridentifiertype_0", + "displayName": "bundleID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_aereceiveridentifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_allowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_allowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_authorization_2", + "displayName": "AllowStandardUserToSetSystemService", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_comment", + "displayName": "Comment", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_identifiertype_0", + "displayName": "bundleID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_staticcode_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_bluetoothalways_item_staticcode_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar", + "displayName": "Calendar", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_calendar_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera", + "displayName": "Camera", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_camera_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence", + "displayName": "File Provider Presence", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_fileproviderpresence_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent", + "displayName": "Listen Event", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_allowed", + "displayName": "Allowed (Deprecated)", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_listenevent_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary", + "displayName": "Media Library", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_medialibrary_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone", + "displayName": "Microphone", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_microphone_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos", + "displayName": "Photos", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_photos_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent", + "displayName": "Post Event", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_postevent_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders", + "displayName": "Reminders", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_reminders_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture", + "displayName": "Screen Capture", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_allowed", + "displayName": "Allowed (Deprecated)", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_screencapture_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition", + "displayName": "Speech Recognition", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_speechrecognition_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles", + "displayName": "System Policy All Files", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyallfiles_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles", + "displayName": "System Policy App Bundles", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappbundles_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata", + "displayName": "System Policy App Data", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_allowed_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_allowed_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_authorization_2", + "displayName": "AllowStandardUserToSetSystemService", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_identifiertype_0", + "displayName": "bundleID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_staticcode_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyappdata_item_staticcode_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder", + "displayName": "System Policy Desktop Folder", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydesktopfolder_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder", + "displayName": "System Policy Documents Folder", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydocumentsfolder_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder", + "displayName": "System Policy Downloads Folder", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicydownloadsfolder_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes", + "displayName": "System Policy Network Volumes", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicynetworkvolumes_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes", + "displayName": "System Policy Removable Volumes", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicyremovablevolumes_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles", + "displayName": "System Policy Sys Admin Files", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_allowed", + "displayName": "Allowed", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_allowed_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_allowed_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_authorization", + "displayName": "Authorization", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_authorization_0", + "displayName": "Allow", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_authorization_1", + "displayName": "Deny", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_authorization_2", + "displayName": "Allow Standard User To Set System Service", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_coderequirement", + "displayName": "Code Requirement", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_identifier", + "displayName": "Identifier", + "options": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_identifiertype", + "displayName": "Identifier Type", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_identifiertype_0", + "displayName": "bundle ID", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_identifiertype_1", + "displayName": "path", + "description": null + } + ] + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_staticcode", + "displayName": "Static Code", + "options": [ + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_staticcode_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.tcc.configuration-profile-policy_services_systempolicysysadminfiles_item_staticcode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_closeviewfarpoint", + "displayName": "Close View Far Point", + "options": null + }, + { + "id": "com.apple.universalaccess_closeviewhotkeysenabled", + "displayName": "Close View Hotkeys Enabled", + "options": [ + { + "id": "com.apple.universalaccess_closeviewhotkeysenabled_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_closeviewhotkeysenabled_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_closeviewnearpoint", + "displayName": "Close View Near Point", + "options": null + }, + { + "id": "com.apple.universalaccess_closeviewscrollwheeltoggle", + "displayName": "Close View Scroll Wheel Toggle", + "options": [ + { + "id": "com.apple.universalaccess_closeviewscrollwheeltoggle_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_closeviewscrollwheeltoggle_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_closeviewsmoothimages", + "displayName": "Close View Smooth Images", + "options": [ + { + "id": "com.apple.universalaccess_closeviewsmoothimages_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_closeviewsmoothimages_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_com.apple.universalaccess", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.universalaccess_contrast", + "displayName": "Contrast", + "options": null + }, + { + "id": "com.apple.universalaccess_flashscreen", + "displayName": "Flash Screen", + "options": [ + { + "id": "com.apple.universalaccess_flashscreen_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_flashscreen_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_mousedriver", + "displayName": "Mouse Driver", + "options": [ + { + "id": "com.apple.universalaccess_mousedriver_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_mousedriver_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_mousedrivercursorsize", + "displayName": "Mouse Driver Cursor Size", + "options": null + }, + { + "id": "com.apple.universalaccess_mousedriverignoretrackpad", + "displayName": "Mouse Driver Ignore Trackpad", + "options": [ + { + "id": "com.apple.universalaccess_mousedriverignoretrackpad_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_mousedriverignoretrackpad_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_mousedriverinitialdelay", + "displayName": "Mouse Driver Initial Delay", + "options": null + }, + { + "id": "com.apple.universalaccess_mousedrivermaxspeed", + "displayName": "Mouse Driver Max Speed", + "options": null + }, + { + "id": "com.apple.universalaccess_slowkey", + "displayName": "Slow Key", + "options": [ + { + "id": "com.apple.universalaccess_slowkey_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_slowkey_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_slowkeybeepon", + "displayName": "Slow Key Beep On", + "options": [ + { + "id": "com.apple.universalaccess_slowkeybeepon_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_slowkeybeepon_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_slowkeydelay", + "displayName": "Slow Key Delay", + "options": null + }, + { + "id": "com.apple.universalaccess_stereoasmono", + "displayName": "Stereo as Mono", + "options": [ + { + "id": "com.apple.universalaccess_stereoasmono_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_stereoasmono_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_stickykey", + "displayName": "Sticky Key", + "options": [ + { + "id": "com.apple.universalaccess_stickykey_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_stickykey_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_stickykeybeeponmodifier", + "displayName": "Sticky Key Beep On Modifier", + "options": [ + { + "id": "com.apple.universalaccess_stickykeybeeponmodifier_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_stickykeybeeponmodifier_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_stickykeyshowwindow", + "displayName": "Sticky Key Show Window", + "options": [ + { + "id": "com.apple.universalaccess_stickykeyshowwindow_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_stickykeyshowwindow_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_voiceoveronoffkey", + "displayName": "Voice Over On Off Key", + "options": [ + { + "id": "com.apple.universalaccess_voiceoveronoffkey_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_voiceoveronoffkey_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.universalaccess_whiteonblack", + "displayName": "White On Black", + "options": [ + { + "id": "com.apple.universalaccess_whiteonblack_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.universalaccess_whiteonblack_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.webcontent-filter_allowlistbookmarks", + "displayName": "Allow List Bookmarks", + "options": null + }, + { + "id": "com.apple.webcontent-filter_allowlistbookmarks_item_title", + "displayName": "Title", + "options": null + }, + { + "id": "com.apple.webcontent-filter_allowlistbookmarks_item_url", + "displayName": "URL", + "options": null + }, + { + "id": "com.apple.webcontent-filter_autofilterenabled", + "displayName": "Auto Filter Enabled", + "options": [ + { + "id": "com.apple.webcontent-filter_autofilterenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.webcontent-filter_autofilterenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.webcontent-filter_com.apple.webcontent-filter", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.webcontent-filter_denylisturls", + "displayName": "Deny List URLs", + "options": null + }, + { + "id": "com.apple.webcontent-filter_filterbrowsers", + "displayName": "Filter Browsers", + "options": [ + { + "id": "com.apple.webcontent-filter_filterbrowsers_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.webcontent-filter_filterbrowsers_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.webcontent-filter_filterdataproviderbundleidentifier", + "displayName": "Filter Data Provider Bundle Identifier", + "options": null + }, + { + "id": "com.apple.webcontent-filter_filterdataproviderdesignatedrequirement", + "displayName": "Filter Data Provider Designated Requirement", + "options": null + }, + { + "id": "com.apple.webcontent-filter_filtergrade", + "displayName": "Filter Grade", + "options": [ + { + "id": "com.apple.webcontent-filter_filtergrade_0", + "displayName": "firewall", + "description": null + }, + { + "id": "com.apple.webcontent-filter_filtergrade_1", + "displayName": "inspector", + "description": null + } + ] + }, + { + "id": "com.apple.webcontent-filter_filterpacketproviderbundleidentifier", + "displayName": "Filter Packet Provider Bundle Identifier", + "options": null + }, + { + "id": "com.apple.webcontent-filter_filterpacketproviderdesignatedrequirement", + "displayName": "Filter Packet Provider Designated Requirement", + "options": null + }, + { + "id": "com.apple.webcontent-filter_filterpackets", + "displayName": "Filter Packets", + "options": [ + { + "id": "com.apple.webcontent-filter_filterpackets_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.webcontent-filter_filterpackets_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.webcontent-filter_filtersockets", + "displayName": "Filter Sockets", + "options": [ + { + "id": "com.apple.webcontent-filter_filtersockets_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.webcontent-filter_filtersockets_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.webcontent-filter_filtertype", + "displayName": "Filter Type", + "options": [ + { + "id": "com.apple.webcontent-filter_filtertype_0", + "displayName": "Built-in", + "description": null + }, + { + "id": "com.apple.webcontent-filter_filtertype_1", + "displayName": "Plug-in", + "description": null + } + ] + }, + { + "id": "com.apple.webcontent-filter_hidedenylisturls", + "displayName": "Hide Deny List UR Ls", + "options": [ + { + "id": "com.apple.webcontent-filter_hidedenylisturls_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.apple.webcontent-filter_hidedenylisturls_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.apple.webcontent-filter_organization", + "displayName": "Organization", + "options": null + }, + { + "id": "com.apple.webcontent-filter_password", + "displayName": "Password", + "options": null + }, + { + "id": "com.apple.webcontent-filter_permittedurls", + "displayName": "Permitted URLs", + "options": null + }, + { + "id": "com.apple.webcontent-filter_pluginbundleid", + "displayName": "Plugin Bundle ID", + "options": null + }, + { + "id": "com.apple.webcontent-filter_serveraddress", + "displayName": "Server Address", + "options": null + }, + { + "id": "com.apple.webcontent-filter_userdefinedname", + "displayName": "User Defined Name", + "options": null + }, + { + "id": "com.apple.webcontent-filter_username", + "displayName": "User Name", + "options": null + }, + { + "id": "com.apple.xsan.preferences_com.apple.xsan.preferences", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.xsan.preferences_denydlc", + "displayName": "Deny DLC", + "options": null + }, + { + "id": "com.apple.xsan.preferences_denymount", + "displayName": "Deny Mount", + "options": null + }, + { + "id": "com.apple.xsan.preferences_onlymount", + "displayName": "Only Mount", + "options": null + }, + { + "id": "com.apple.xsan.preferences_preferdlc", + "displayName": "Prefer DLC", + "options": null + }, + { + "id": "com.apple.xsan.preferences_usedlc", + "displayName": "Use DLC", + "options": [ + { + "id": "com.apple.xsan.preferences_usedlc_false", + "displayName": "False", + "description": null + }, + { + "id": "com.apple.xsan.preferences_usedlc_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "com.apple.xsan_com.apple.xsan", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "com.apple.xsan_fsnameservers", + "displayName": "FS Name Servers", + "options": null + }, + { + "id": "com.apple.xsan_sanauthmethod", + "displayName": "San Auth Method", + "options": { + "id": "com.apple.xsan_sanauthmethod_0", + "displayName": "auth_secret", + "description": null + } + }, + { + "id": "com.apple.xsan_sanconfigurls", + "displayName": "San Config URLs", + "options": null + }, + { + "id": "com.apple.xsan_sanname", + "displayName": "San Name", + "options": null + }, + { + "id": "com.apple.xsan_sharedsecret", + "displayName": "Shared Secret", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.accessibilityimagelabelsenabled", + "displayName": "Let screen reader users get image descriptions from Microsoft", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.accessibilityimagelabelsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.accessibilityimagelabelsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbareditingenabled", + "displayName": "Configure address bar editing", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbareditingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbareditingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarmicrosoftsearchinbingproviderenabled", + "displayName": "Enable Microsoft Search in Bing suggestions in the address bar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarmicrosoftsearchinbingproviderenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarmicrosoftsearchinbingproviderenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.adssettingforintrusiveadssites_allowads", + "displayName": "Allow ads on all sites", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.adssettingforintrusiveadssites_blockads", + "displayName": "Block ads on sites with intrusive ads. (Default value)", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.adstransparencyenabled", + "displayName": "Configure if the ads transparency feature is enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.adstransparencyenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.adstransparencyenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowdeletingbrowserhistory", + "displayName": "Enable deleting browser and download history", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowdeletingbrowserhistory_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowdeletingbrowserhistory_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowgamesmenu", + "displayName": "Allow users to access the games menu", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowgamesmenu_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowgamesmenu_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowpopupsduringpageunload", + "displayName": "Allows a page to show popups during its unloading (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowpopupsduringpageunload_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowpopupsduringpageunload_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsurfgame", + "displayName": "Allow surf game", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsurfgame_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsurfgame_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsyncxhrinpagedismissal", + "displayName": "Allow pages to send synchronous XHR requests during page dismissal (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsyncxhrinpagedismissal_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsyncxhrinpagedismissal_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.allowtrackingforurls", + "displayName": "Configure tracking prevention exceptions for specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alternateerrorpagesenabled", + "displayName": "Suggest similar pages when a webpage can't be found", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alternateerrorpagesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alternateerrorpagesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alternateerrorpagesenabled_recommended", + "displayName": "Suggest similar pages when a webpage can't be found (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alternateerrorpagesenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alternateerrorpagesenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alwaysopenpdfexternally", + "displayName": "Always open PDF files externally", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alwaysopenpdfexternally_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.alwaysopenpdfexternally_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.askbeforecloseenabled", + "displayName": "Get user confirmation before closing a browser window with multiple tabs", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.askbeforecloseenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.askbeforecloseenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.askbeforecloseenabled_recommended", + "displayName": "Get user confirmation before closing a browser window with multiple tabs (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.askbeforecloseenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.askbeforecloseenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.audiocaptureallowedurls", + "displayName": "Sites that can access audio capture devices without requesting permission", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofilladdressenabled", + "displayName": "Enable AutoFill for addresses", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofilladdressenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofilladdressenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofilladdressenabled_recommended", + "displayName": "Enable AutoFill for addresses (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofilladdressenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofilladdressenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillcreditcardenabled", + "displayName": "Enable AutoFill for payment instruments", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillcreditcardenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillcreditcardenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillcreditcardenabled_recommended", + "displayName": "Enable AutoFill for payment instruments (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillcreditcardenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillcreditcardenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillmembershipsenabled", + "displayName": "Save and fill memberships", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillmembershipsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillmembershipsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillmembershipsenabled_recommended", + "displayName": "Save and fill memberships (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillmembershipsenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autofillmembershipsenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autolaunchprotocolscomponentenabled", + "displayName": "AutoLaunch Protocols Component Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autolaunchprotocolscomponentenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autolaunchprotocolscomponentenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automaticdownloadsallowedforurls", + "displayName": "Allow multiple automatic downloads in quick succession on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automaticdownloadsblockedforurls", + "displayName": "Block multiple automatic downloads in quick succession on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault", + "displayName": "Configure Automatic HTTPS", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_disableautomatichttps", + "displayName": "Automatic HTTPS functionality is disabled.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_upgradecapabledomains", + "displayName": "(Deprecated) Navigations delivered over HTTP are switched to HTTPS, only on domains likely to support HTTPS.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_alwaysupgrade", + "displayName": "All navigations delivered over HTTP are switched to HTTPS. Connection errors might occur more often.", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_recommended", + "displayName": "Configure Automatic HTTPS (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_recommended_disableautomatichttps", + "displayName": "Automatic HTTPS functionality is disabled.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_recommended_upgradecapabledomains", + "displayName": "(Deprecated) Navigations delivered over HTTP are switched to HTTPS, only on domains likely to support HTTPS.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_recommended_alwaysupgrade", + "displayName": "All navigations delivered over HTTP are switched to HTTPS. Connection errors might occur more often.", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autoopenallowedforurls", + "displayName": "URLs where AutoOpenFileTypes can apply", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autoopenfiletypes", + "displayName": "List of file types that should be automatically opened on download", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autoplayallowed", + "displayName": "Allow media autoplay for websites", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autoplayallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autoplayallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autoplayallowlist", + "displayName": "Allow media autoplay on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.autoselectcertificateforurls", + "displayName": "Automatically select client certificates for these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.backgroundtemplatelistupdatesenabled", + "displayName": "Enables background updates to the list of available templates for Collections and other features that use templates (Deprecated)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.backgroundtemplatelistupdatesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.backgroundtemplatelistupdatesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockexternalextensions", + "displayName": "Blocks external extensions from being installed", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockexternalextensions_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockexternalextensions_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockthirdpartycookies", + "displayName": "Block third party cookies", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockthirdpartycookies_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockthirdpartycookies_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockthirdpartycookies_recommended", + "displayName": "Block third party cookies (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockthirdpartycookies_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.blockthirdpartycookies_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.browsernetworktimequeriesenabled", + "displayName": "Allow queries to a Browser Network Time service", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.browsernetworktimequeriesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.browsernetworktimequeriesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.certificatetransparencyenforcementdisabledforcas", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.certificatetransparencyenforcementdisabledforlegacycas", + "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearbrowsingdataonexit", + "displayName": "Clear browsing data when Microsoft Edge closes", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearbrowsingdataonexit_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearbrowsingdataonexit_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearbrowsingdataonexit_recommended", + "displayName": "Clear browsing data when Microsoft Edge closes (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearbrowsingdataonexit_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearbrowsingdataonexit_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearcachedimagesandfilesonexit", + "displayName": "Clear cached images and files when Microsoft Edge closes", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearcachedimagesandfilesonexit_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearcachedimagesandfilesonexit_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearcachedimagesandfilesonexit_recommended", + "displayName": "Clear cached images and files when Microsoft Edge closes (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearcachedimagesandfilesonexit_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clearcachedimagesandfilesonexit_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clipboardallowedforurls", + "displayName": "Allow clipboard use on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.clipboardblockedforurls", + "displayName": "Block clipboard use on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist", + "displayName": "Block access to a specified list of services and export targets in Collections", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_collections_share", + "displayName": "Sharing of Collections", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_local_pdf", + "displayName": "Save local PDFs in Collections to OneDrive", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_send_word", + "displayName": "Send collection to Microsoft Word", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_send_excel", + "displayName": "Send collection to Microsoft Excel", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_send_onenote", + "displayName": "Send collection to Microsoft OneNote", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configuredonottrack", + "displayName": "Configure Do Not Track", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configuredonottrack_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configuredonottrack_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurefriendlyurlformat", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurefriendlyurlformat_plaintext", + "displayName": "The plain URL without any extra information, such as the page's title. This is the recommended option when this policy is configured. For more information, see the description.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurefriendlyurlformat_titledhyperlink", + "displayName": "Titled Hyperlink: A hyperlink that points to the copied URL, but whose visible text is the title of the destination page. This is the Friendly URL format.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurefriendlyurlformat_webpreview", + "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurefriendlyurlformat_recommended", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurefriendlyurlformat_recommended_plaintext", + "displayName": "The plain URL without any extra information, such as the page's title. This is the recommended option when this policy is configured. For more information, see the description.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurefriendlyurlformat_recommended_titledhyperlink", + "displayName": "Titled Hyperlink: A hyperlink that points to the copied URL, but whose visible text is the title of the destination page. This is the Friendly URL format.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurefriendlyurlformat_recommended_webpreview", + "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configurekeyboardshortcuts", + "displayName": "Configure the list of commands for which to disable keyboard shortcuts", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configureonlinetexttospeech", + "displayName": "Configure Online Text To Speech", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configureonlinetexttospeech_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configureonlinetexttospeech_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configureshare", + "displayName": "Configure the Share experience", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configureshare_shareallowed", + "displayName": "Allow using the Share experience", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.configureshare_sharedisallowed", + "displayName": "Don't allow using the Share experience", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_recommended", + "displayName": "Configure default state of Allow extensions from other stores setting (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cookiesallowedforurls", + "displayName": "Allow cookies on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cookiesblockedforurls", + "displayName": "Block cookies on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cookiessessiononlyforurls", + "displayName": "Limit cookies from specific websites to the current session", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.corsnonwildcardrequestheaderssupport", + "displayName": "CORS non-wildcard request header support enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.corsnonwildcardrequestheaderssupport_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.corsnonwildcardrequestheaderssupport_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.crossoriginwebassemblymodulesharingenabled", + "displayName": "Specifies whether WebAssembly modules can be sent cross-origin (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.crossoriginwebassemblymodulesharingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.crossoriginwebassemblymodulesharingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cryptowalletenabled", + "displayName": "Enable CryptoWallet feature", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cryptowalletenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.cryptowalletenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.customhelplink", + "displayName": "Specify custom help link", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultautomaticdownloadssetting", + "displayName": "Default automatic downloads setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultautomaticdownloadssetting_allowautomaticdownloads", + "displayName": "Allow all websites to perform automatic downloads", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultautomaticdownloadssetting_blockautomaticdownloads", + "displayName": "Don't allow any website to perform automatic downloads", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultclipboardsetting", + "displayName": "Default clipboard site permission", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultclipboardsetting_blockclipboard", + "displayName": "Do not allow any site to use the clipboard site permission", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultclipboardsetting_askclipboard", + "displayName": "Allow sites to ask the user to grant the clipboard site permission", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultcookiessetting", + "displayName": "Configure cookies", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultcookiessetting_allowcookies", + "displayName": "Let all sites create cookies", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultcookiessetting_blockcookies", + "displayName": "Don't let any site create cookies", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultcookiessetting_sessiononly", + "displayName": "Keep cookies for the duration of the session, except ones listed in \"SaveCookiesOnExit\"", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultfilesystemreadguardsetting_blockfilesystemread", + "displayName": "Don't allow any site to request read access to files and directories via the File System API", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultfilesystemreadguardsetting_askfilesystemread", + "displayName": "Allow sites to ask the user to grant read access to files and directories via the File System API", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultfilesystemwriteguardsetting_blockfilesystemwrite", + "displayName": "Don't allow any site to request write access to files and directories", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultfilesystemwriteguardsetting_askfilesystemwrite", + "displayName": "Allow sites to ask the user to grant write access to files and directories", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultgeolocationsetting", + "displayName": "Default geolocation setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultgeolocationsetting_allowgeolocation", + "displayName": "Allow sites to track users' physical location", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultgeolocationsetting_blockgeolocation", + "displayName": "Don't allow any site to track users' physical location", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultgeolocationsetting_askgeolocation", + "displayName": "Ask whenever a site wants to track users' physical location", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultimagessetting", + "displayName": "Default images setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultimagessetting_allowimages", + "displayName": "Allow all sites to show all images", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultimagessetting_blockimages", + "displayName": "Don't allow any site to show images", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultinsecurecontentsetting_blockinsecurecontent", + "displayName": "Do not allow any site to load mixed content", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultinsecurecontentsetting_allowexceptionsinsecurecontent", + "displayName": "Allow users to add exceptions to allow mixed content", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptjitsetting_allowjavascriptjit", + "displayName": "Allow any site to run JavaScript JIT", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptjitsetting_blockjavascriptjit", + "displayName": "Do not allow any site to run JavaScript JIT", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptsetting", + "displayName": "Default JavaScript setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptsetting_allowjavascript", + "displayName": "Allow all sites to run JavaScript", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptsetting_blockjavascript", + "displayName": "Don't allow any site to run JavaScript", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultnotificationssetting", + "displayName": "Default notification setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultnotificationssetting_allownotifications", + "displayName": "Allow sites to show desktop notifications", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultnotificationssetting_blocknotifications", + "displayName": "Don't allow any site to show desktop notifications", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultnotificationssetting_asknotifications", + "displayName": "Ask every time a site wants to show desktop notifications", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultpluginssetting", + "displayName": "Default Adobe Flash setting (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultpluginssetting_blockplugins", + "displayName": "Block the Adobe Flash plugin", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultpluginssetting_clicktoplay", + "displayName": "Click to play", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultpopupssetting", + "displayName": "Default pop-up window setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultpopupssetting_allowpopups", + "displayName": "Allow all sites to show pop-ups", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultpopupssetting_blockpopups", + "displayName": "Do not allow any site to show popups", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultprinterselection", + "displayName": "Default printer selection rules", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidercontextmenuaccessallowed", + "displayName": "Allow default search provider context menu search access", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidercontextmenuaccessallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidercontextmenuaccessallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderenabled", + "displayName": "Enable the default search provider", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderenabled_recommended", + "displayName": "Enable the default search provider (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderencodings", + "displayName": "Default search provider encodings", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderencodings_recommended", + "displayName": "Default search provider encodings (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderimageurl", + "displayName": "Specifies the search-by-image feature for the default search provider", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderimageurl_recommended", + "displayName": "Specifies the search-by-image feature for the default search provider (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for an image URL that uses POST", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderimageurlpostparams_recommended", + "displayName": "Parameters for an image URL that uses POST (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderkeyword", + "displayName": "Default search provider keyword", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchproviderkeyword_recommended", + "displayName": "Default search provider keyword (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidername", + "displayName": "Default search provider name", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidername_recommended", + "displayName": "Default search provider name (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidersearchurl_recommended", + "displayName": "Default search provider search URL (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidersuggesturl", + "displayName": "Default search provider URL for suggestions", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsearchprovidersuggesturl_recommended", + "displayName": "Default search provider URL for suggestions (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsensorssetting", + "displayName": "Default sensors setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsensorssetting_allowsensors", + "displayName": "Allow sites to access sensors", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultsensorssetting_blocksensors", + "displayName": "Do not allow any site to access sensors", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultserialguardsetting", + "displayName": "Control use of the Serial API", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultserialguardsetting_blockserial", + "displayName": "Do not allow any site to request access to serial ports via the Serial API", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultserialguardsetting_askserial", + "displayName": "Allow sites to ask for user permission to access a serial port", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultshareadditionalosregionsetting", + "displayName": "Set the default \"share additional operating system region\" setting", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultshareadditionalosregionsetting_limited", + "displayName": "Limited", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultshareadditionalosregionsetting_always", + "displayName": "Always share the OS Regional format", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultshareadditionalosregionsetting_never", + "displayName": "Never share the OS Regional format", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultshareadditionalosregionsetting_recommended", + "displayName": "Set the default \"share additional operating system region\" setting (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultshareadditionalosregionsetting_recommended_limited", + "displayName": "Limited", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultshareadditionalosregionsetting_recommended_always", + "displayName": "Always share the OS Regional format", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultshareadditionalosregionsetting_recommended_never", + "displayName": "Never share the OS Regional format", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebbluetoothguardsetting_blockwebbluetooth", + "displayName": "Do not allow any site to request access to Bluetooth devices via the Web Bluetooth API", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebbluetoothguardsetting_askwebbluetooth", + "displayName": "Allow sites to ask the user to grant access to a nearby Bluetooth device", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebhidguardsetting", + "displayName": "Control use of the WebHID API", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebhidguardsetting_blockwebhid", + "displayName": "Do not allow any site to request access to HID devices via the WebHID API", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebhidguardsetting_askwebhid", + "displayName": "Allow sites to ask the user to grant access to a HID device", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebusbguardsetting_blockwebusb", + "displayName": "Do not allow any site to request access to USB devices via the WebUSB API", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebusbguardsetting_askwebusb", + "displayName": "Allow sites to ask the user to grant access to a connected USB device", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.definepreferredlanguages", + "displayName": "Define an ordered list of preferred languages that websites should display in if the site supports the language", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.delaynavigationsforinitialsitelistdownload", + "displayName": "Require that the Enterprise Mode Site List is available before tab navigation", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.delaynavigationsforinitialsitelistdownload_none", + "displayName": "None", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.delaynavigationsforinitialsitelistdownload_all", + "displayName": "All eligible navigations", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.developertoolsavailability", + "displayName": "Control where developer tools can be used", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.developertoolsavailability_developertoolsdisallowedforforceinstalledextensions", + "displayName": "Block the developer tools on extensions installed by enterprise policy, allow in other contexts", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.developertoolsavailability_developertoolsallowed", + "displayName": "Allow using the developer tools", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.developertoolsavailability_developertoolsdisallowed", + "displayName": "Don't allow using the developer tools", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.disable3dapis", + "displayName": "Disable support for 3D graphics APIs", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.disable3dapis_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.disable3dapis_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.displaycapturepermissionspolicyenabled", + "displayName": "Specifies whether the display-capture permissions-policy is checked or skipped (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.displaycapturepermissionspolicyenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.displaycapturepermissionspolicyenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.donotsilentlyblockprotocolsfromorigins", + "displayName": "Define a list of protocols that can not be silently blocked by anti-flood protection", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.doubleclickclosetabenabled", + "displayName": "Double Click feature in Microsoft Edge enabled (only available in China)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.doubleclickclosetabenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.doubleclickclosetabenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloaddirectory", + "displayName": "Set download directory", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloaddirectory_recommended", + "displayName": "Set download directory (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions", + "displayName": "Allow download restrictions", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_defaultdownloadsecurity", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_blockdangerousdownloads", + "displayName": "Block malicious downloads and dangerous file types", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_blockpotentiallydangerousdownloads", + "displayName": "Block potentially dangerous or unwanted downloads and dangerous file types", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_blockalldownloads", + "displayName": "Block all downloads", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_blockmaliciousdownloads", + "displayName": "Block malicious downloads", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_recommended", + "displayName": "Allow download restrictions (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_recommended_defaultdownloadsecurity", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_recommended_blockdangerousdownloads", + "displayName": "Block malicious downloads and dangerous file types", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_recommended_blockpotentiallydangerousdownloads", + "displayName": "Block potentially dangerous or unwanted downloads and dangerous file types", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_recommended_blockalldownloads", + "displayName": "Block all downloads", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.downloadrestrictions_recommended_blockmaliciousdownloads", + "displayName": "Block malicious downloads", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeassetdeliveryserviceenabled", + "displayName": "Allow features to download assets from the Asset Delivery Service", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeassetdeliveryserviceenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeassetdeliveryserviceenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeassetdeliveryserviceenabled_recommended", + "displayName": "Allow features to download assets from the Asset Delivery Service (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeassetdeliveryserviceenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeassetdeliveryserviceenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgecollectionsenabled", + "displayName": "Enable the Collections feature", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgecollectionsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgecollectionsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgediscoverenabled", + "displayName": "Discover feature In Microsoft Edge (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgediscoverenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgediscoverenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgediscoverenabled_recommended", + "displayName": "Discover feature In Microsoft Edge (Obsolete) (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgediscoverenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgediscoverenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeedropenabled", + "displayName": "Enable Drop feature in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeedropenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeedropenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeenhanceimagesenabled", + "displayName": "Enhance images enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeenhanceimagesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeenhanceimagesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgefollowenabled", + "displayName": "Enable Follow service in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgefollowenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgefollowenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeshoppingassistantenabled", + "displayName": "Shopping in Microsoft Edge Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeshoppingassistantenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeshoppingassistantenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeshoppingassistantenabled_recommended", + "displayName": "Shopping in Microsoft Edge Enabled (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeshoppingassistantenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeshoppingassistantenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeworkspacesenabled", + "displayName": "Enable Workspaces", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeworkspacesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeworkspacesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.editfavoritesenabled", + "displayName": "Allows users to edit favorites", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.editfavoritesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.editfavoritesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enabledeprecatedwebplatformfeatures", + "displayName": "Re-enable deprecated web platform features for a limited time (Obsolete)", + "options": { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enabledeprecatedwebplatformfeatures_exampledeprecatedfeature", + "displayName": "Enable ExampleDeprecatedFeature API through 2008/09/02", + "description": null + } + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enablemediarouter", + "displayName": "Enable Google Cast", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enablemediarouter_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enablemediarouter_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymode_standardmode", + "displayName": "Standard mode", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymode_balancedmode", + "displayName": "Balanced mode", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymode_strictmode", + "displayName": "Strict mode", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymode_basicmode", + "displayName": "Basic mode", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodebypassintranet", + "displayName": "Enhanced Security Mode configuration for Intranet zone sites", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodebypassintranet_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodebypassintranet_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodebypasslistdomains", + "displayName": "Configure the list of domains for which enhance security mode will not be enforced", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeenforcelistdomains", + "displayName": "Configure the list of domains for which enhance security mode will always be enforced", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enterprisehardwareplatformapienabled", + "displayName": "Allow managed extensions to use the Enterprise Hardware Platform API", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enterprisehardwareplatformapienabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enterprisehardwareplatformapienabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enterprisemodesitelistmanagerallowed", + "displayName": "Allow access to the Enterprise Mode Site List Manager tool", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enterprisemodesitelistmanagerallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.enterprisemodesitelistmanagerallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.eventpathenabled", + "displayName": "Re-enable the Event.path API until Microsoft Edge version 115", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.eventpathenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.eventpathenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.exemptdomainfiletypepairsfromfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains (Obsolete)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.exemptfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes", + "displayName": "Configure allowed extension types", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes_extension", + "displayName": "Extension", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes_theme", + "displayName": "Theme", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes_user_script", + "displayName": "User script", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes_hosted_app", + "displayName": "Hosted app", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes_legacy_packaged_app", + "displayName": "Legacy packaged app", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes_platform_app", + "displayName": "Platform app", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstallallowlist", + "displayName": "Allow specific extensions to be installed", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstallblocklist", + "displayName": "Control which extensions cannot be installed", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstallforcelist", + "displayName": "Control which extensions are installed silently", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstallsources", + "displayName": "Configure extension and user script install sources", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsettings", + "displayName": "Configure extension management settings", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.externalprotocoldialogshowalwaysopencheckbox", + "displayName": "Show an \"Always open\" checkbox in external protocol dialog", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.externalprotocoldialogshowalwaysopencheckbox_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.externalprotocoldialogshowalwaysopencheckbox_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.familysafetysettingsenabled", + "displayName": "Allow users to configure Family safety and Kids Mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.familysafetysettingsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.familysafetysettingsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.favoritesbarenabled", + "displayName": "Enable favorites bar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.favoritesbarenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.favoritesbarenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.favoritesbarenabled_recommended", + "displayName": "Enable favorites bar (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.favoritesbarenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.favoritesbarenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on shutdown", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.filesystemreadaskforurls", + "displayName": "Allow read access via the File System API on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.filesystemreadblockedforurls", + "displayName": "Block read access via the File System API on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.filesystemwriteaskforurls", + "displayName": "Allow write access to files and directories on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.filesystemwriteblockedforurls", + "displayName": "Block write access to files and directories on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcebingsafesearch", + "displayName": "Enforce Bing SafeSearch", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcebingsafesearch_bingsafesearchnorestrictionsmode", + "displayName": "Don't configure search restrictions in Bing", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcebingsafesearch_bingsafesearchmoderatemode", + "displayName": "Configure moderate search restrictions in Bing", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcebingsafesearch_bingsafesearchstrictmode", + "displayName": "Configure strict search restrictions in Bing", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forceephemeralprofiles", + "displayName": "Enable use of ephemeral profiles", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forceephemeralprofiles_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forceephemeralprofiles_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcegooglesafesearch", + "displayName": "Enforce Google SafeSearch", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcegooglesafesearch_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcegooglesafesearch_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcemajorversiontominorpositioninuseragent", + "displayName": "Enable or disable freezing the User-Agent string at major version 99", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcemajorversiontominorpositioninuseragent_default", + "displayName": "Default to browser settings for User-Agent string version.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcemajorversiontominorpositioninuseragent_forcedisabled", + "displayName": "The User-Agent string will not freeze the major version.", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcemajorversiontominorpositioninuseragent_forceenabled", + "displayName": "The User-Agent string will freeze the major version as 99 and include the browser's major version in the minor position.", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcesync", + "displayName": "Force synchronization of browser data and do not show the sync consent prompt", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcesync_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcesync_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forcesynctypes", + "displayName": "Configure the list of types that are included for synchronization", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forceyoutuberestrict_off", + "displayName": "Do not enforce Restricted Mode on YouTube", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forceyoutuberestrict_moderate", + "displayName": "Enforce at least Moderate Restricted Mode on YouTube", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.forceyoutuberestrict_strict", + "displayName": "Enforce Strict Restricted Mode for YouTube", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.fullscreenallowed", + "displayName": "Allow full screen mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.fullscreenallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.fullscreenallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.globallyscopehttpauthcacheenabled", + "displayName": "Enable globally scoped HTTP auth cache", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.globallyscopehttpauthcacheenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.globallyscopehttpauthcacheenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.homepageisnewtabpage", + "displayName": "Set the new tab page as the home page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.homepageisnewtabpage_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.homepageisnewtabpage_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.homepageisnewtabpage_recommended", + "displayName": "Set the new tab page as the home page (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.homepageisnewtabpage_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.homepageisnewtabpage_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.homepagelocation", + "displayName": "Configure the home page URL", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.homepagelocation_recommended", + "displayName": "Configure the home page URL (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.hstspolicybypasslist", + "displayName": "Configure the list of names that will bypass the HSTS policy check", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.hubssidebarenabled", + "displayName": "Show Hubs Sidebar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.hubssidebarenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.hubssidebarenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.hubssidebarenabled_recommended", + "displayName": "Show Hubs Sidebar (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.hubssidebarenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.hubssidebarenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.imagesallowedforurls", + "displayName": "Allow images on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.imagesblockedforurls", + "displayName": "Block images on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereadergrammartoolsenabled", + "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereadergrammartoolsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereadergrammartoolsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereaderpicturedictionaryenabled", + "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereaderpicturedictionaryenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereaderpicturedictionaryenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importautofillformdata", + "displayName": "Allow importing of autofill form data", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importautofillformdata_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importautofillformdata_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importautofillformdata_recommended", + "displayName": "Allow importing of autofill form data (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importautofillformdata_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importautofillformdata_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importbrowsersettings", + "displayName": "Allow importing of browser settings", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importbrowsersettings_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importbrowsersettings_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importbrowsersettings_recommended", + "displayName": "Allow importing of browser settings (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importbrowsersettings_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importbrowsersettings_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importcookies", + "displayName": "Allow importing of Cookies", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importcookies_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importcookies_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importcookies_recommended", + "displayName": "Allow importing of Cookies (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importcookies_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importcookies_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importextensions", + "displayName": "Allow importing of extensions", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importextensions_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importextensions_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importextensions_recommended", + "displayName": "Allow importing of extensions (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importextensions_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importextensions_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importfavorites", + "displayName": "Allow importing of favorites", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importfavorites_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importfavorites_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importfavorites_recommended", + "displayName": "Allow importing of favorites (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importfavorites_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importfavorites_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhistory", + "displayName": "Allow importing of browsing history", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhistory_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhistory_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhistory_recommended", + "displayName": "Allow importing of browsing history (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhistory_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhistory_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhomepage", + "displayName": "Allow importing of home page settings", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhomepage_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importhomepage_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importoneachlaunch", + "displayName": "Allow import of data from other browsers on each Microsoft Edge launch", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importoneachlaunch_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importoneachlaunch_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importopentabs", + "displayName": "Allow importing of open tabs", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importopentabs_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importopentabs_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importopentabs_recommended", + "displayName": "Allow importing of open tabs (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importopentabs_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importopentabs_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importpaymentinfo", + "displayName": "Allow importing of payment info", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importpaymentinfo_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importpaymentinfo_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importpaymentinfo_recommended", + "displayName": "Allow importing of payment info (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importpaymentinfo_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importpaymentinfo_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsavedpasswords", + "displayName": "Allow importing of saved passwords", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsavedpasswords_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsavedpasswords_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsavedpasswords_recommended", + "displayName": "Allow importing of saved passwords (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsavedpasswords_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsavedpasswords_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsearchengine", + "displayName": "Allow importing of search engine settings", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsearchengine_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsearchengine_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsearchengine_recommended", + "displayName": "Allow importing of search engine settings (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsearchengine_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importsearchengine_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importshortcuts", + "displayName": "Allow importing of shortcuts", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importshortcuts_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importshortcuts_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importshortcuts_recommended", + "displayName": "Allow importing of shortcuts (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importshortcuts_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importshortcuts_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importstartuppagesettings", + "displayName": "Allow importing of startup page settings", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importstartuppagesettings_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importstartuppagesettings_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importstartuppagesettings_recommended", + "displayName": "Allow importing of startup page settings (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importstartuppagesettings_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.importstartuppagesettings_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.inprivatemodeavailability", + "displayName": "Configure InPrivate mode availability", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.inprivatemodeavailability_enabled", + "displayName": "InPrivate mode available", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.inprivatemodeavailability_disabled", + "displayName": "InPrivate mode disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.inprivatemodeavailability_forced", + "displayName": "InPrivate mode forced", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecurecontentallowedforurls", + "displayName": "Allow insecure content on specified sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecurecontentblockedforurls", + "displayName": "Block insecure content on specified sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureformswarningsenabled", + "displayName": "Enable warnings for insecure forms", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureformswarningsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureformswarningsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowed", + "displayName": "Specifies whether to allow websites to make requests to more-private network endpoints", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowedforurls", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from in an insecure manner", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationalwaysuseoscapture", + "displayName": "Always use the OS capture engine to avoid issues with capturing Internet Explorer mode tabs", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationalwaysuseoscapture_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationalwaysuseoscapture_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationalwayswaitforunload", + "displayName": "Wait for Internet Explorer mode tabs to completely unload before ending the browser session", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationalwayswaitforunload_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationalwayswaitforunload_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationcloudneutralsitesreporting", + "displayName": "Configure reporting of potentially misconfigured neutral site URLs to the M365 Admin Center Site Lists app", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationcloudsitelist", + "displayName": "Configure the Enterprise Mode Cloud Site List", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationcloudusersitesreporting", + "displayName": "Configure reporting of IE Mode user list entries to the M365 Admin Center Site Lists app", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationcomplexnavdatatypes", + "displayName": "Configure whether form data and HTTP headers will be sent when entering or exiting Internet Explorer mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationcomplexnavdatatypes_includenone", + "displayName": "Do not send form data or headers", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationcomplexnavdatatypes_includeformdataonly", + "displayName": "Send form data only", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationcomplexnavdatatypes_includeheadersonly", + "displayName": "Send additional headers only", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationcomplexnavdatatypes_includeformdataandheaders", + "displayName": "Send form data and additional headers", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationenhancedhangdetection", + "displayName": "Configure enhanced hang detection for Internet Explorer mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationenhancedhangdetection_disabled", + "displayName": "Enhanced hang detection disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationenhancedhangdetection_enabled", + "displayName": "Enhanced hang detection enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlevel", + "displayName": "Configure Internet Explorer integration", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlevel_none", + "displayName": "None", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlevel_iemode", + "displayName": "Internet Explorer mode", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlevel_needie", + "displayName": "Internet Explorer 11", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalfileallowed", + "displayName": "Allow launching of local files in Internet Explorer mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalfileallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalfileallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalfileextensionallowlist", + "displayName": "Open local files in Internet Explorer mode file extension allow list", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalfileshowcontextmenu", + "displayName": "Show context menu to open a file:// link in Internet Explorer mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalfileshowcontextmenu_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalfileshowcontextmenu_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalmhtfileallowed", + "displayName": "Allow local MHTML files to open automatically in Internet Explorer mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalmhtfileallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationlocalmhtfileallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationreloadiniemodeallowed", + "displayName": "Allow unconfigured sites to be reloaded in Internet Explorer mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationreloadiniemodeallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationreloadiniemodeallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationreloadiniemodeallowed_recommended", + "displayName": "Allow unconfigured sites to be reloaded in Internet Explorer mode (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationreloadiniemodeallowed_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationreloadiniemodeallowed_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationsitelist", + "displayName": "Configure the Enterprise Mode Site List", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationsitelistrefreshinterval", + "displayName": "Configure how frequently the Enterprise Mode Site List is refreshed", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationsiteredirect", + "displayName": "Specify how \"in-page\" navigations to unconfigured sites behave when started from Internet Explorer mode pages", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationsiteredirect_default", + "displayName": "Default", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationsiteredirect_automaticnavigationsonly", + "displayName": "Keep only automatic navigations in Internet Explorer mode", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationsiteredirect_allinpagenavigations", + "displayName": "Keep all in-page navigations in Internet Explorer mode", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationtestingallowed", + "displayName": "Allow Internet Explorer mode testing (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationtestingallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationtestingallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationwindowopenheightadjustment", + "displayName": "Configure the pixel adjustment between window.open heights sourced from IE mode pages vs. Edge mode pages", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationwindowopenwidthadjustment", + "displayName": "Configure the pixel adjustment between window.open widths sourced from IE mode pages vs. Edge mode pages", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodecleardataonexitenabled", + "displayName": "Clear history for IE and IE mode every time you exit", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodecleardataonexitenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodecleardataonexitenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodeenablesavepageas", + "displayName": "Allow Save page as in Internet Explorer mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodeenablesavepageas_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodeenablesavepageas_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetabinedgemodeallowed", + "displayName": "Allow sites configured for Internet Explorer mode to open in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetabinedgemodeallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetabinedgemodeallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetoolbarbuttonenabled", + "displayName": "Show the Reload in Internet Explorer mode button in the toolbar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetoolbarbuttonenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetoolbarbuttonenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetoolbarbuttonenabled_recommended", + "displayName": "Show the Reload in Internet Explorer mode button in the toolbar (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetoolbarbuttonenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodetoolbarbuttonenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerzoomdisplay", + "displayName": "Display zoom in IE Mode tabs with DPI Scale included like it is in Internet Explorer", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerzoomdisplay_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerzoomdisplay_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.intranetfilelinksenabled", + "displayName": "Allow intranet zone file URL links from Microsoft Edge to open in Windows File Explorer", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.intranetfilelinksenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.intranetfilelinksenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.javascriptallowedforurls", + "displayName": "Allow JavaScript on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.javascriptblockedforurls", + "displayName": "Block JavaScript on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.javascriptjitallowedforsites", + "displayName": "Allow JavaScript to use JIT on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.javascriptjitblockedforsites", + "displayName": "Block JavaScript from using JIT on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.legacysamesitecookiebehaviorenabled", + "displayName": "Enable default legacy SameSite cookie behavior setting (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.legacysamesitecookiebehaviorenabled_defaulttolegacysamesitecookiebehavior", + "displayName": "Revert to legacy SameSite behavior for cookies on all sites", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.legacysamesitecookiebehaviorenabled_defaulttosamesitebydefaultcookiebehavior", + "displayName": "Use SameSite-by-default behavior for cookies on all sites", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.legacysamesitecookiebehaviorenabledfordomainlist", + "displayName": "Revert to legacy SameSite behavior for cookies on specified sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.linkedaccountenabled", + "displayName": "Enable the linked account feature", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.linkedaccountenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.linkedaccountenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.livecaptionsallowed", + "displayName": "Live captions allowed", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.livecaptionsallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.livecaptionsallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localbrowserdatashareenabled", + "displayName": "Enable Windows to search local Microsoft Edge browsing data", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localbrowserdatashareenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localbrowserdatashareenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localbrowserdatashareenabled_recommended", + "displayName": "Enable Windows to search local Microsoft Edge browsing data (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localbrowserdatashareenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localbrowserdatashareenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localprovidersenabled", + "displayName": "Allow suggestions from local providers", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localprovidersenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localprovidersenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localprovidersenabled_recommended", + "displayName": "Allow suggestions from local providers (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localprovidersenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.localprovidersenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.managedconfigurationperorigin", + "displayName": "Sets managed configuration values for websites to specific origins", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.managedfavorites", + "displayName": "Configure favorites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.managedsearchengines", + "displayName": "Manage Search Engines", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.managedsearchengines_recommended", + "displayName": "Manage Search Engines (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoftedgeinsiderpromotionenabled", + "displayName": "Microsoft Edge Insider Promotion Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoftedgeinsiderpromotionenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoftedgeinsiderpromotionenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsofteditorproofingenabled", + "displayName": "Spell checking provided by Microsoft Editor", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsofteditorproofingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsofteditorproofingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsofteditorsynonymsenabled", + "displayName": "Synonyms are provided when using Microsoft Editor spell checker", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsofteditorsynonymsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsofteditorsynonymsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoftofficemenuenabled", + "displayName": "Allow users to access the Microsoft Office menu (Deprecated)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoftofficemenuenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoftofficemenuenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.mousegestureenabled", + "displayName": "Mouse Gesture Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.mousegestureenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.mousegestureenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.nativemessagingallowlist", + "displayName": "Control which native messaging hosts users can use", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.nativemessagingblocklist", + "displayName": "Configure native messaging block list", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.nativemessaginguserlevelhosts", + "displayName": "Allow user-level native messaging hosts (installed without admin permissions)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.nativemessaginguserlevelhosts_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.nativemessaginguserlevelhosts_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.navigationdelayforinitialsitelistdownloadtimeout", + "displayName": "Set a timeout for delay of tab navigation for the Enterprise Mode Site List", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.networkpredictionoptions", + "displayName": "Enable network prediction", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.networkpredictionoptions_networkpredictionalways", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.networkpredictionoptions_networkpredictionwifionly", + "displayName": "Not supported, if this value is used it will be treated as if 'Predict network actions on any network connection' (0) was set", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.networkpredictionoptions_networkpredictionnever", + "displayName": "Don't predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.networkpredictionoptions_recommended", + "displayName": "Enable network prediction (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.networkpredictionoptions_recommended_networkpredictionalways", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.networkpredictionoptions_recommended_networkpredictionwifionly", + "displayName": "Not supported, if this value is used it will be treated as if 'Predict network actions on any network connection' (0) was set", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.networkpredictionoptions_recommended_networkpredictionnever", + "displayName": "Don't predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newpdfreaderenabled", + "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newpdfreaderenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newpdfreaderenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newpdfreaderenabled_recommended", + "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newpdfreaderenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newpdfreaderenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageallowedbackgroundtypes", + "displayName": "Configure the background types allowed for the new tab page layout", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageallowedbackgroundtypes_disableimageoftheday", + "displayName": "Disable daily background image type", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageallowedbackgroundtypes_disablecustomimage", + "displayName": "Disable custom background image type", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageallowedbackgroundtypes_disableall", + "displayName": "Disable all background image types", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageapplauncherenabled", + "displayName": "Hide App Launcher on Microsoft Edge new tab page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageapplauncherenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageapplauncherenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogo", + "displayName": "Set new tab page company logo (Obsolete)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecontentenabled", + "displayName": "Allow Microsoft News content on the new tab page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecontentenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecontentenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagehidedefaulttopsites", + "displayName": "Hide the default top sites from the new tab page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagehidedefaulttopsites_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagehidedefaulttopsites_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagelocation", + "displayName": "Configure the new tab page URL", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagelocation_recommended", + "displayName": "Configure the new tab page URL (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagemanagedquicklinks", + "displayName": "Set new tab page quick links", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagemanagedquicklinks_recommended", + "displayName": "Set new tab page quick links (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageprerenderenabled", + "displayName": "Enable preload of the new tab page for faster rendering", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageprerenderenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageprerenderenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageprerenderenabled_recommended", + "displayName": "Enable preload of the new tab page for faster rendering (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageprerenderenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpageprerenderenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagequicklinksenabled", + "displayName": "Allow quick links on the new tab page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagequicklinksenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagequicklinksenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesearchbox", + "displayName": "Configure the new tab page search box experience", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesearchbox_bing", + "displayName": "Search box (Recommended)", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesearchbox_redirect", + "displayName": "Address bar", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesearchbox_recommended", + "displayName": "Configure the new tab page search box experience (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesearchbox_recommended_bing", + "displayName": "Search box (Recommended)", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesearchbox_recommended_redirect", + "displayName": "Address bar", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesetfeedtype", + "displayName": "Configure the Microsoft Edge new tab page experience (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesetfeedtype_news", + "displayName": "Microsoft News feed experience", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesetfeedtype_office", + "displayName": "Office 365 feed experience", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesetfeedtype_recommended", + "displayName": "Configure the Microsoft Edge new tab page experience (Obsolete) (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesetfeedtype_recommended_news", + "displayName": "Microsoft News feed experience", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagesetfeedtype_recommended_office", + "displayName": "Office 365 feed experience", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.notificationsallowedforurls", + "displayName": "Allow notifications on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.notificationsblockedforurls", + "displayName": "Block notifications on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.originagentclusterdefaultenabled", + "displayName": "Origin-keyed agent clustering enabled by default", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.originagentclusterdefaultenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.originagentclusterdefaultenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.outlookhubmenuenabled", + "displayName": "Allow users to access the Outlook menu (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.outlookhubmenuenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.outlookhubmenuenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.outlookhubmenuenabled_recommended", + "displayName": "Allow users to access the Outlook menu (Obsolete) (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.outlookhubmenuenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.outlookhubmenuenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordgeneratorenabled", + "displayName": "Allow users to get a strong password suggestion whenever they are creating an account online", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordgeneratorenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordgeneratorenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerblocklist", + "displayName": "Configure the list of domains for which the password manager UI (Save and Fill) will be disabled", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerenabled", + "displayName": "Enable saving passwords to the password manager", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerenabled_recommended", + "displayName": "Enable saving passwords to the password manager (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerrestrictlengthenabled", + "displayName": "Restrict the length of passwords that can be saved in the Password Manager", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerrestrictlengthenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmanagerrestrictlengthenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmonitorallowed", + "displayName": "Allow users to be alerted if their passwords are found to be unsafe", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmonitorallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmonitorallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmonitorallowed_recommended", + "displayName": "Allow users to be alerted if their passwords are found to be unsafe (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmonitorallowed_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordmonitorallowed_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordprotectionloginurls", + "displayName": "Configure the list of enterprise login URLs where the password protection service should capture salted hashes of a password", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordprotectionwarningtrigger", + "displayName": "Configure password protection warning trigger", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordprotectionwarningtrigger_passwordprotectionwarningoff", + "displayName": "Password protection warning is off", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordprotectionwarningtrigger_passwordprotectionwarningonpasswordreuse", + "displayName": "Password protection warning is triggered by password reuse", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_recommended", + "displayName": "Enable Password reveal button (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.paymentmethodqueryenabled", + "displayName": "Allow websites to query for available payment methods", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.paymentmethodqueryenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.paymentmethodqueryenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfsecuremode", + "displayName": "Secure mode and Certificate-based Digital Signature validation in native PDF reader", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfsecuremode_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfsecuremode_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfxfaenabled", + "displayName": "XFA support in native PDF reader enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfxfaenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfxfaenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.performancedetectorenabled", + "displayName": "Performance Detector Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.performancedetectorenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.performancedetectorenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.performancedetectorenabled_recommended", + "displayName": "Performance Detector Enabled (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.performancedetectorenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.performancedetectorenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizationreportingenabled", + "displayName": "Allow personalization of ads, Microsoft Edge, search, news and other Microsoft services by sending browsing history, favorites and collections, usage and other browsing data to Microsoft", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizationreportingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizationreportingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pluginsallowedforurls", + "displayName": "Allow the Adobe Flash plug-in on specific sites (Obsolete)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.pluginsblockedforurls", + "displayName": "Block the Adobe Flash plug-in on specific sites (Obsolete)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.popupsallowedforurls", + "displayName": "Allow pop-up windows on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.popupsblockedforurls", + "displayName": "Block pop-up windows on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventsmartscreenpromptoverride", + "displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventsmartscreenpromptoverride_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventsmartscreenpromptoverride_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventsmartscreenpromptoverrideforfiles", + "displayName": "Prevent bypassing of Microsoft Defender SmartScreen warnings about downloads", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventsmartscreenpromptoverrideforfiles_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.preventsmartscreenpromptoverrideforfiles_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.primarypasswordsetting_automatically", + "displayName": "Automatically", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.primarypasswordsetting_withdevicepassword", + "displayName": "With device password", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.primarypasswordsetting_withcustomprimarypassword", + "displayName": "With custom primary password", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.primarypasswordsetting_autofilloff", + "displayName": "Autofill off", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printertypedenylist", + "displayName": "Disable printer types on the deny list", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printertypedenylist_privet", + "displayName": "Zeroconf-based (mDNS + DNS-SD) protocol destinations", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printertypedenylist_extension", + "displayName": "Extension-based destinations", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printertypedenylist_pdf", + "displayName": "The 'Save as PDF' destination. (93 or later, also disables from context menu)", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printertypedenylist_local", + "displayName": "Local printer destinations", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printertypedenylist_onedrive", + "displayName": "Save as PDF (OneDrive) printer destinations. (103 or later)", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingallowedbackgroundgraphicsmodes_any", + "displayName": "Allow printing with and without background graphics", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingallowedbackgroundgraphicsmodes_enabled", + "displayName": "Allow printing only with background graphics", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingallowedbackgroundgraphicsmodes_disabled", + "displayName": "Allow printing only without background graphics", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingbackgroundgraphicsdefault_enabled", + "displayName": "Enable background graphics printing mode by default", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingbackgroundgraphicsdefault_disabled", + "displayName": "Disable background graphics printing mode by default", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingenabled", + "displayName": "Enable printing", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingpapersizedefault", + "displayName": "Default printing page size", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingwebpagelayout", + "displayName": "Sets layout for printing", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingwebpagelayout_portrait", + "displayName": "Sets layout option as portrait", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingwebpagelayout_landscape", + "displayName": "Sets layout option as landscape", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingwebpagelayout_recommended", + "displayName": "Sets layout for printing (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingwebpagelayout_recommended_portrait", + "displayName": "Sets layout option as portrait", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printingwebpagelayout_recommended_landscape", + "displayName": "Sets layout option as landscape", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpostscriptmode", + "displayName": "Print PostScript Mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpostscriptmode_default", + "displayName": "Default", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpostscriptmode_type42", + "displayName": "Type42", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpreviewstickysettings", + "displayName": "Configure the sticky print preview settings", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpreviewstickysettings_recommended", + "displayName": "Configure the sticky print preview settings (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpreviewusesystemdefaultprinter", + "displayName": "Set the system default printer as the default printer", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpreviewusesystemdefaultprinter_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpreviewusesystemdefaultprinter_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpreviewusesystemdefaultprinter_recommended", + "displayName": "Set the system default printer as the default printer (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpreviewusesystemdefaultprinter_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printpreviewusesystemdefaultprinter_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printrasterizationmode", + "displayName": "Print Rasterization Mode", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printrasterizationmode_full", + "displayName": "Full page rasterization", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printrasterizationmode_fast", + "displayName": "Avoid rasterization if possible", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printstickysettings", + "displayName": "Print preview sticky settings", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printstickysettings_enableall", + "displayName": "Enable sticky settings for PDF and Webpages", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printstickysettings_disableall", + "displayName": "Disable sticky settings for PDF and Webpages", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printstickysettings_disablepdf", + "displayName": "Disable sticky settings for PDF", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.printstickysettings_disablewebpage", + "displayName": "Disable sticky settings for Webpages", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthenabled", + "displayName": "Enable Proactive Authentication (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.promptfordownloadlocation", + "displayName": "Ask where to save downloaded files", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.promptfordownloadlocation_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.promptfordownloadlocation_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.promptonmultiplematchingcertificates", + "displayName": "Prompt the user to select a certificate when multiple certificates match", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.promptonmultiplematchingcertificates_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.promptonmultiplematchingcertificates_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxybypasslist", + "displayName": "Configure proxy bypass rules (Deprecated)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxymode", + "displayName": "Configure proxy server settings (Deprecated)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxymode_proxydisabled", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxymode_proxyautodetect", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxymode_proxypacscript", + "displayName": "Use a .pac proxy script", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxymode_proxyfixedservers", + "displayName": "Use fixed proxy servers", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxymode_proxyusesystem", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxypacurl", + "displayName": "Set the proxy .pac file URL (Deprecated)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxyserver", + "displayName": "Configure address or URL of proxy server (Deprecated)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.proxysettings", + "displayName": "Proxy settings", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quicksearchshowminimenu", + "displayName": "Enables Microsoft Edge mini menu", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quicksearchshowminimenu_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quicksearchshowminimenu_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quicksearchshowminimenu_recommended", + "displayName": "Enables Microsoft Edge mini menu (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quicksearchshowminimenu_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quicksearchshowminimenu_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quickviewofficefilesenabled", + "displayName": "Manage QuickView Office files capability in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quickviewofficefilesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.quickviewofficefilesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.readaloudenabled", + "displayName": "Enable Read Aloud feature in Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.readaloudenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.readaloudenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.registeredprotocolhandlers_recommended", + "displayName": "Register protocol handlers (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedmatchescloudserviceenabled", + "displayName": "Configure Related Matches in Find on Page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedmatchescloudserviceenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedmatchescloudserviceenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.resolvenavigationerrorsusewebservice", + "displayName": "Enable resolution of navigation errors using a web service", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.resolvenavigationerrorsusewebservice_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.resolvenavigationerrorsusewebservice_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.resolvenavigationerrorsusewebservice_recommended", + "displayName": "Enable resolution of navigation errors using a web service (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.resolvenavigationerrorsusewebservice_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.resolvenavigationerrorsusewebservice_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup", + "displayName": "Action to take on startup", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupisnewtabpage", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupislastsession", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupisurls", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended", + "displayName": "Action to take on startup (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupisnewtabpage", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupislastsession", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupisurls", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartupurls", + "displayName": "Sites to open when the browser starts", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartupurls_recommended", + "displayName": "Sites to open when the browser starts (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartupuserurlsenabled", + "displayName": "Allow users to add and remove their own sites during startup when the RestoreOnStartupURLs policy is configured", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartupuserurlsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartupuserurlsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restorepdfview", + "displayName": "Restore PDF view", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restorepdfview_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.restorepdfview_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.runallflashinallowmode", + "displayName": "Extend Adobe Flash content setting to all content (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.runallflashinallowmode_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.runallflashinallowmode_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sameorigintabcaptureallowedbyorigins", + "displayName": "Allow Same Origin Tab capture by these origins", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sandboxexternalprotocolblocked", + "displayName": "Allow Microsoft Edge to block navigations to external protocols in a sandboxed iframe", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sandboxexternalprotocolblocked_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sandboxexternalprotocolblocked_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.savecookiesonexit", + "displayName": "Save cookies when Microsoft Edge closes", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.savingbrowserhistorydisabled", + "displayName": "Disable saving browser history", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.savingbrowserhistorydisabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.savingbrowserhistorydisabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.screencaptureallowed", + "displayName": "Allow or deny screen capture", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.screencaptureallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.screencaptureallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.screencaptureallowedbyorigins", + "displayName": "Allow Desktop, Window, and Tab capture by these origins", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.scrolltotextfragmentenabled", + "displayName": "Enable scrolling to text specified in URL fragments", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.scrolltotextfragmentenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.scrolltotextfragmentenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchfiltersenabled", + "displayName": "Search Filters Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchfiltersenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchfiltersenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchfiltersenabled_recommended", + "displayName": "Search Filters Enabled (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchfiltersenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchfiltersenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchinsidebarenabled", + "displayName": "Search in Sidebar enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchinsidebarenabled_enablesearchinsidebar", + "displayName": "Enable search in sidebar", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchinsidebarenabled_disablesearchinsidebarforkidsmode", + "displayName": "Disable search in sidebar for Kids Mode", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchinsidebarenabled_disablesearchinsidebar", + "displayName": "Disable search in sidebar", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchsuggestenabled", + "displayName": "Enable search suggestions", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchsuggestenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchsuggestenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchsuggestenabled_recommended", + "displayName": "Enable search suggestions (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchsuggestenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.searchsuggestenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.securitykeypermitattestation", + "displayName": "Websites or domains that don't need permission to use direct Security Key attestation", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sendintranettointernetexplorer", + "displayName": "Send all intranet sites to Internet Explorer", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sendintranettointernetexplorer_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sendintranettointernetexplorer_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sensorsallowedforurls", + "displayName": "Allow access to sensors on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sensorsblockedforurls", + "displayName": "Block access to sensors on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.serialaskforurls", + "displayName": "Allow the Serial API on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.serialblockedforurls", + "displayName": "Block the Serial API on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.settimeoutwithout1msclampenabled", + "displayName": "Control Javascript setTimeout() function minimum timeout (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.settimeoutwithout1msclampenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.settimeoutwithout1msclampenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sharedarraybufferunrestrictedaccessallowed", + "displayName": "Specifies whether SharedArrayBuffers can be used in a non cross-origin-isolated context", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sharedarraybufferunrestrictedaccessallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sharedarraybufferunrestrictedaccessallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showacrobatsubscriptionbutton", + "displayName": "Shows button on native PDF viewer in Microsoft Edge that allows users to sign up for Adobe Acrobat subscription", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showacrobatsubscriptionbutton_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showacrobatsubscriptionbutton_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showcasticonintoolbar", + "displayName": "Show the cast icon in the toolbar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showcasticonintoolbar_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showcasticonintoolbar_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showdownloadstoolbarbutton", + "displayName": "Show Downloads button on the toolbar (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showdownloadstoolbarbutton_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showdownloadstoolbarbutton_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showhomebutton", + "displayName": "Show Home button on toolbar", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showhomebutton_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showhomebutton_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showhomebutton_recommended", + "displayName": "Show Home button on toolbar (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showhomebutton_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showhomebutton_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showmicrosoftrewards", + "displayName": "Show Microsoft Rewards experiences", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showmicrosoftrewards_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showmicrosoftrewards_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showmicrosoftrewards_recommended", + "displayName": "Show Microsoft Rewards experiences (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showmicrosoftrewards_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showmicrosoftrewards_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showofficeshortcutinfavoritesbar", + "displayName": "Show Microsoft Office shortcut in favorites bar (Deprecated)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showofficeshortcutinfavoritesbar_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showofficeshortcutinfavoritesbar_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showpdfdefaultrecommendationsenabled", + "displayName": "Allow notifications to set Microsoft Edge as default PDF reader", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showpdfdefaultrecommendationsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showpdfdefaultrecommendationsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showrecommendationsenabled", + "displayName": "Allow feature recommendations and browser assistance notifications from Microsoft Edge", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showrecommendationsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.showrecommendationsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.signedhttpexchangeenabled", + "displayName": "Enable Signed HTTP Exchange (SXG) support", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.signedhttpexchangeenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.signedhttpexchangeenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabsblockedforurls", + "displayName": "Block sleeping tabs on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabsblockedforurls_recommended", + "displayName": "Block sleeping tabs on specific sites (users can override)", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabsenabled", + "displayName": "Configure sleeping tabs", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabsenabled_recommended", + "displayName": "Configure sleeping tabs (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabsenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabsenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for sleeping tabs", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_30seconds", + "displayName": "30 seconds of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_5minutes", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_15minutes", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_30minutes", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_1hour", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_2hours", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_3hours", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_6hours", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_12hours", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended", + "displayName": "Set the background tab inactivity timeout for sleeping tabs (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_30seconds", + "displayName": "30 seconds of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_5minutes", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_15minutes", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_30minutes", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_1hour", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_2hours", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_3hours", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_6hours", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sleepingtabstimeout_recommended_12hours", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartactionsblocklist", + "displayName": "Block smart actions for a list of services", + "options": { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartactionsblocklist_smart_actions_pdf", + "displayName": "Smart actions in PDF", + "description": null + } + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartactionsblocklist_recommended", + "displayName": "Block smart actions for a list of services (users can override)", + "options": { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartactionsblocklist_recommended_smart_actions_pdf", + "displayName": "Smart actions in PDF", + "description": null + } + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartscreenallowlistdomains", + "displayName": "Configure the list of domains for which Microsoft Defender SmartScreen won't trigger warnings", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartscreenfortrusteddownloadsenabled", + "displayName": "Force Microsoft Defender SmartScreen checks on downloads from trusted sources", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartscreenfortrusteddownloadsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartscreenfortrusteddownloadsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartscreenfortrusteddownloadsenabled_recommended", + "displayName": "Force Microsoft Defender SmartScreen checks on downloads from trusted sources (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartscreenfortrusteddownloadsenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.smartscreenfortrusteddownloadsenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.speechrecognitionenabled", + "displayName": "Configure Speech Recognition", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.speechrecognitionenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.speechrecognitionenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.spellcheckenabled", + "displayName": "Enable spellcheck", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.spellcheckenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.spellcheckenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.spellchecklanguage", + "displayName": "Enable specific spellcheck languages", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.spellchecklanguageblocklist", + "displayName": "Force disable spellcheck languages", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sslerroroverrideallowed", + "displayName": "Allow users to proceed from the HTTPS warning page", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sslerroroverrideallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sslerroroverrideallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.sslerroroverrideallowedfororigins", + "displayName": "Allow users to proceed from the HTTPS warning page for specific origins", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.strictermixedcontenttreatmentenabled", + "displayName": "Enable stricter treatment for mixed content (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.strictermixedcontenttreatmentenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.strictermixedcontenttreatmentenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.syncdisabled", + "displayName": "Disable synchronization of data using Microsoft sync services", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.syncdisabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.syncdisabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.syncdisabled_recommended", + "displayName": "Disable synchronization of data using Microsoft sync services (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.syncdisabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.syncdisabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.synctypeslistdisabled", + "displayName": "Configure the list of types that are excluded from synchronization", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.tabcaptureallowedbyorigins", + "displayName": "Allow Tab capture by these origins", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.tabservicesenabled", + "displayName": "Tab Services enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.tabservicesenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.tabservicesenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.textpredictionenabled", + "displayName": "Text prediction enabled by default", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.textpredictionenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.textpredictionenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.tls13hardeningforlocalanchorsenabled", + "displayName": "Enable a TLS 1.3 security feature for local trust anchors (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.tls13hardeningforlocalanchorsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.tls13hardeningforlocalanchorsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.trackingprevention", + "displayName": "Block tracking of users' web-browsing activity", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.trackingprevention_trackingpreventionoff", + "displayName": "Off (no tracking prevention)", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.trackingprevention_trackingpreventionbasic", + "displayName": "Basic (blocks harmful trackers, content and ads will be personalized)", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.trackingprevention_trackingpreventionbalanced", + "displayName": "Balanced (blocks harmful trackers and trackers from sites user has not visited; content and ads will be less personalized)", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.trackingprevention_trackingpreventionstrict", + "displayName": "Strict (blocks harmful trackers and majority of trackers from all sites; content and ads will have minimal personalization. Some parts of sites might not work)", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.translateenabled", + "displayName": "Enable Translate", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.translateenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.translateenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.translateenabled_recommended", + "displayName": "Enable Translate (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.translateenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.translateenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.travelassistanceenabled", + "displayName": "Enable travel assistance (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.travelassistanceenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.travelassistanceenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.travelassistanceenabled_recommended", + "displayName": "Enable travel assistance (Obsolete) (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.travelassistanceenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.travelassistanceenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.u2fsecuritykeyapienabled", + "displayName": "Allow using the deprecated U2F Security Key API (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.u2fsecuritykeyapienabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.u2fsecuritykeyapienabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.unthrottlednestedtimeoutenabled", + "displayName": "JavaScript setTimeout will not be clamped until a higher nesting threshold is set (Deprecated)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.unthrottlednestedtimeoutenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.unthrottlednestedtimeoutenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.urlallowlist", + "displayName": "Define a list of allowed URLs", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.urlblocklist", + "displayName": "Block access to a list of URLs", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.useragentreduction", + "displayName": "Enable or disable the User-Agent Reduction", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.useragentreduction_default", + "displayName": "User-Agent reduction will be controllable via Experimentation", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.useragentreduction_forcedisabled", + "displayName": "User-Agent reduction diabled, and not enabled by Experimentation", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.useragentreduction_forceenabled", + "displayName": "User-Agent reduction will be enabled for all origins", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.usesystemprintdialog", + "displayName": "Print using system print dialog", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.usesystemprintdialog_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.usesystemprintdialog_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.verticaltabsallowed", + "displayName": "Configures availability of a vertical layout for tabs on the side of the browser", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.verticaltabsallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.verticaltabsallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.videocaptureallowed", + "displayName": "Allow or block video capture", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.videocaptureallowed_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.videocaptureallowed_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.videocaptureallowedurls", + "displayName": "Sites that can access video capture devices without requesting permission", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.visualsearchenabled", + "displayName": "Visual search enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.visualsearchenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.visualsearchenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.visualsearchenabled_recommended", + "displayName": "Visual search enabled (users can override)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.visualsearchenabled_recommended_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.visualsearchenabled_recommended_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webappinstallforcelist", + "displayName": "Configure list of force-installed Web Apps", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webcomponentsv0enabled", + "displayName": "Re-enable Web Components v0 API until M84 (Obsolete)", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webcomponentsv0enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webcomponentsv0enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webhidaskforurls", + "displayName": "Allow the WebHID API on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webhidblockedforurls", + "displayName": "Block the WebHID API on these sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webrtclocalhostiphandling", + "displayName": "Restrict exposure of local IP address by WebRTC", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webrtclocalhostiphandling_allowallinterfaces", + "displayName": "Allow all interfaces. This exposes the local IP address", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webrtclocalhostiphandling_allowpublicandprivateinterfaces", + "displayName": "Allow public and private interfaces over http default route. This exposes the local IP address", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webrtclocalhostiphandling_allowpublicinterfaceonly", + "displayName": "Allow public interface over http default route. This doesn't expose the local IP address", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webrtclocalhostiphandling_disablenonproxiedudp", + "displayName": "Use TCP unless proxy server supports UDP. This doesn't expose the local IP address", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webrtclocalipsallowedurls", + "displayName": "Manage exposure of local IP addressess by WebRTC", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webselectenabled", + "displayName": "Web Select Enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webselectenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webselectenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.websqlaccess", + "displayName": "Force WebSQL to be enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.websqlaccess_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.websqlaccess_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.websqlnonsecurecontextenabled", + "displayName": "Force WebSQL in non-secure contexts to be enabled", + "options": [ + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.websqlnonsecurecontextenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.websqlnonsecurecontextenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webusballowdevicesforurls", + "displayName": "Grant access to specific sites to connect to specific USB devices", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webusbaskforurls", + "displayName": "Allow WebUSB on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.webusbblockedforurls", + "displayName": "Block WebUSB on specific sites", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.windowcaptureallowedbyorigins", + "displayName": "Allow Window and Tab capture by these origins", + "options": null + }, + { + "id": "com.microsoft.edge.mamedgeappconfigsettings.workspacesnavigationsettings", + "displayName": "Configure navigation settings per groups of URLs in Microsoft Edge Workspaces", + "options": null + }, + { + "id": "defender_disableprivacymode", + "displayName": "Allow users to view the full History results", + "options": [ + { + "id": "defender_disableprivacymode_0", + "displayName": "No", + "description": null + }, + { + "id": "defender_disableprivacymode_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "defender_disablerestorepoint", + "displayName": "Create a system restore point before computers are cleaned", + "options": [ + { + "id": "defender_disablerestorepoint_0", + "displayName": "No", + "description": null + }, + { + "id": "defender_disablerestorepoint_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "defender_randomizescheduletasktimes", + "displayName": "Randomize scheduled scan and security intelligence update start times", + "options": [ + { + "id": "defender_randomizescheduletasktimes_0", + "displayName": "No", + "description": null + }, + { + "id": "defender_randomizescheduletasktimes_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_deletionpolicy", + "displayName": "Deletion Policy", + "options": [ + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_deletionpolicy_0", + "displayName": "Delete immediately upon device returning to a state with no currently active users)", + "description": "Delete immediately upon device returning to a state with no currently active users)" + }, + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_deletionpolicy_1", + "displayName": "Delete at storage capacity threshold", + "description": "Delete at storage capacity threshold" + }, + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_deletionpolicy_2", + "displayName": "Delete at both storage capacity threshold and profile inactivity threshold", + "description": "Delete at both storage capacity threshold and profile inactivity threshold" + } + ] + }, + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_enableprofilemanager", + "displayName": "Enable Profile Manager", + "options": [ + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_enableprofilemanager_false", + "displayName": "False", + "description": "False" + }, + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_enableprofilemanager_true", + "displayName": "True", + "description": "True" + } + ] + }, + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_profileinactivitythreshold", + "displayName": "Profile Inactivity Threshold", + "options": null + }, + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_storagecapacitystartdeletion", + "displayName": "Storage Capacity Start Deletion", + "options": null + }, + { + "id": "device_vendor_msft_accountmanagement_userprofilemanagement_storagecapacitystopdeletion", + "displayName": "Storage Capacity Stop Deletion", + "options": null + }, + { + "id": "device_vendor_msft_bitlocker_allowstandarduserencryption", + "displayName": "Allow Standard User Encryption", + "options": [ + { + "id": "device_vendor_msft_bitlocker_allowstandarduserencryption_0", + "displayName": "Disabled", + "description": "This is the default, when the policy is not set. If current logged on user is a standard user, \"RequireDeviceEncryption\" policy will not try to enable encryption on any drive." + }, + { + "id": "device_vendor_msft_bitlocker_allowstandarduserencryption_1", + "displayName": "Enabled", + "description": "\"RequireDeviceEncryption\" policy will try to enable encryption on all fixed drives even if a current logged in user is standard user." + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_allowwarningforotherdiskencryption", + "displayName": "Allow Warning For Other Disk Encryption", + "options": [ + { + "id": "device_vendor_msft_bitlocker_allowwarningforotherdiskencryption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_allowwarningforotherdiskencryption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_configurerecoverypasswordrotation", + "displayName": "Configure Recovery Password Rotation", + "options": [ + { + "id": "device_vendor_msft_bitlocker_configurerecoverypasswordrotation_0", + "displayName": "Refresh off (default)", + "description": "Refresh off (default)" + }, + { + "id": "device_vendor_msft_bitlocker_configurerecoverypasswordrotation_1", + "displayName": "Refresh on for Azure AD-joined devices", + "description": "Refresh on for Azure AD-joined devices" + }, + { + "id": "device_vendor_msft_bitlocker_configurerecoverypasswordrotation_2", + "displayName": "Refresh on for both Azure AD-joined and hybrid-joined devices", + "description": "Refresh on for both Azure AD-joined and hybrid-joined devices" + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype", + "displayName": "Choose drive encryption method and cipher strength (Windows 10 [Version 1511] and later)", + "options": [ + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsfdvdropdown_name", + "displayName": "Select the encryption method for fixed data drives:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsfdvdropdown_name_3", + "displayName": "AES-CBC 128-bit", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsfdvdropdown_name_4", + "displayName": "AES-CBC 256-bit", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsfdvdropdown_name_6", + "displayName": "XTS-AES 128-bit (default)", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsfdvdropdown_name_7", + "displayName": "XTS-AES 256-bit", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsosdropdown_name", + "displayName": "Select the encryption method for operating system drives:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsosdropdown_name_3", + "displayName": "AES-CBC 128-bit", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsosdropdown_name_4", + "displayName": "AES-CBC 256-bit", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsosdropdown_name_6", + "displayName": "XTS-AES 128-bit (default)", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsosdropdown_name_7", + "displayName": "XTS-AES 256-bit", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsrdvdropdown_name", + "displayName": "Select the encryption method for removable data drives:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsrdvdropdown_name_3", + "displayName": "AES-CBC 128-bit (default)", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsrdvdropdown_name_4", + "displayName": "AES-CBC 256-bit", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsrdvdropdown_name_6", + "displayName": "XTS-AES 128-bit", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_encryptionmethodbydrivetype_encryptionmethodwithxtsrdvdropdown_name_7", + "displayName": "XTS-AES 256-bit", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesencryptiontype", + "displayName": "Enforce drive encryption type on fixed data drives", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesencryptiontype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesencryptiontype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesencryptiontype_fdvencryptiontypedropdown_name", + "displayName": "Select the encryption type: (Device)", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesencryptiontype_fdvencryptiontypedropdown_name_0", + "displayName": "Allow user to choose (default)", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesencryptiontype_fdvencryptiontypedropdown_name_1", + "displayName": "Full encryption", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesencryptiontype_fdvencryptiontypedropdown_name_2", + "displayName": "Used Space Only encryption", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions", + "displayName": "Choose how BitLocker-protected fixed drives can be recovered", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvactivedirectorybackup_name", + "displayName": "Save BitLocker recovery information to AD DS for fixed data drives", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvactivedirectorybackup_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvactivedirectorybackup_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvactivedirectorybackupdropdown_name", + "displayName": "Configure storage of BitLocker recovery information to AD DS:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvactivedirectorybackupdropdown_name_1", + "displayName": "Backup recovery passwords and key packages", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvactivedirectorybackupdropdown_name_2", + "displayName": "Backup recovery passwords only", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvallowdra_name", + "displayName": "Allow data recovery agent", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvallowdra_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvallowdra_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvhiderecoverypage_name", + "displayName": "Omit recovery options from the BitLocker setup wizard", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvhiderecoverypage_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvhiderecoverypage_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrecoverykeyusagedropdown_name", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrecoverykeyusagedropdown_name_2", + "displayName": "Allow 256-bit recovery key", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrecoverykeyusagedropdown_name_1", + "displayName": "Require 256-bit recovery key", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrecoverykeyusagedropdown_name_0", + "displayName": "Do not allow 256-bit recovery key", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrecoverypasswordusagedropdown_name", + "displayName": "\r\nConfigure user storage of BitLocker recovery information:\r\n", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrecoverypasswordusagedropdown_name_2", + "displayName": "Allow 48-digit recovery password", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrecoverypasswordusagedropdown_name_1", + "displayName": "Require 48-digit recovery password", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrecoverypasswordusagedropdown_name_0", + "displayName": "Do not allow 48-digit recovery password", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrequireactivedirectorybackup_name", + "displayName": "Do not enable BitLocker until recovery information is stored to AD DS for fixed data drives", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrequireactivedirectorybackup_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrecoveryoptions_fdvrequireactivedirectorybackup_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrequireencryption", + "displayName": "Deny write access to fixed drives not protected by BitLocker", + "options": [ + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrequireencryption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_fixeddrivesrequireencryption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_identificationfield", + "displayName": "Provide the unique identifiers for your organization", + "options": [ + { + "id": "device_vendor_msft_bitlocker_identificationfield_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_identificationfield_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_identificationfield_identificationfield", + "displayName": "BitLocker identification field: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_bitlocker_identificationfield_secidentificationfield", + "displayName": "Allowed BitLocker identification field: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde", + "displayName": "Control use of BitLocker on removable drives", + "options": [ + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde_rdvallowbde_name", + "displayName": "Allow users to apply BitLocker protection on removable data drives (Device)", + "options": [ + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde_rdvallowbde_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde_rdvallowbde_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde_rdvdisablebde_name", + "displayName": "Allow users to suspend and decrypt BitLocker protection on removable data drives (Device)", + "options": [ + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde_rdvdisablebde_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesconfigurebde_rdvdisablebde_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesencryptiontype", + "displayName": "Enforce drive encryption type on removable data drives", + "options": [ + { + "id": "device_vendor_msft_bitlocker_removabledrivesencryptiontype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesencryptiontype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesencryptiontype_rdvencryptiontypedropdown_name", + "displayName": "Select the encryption type: (Device)", + "options": [ + { + "id": "device_vendor_msft_bitlocker_removabledrivesencryptiontype_rdvencryptiontypedropdown_name_0", + "displayName": "Allow user to choose (default)", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesencryptiontype_rdvencryptiontypedropdown_name_1", + "displayName": "Full encryption", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesencryptiontype_rdvencryptiontypedropdown_name_2", + "displayName": "Used Space Only encryption", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesexcludedfromencryption", + "displayName": "Removable Drives Excluded From Encryption", + "options": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesrequireencryption", + "displayName": "Deny write access to removable drives not protected by BitLocker", + "options": [ + { + "id": "device_vendor_msft_bitlocker_removabledrivesrequireencryption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesrequireencryption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesrequireencryption_rdvcrossorg", + "displayName": "Do not allow write access to devices configured in another organization", + "options": [ + { + "id": "device_vendor_msft_bitlocker_removabledrivesrequireencryption_rdvcrossorg_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_removabledrivesrequireencryption_rdvcrossorg_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_requiredeviceencryption", + "displayName": "Require Device Encryption", + "options": [ + { + "id": "device_vendor_msft_bitlocker_requiredeviceencryption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_requiredeviceencryption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesdisallowstandarduserscanchangepin", + "displayName": "Disallow standard users from changing the PIN or password", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesdisallowstandarduserscanchangepin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesdisallowstandarduserscanchangepin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesenableprebootinputprotectorsonslates", + "displayName": "Enable use of BitLocker authentication requiring preboot keyboard input on slates", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesenableprebootinputprotectorsonslates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesenableprebootinputprotectorsonslates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesenableprebootpinexceptionondecapabledevice", + "displayName": "Allow devices compliant with InstantGo or HSTI to opt out of pre-boot PIN.", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesenableprebootpinexceptionondecapabledevice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesenableprebootpinexceptionondecapabledevice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesencryptiontype", + "displayName": "Enforce drive encryption type on operating system drives", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_osencryptiontypedropdown_name", + "displayName": "Select the encryption type: (Device)", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_osencryptiontypedropdown_name_0", + "displayName": "Allow user to choose (default)", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_osencryptiontypedropdown_name_1", + "displayName": "Full encryption", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesencryptiontype_osencryptiontypedropdown_name_2", + "displayName": "Used Space Only encryption", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesenhancedpin", + "displayName": "Allow enhanced PINs for startup", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesenhancedpin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesenhancedpin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesminimumpinlength", + "displayName": "Configure minimum PIN length for startup", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesminimumpinlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesminimumpinlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesminimumpinlength_minpinlength", + "displayName": "Minimum characters:", + "options": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage", + "displayName": "Configure pre-boot recovery message and URL", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_prebootrecoveryinfodropdown_name", + "displayName": "Select an option for the pre-boot recovery message:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_prebootrecoveryinfodropdown_name_0", + "displayName": "", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_prebootrecoveryinfodropdown_name_1", + "displayName": "Use default recovery message and URL", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_prebootrecoveryinfodropdown_name_2", + "displayName": "Use custom recovery message", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_prebootrecoveryinfodropdown_name_3", + "displayName": "Use custom recovery URL", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_recoverymessage_input", + "displayName": "Custom recovery message option:", + "options": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoverymessage_recoveryurl_input", + "displayName": "Custom recovery URL option:", + "options": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions", + "displayName": "Choose how BitLocker-protected operating system drives can be recovered", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackup_name", + "displayName": "Save BitLocker recovery information to AD DS for operating system drives", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackup_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackup_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackupdropdown_name", + "displayName": "Configure storage of BitLocker recovery information to AD DS:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackupdropdown_name_1", + "displayName": "Store recovery passwords and key packages", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osactivedirectorybackupdropdown_name_2", + "displayName": "Store recovery passwords only", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osallowdra_name", + "displayName": "Allow data recovery agent", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osallowdra_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osallowdra_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_oshiderecoverypage_name", + "displayName": "Omit recovery options from the BitLocker setup wizard", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_oshiderecoverypage_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_oshiderecoverypage_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverykeyusagedropdown_name", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverykeyusagedropdown_name_2", + "displayName": "Allow 256-bit recovery key", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverykeyusagedropdown_name_1", + "displayName": "Require 256-bit recovery key", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverykeyusagedropdown_name_0", + "displayName": "Do not allow 256-bit recovery key", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverypasswordusagedropdown_name", + "displayName": "\r\nConfigure user storage of BitLocker recovery information:\r\n", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverypasswordusagedropdown_name_2", + "displayName": "Allow 48-digit recovery password", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverypasswordusagedropdown_name_1", + "displayName": "Require 48-digit recovery password", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrecoverypasswordusagedropdown_name_0", + "displayName": "Do not allow 48-digit recovery password", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrequireactivedirectorybackup_name", + "displayName": "Do not enable BitLocker until recovery information is stored to AD DS for operating system drives", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrequireactivedirectorybackup_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrecoveryoptions_osrequireactivedirectorybackup_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication", + "displayName": "Require additional authentication at startup", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurenontpmstartupkeyusage_name", + "displayName": "Allow BitLocker without a compatible TPM (requires a password or a startup key on a USB flash drive)", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurenontpmstartupkeyusage_name_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurenontpmstartupkeyusage_name_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurepinusagedropdown_name", + "displayName": "Configure TPM startup PIN:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurepinusagedropdown_name_2", + "displayName": "Allow startup PIN with TPM", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurepinusagedropdown_name_1", + "displayName": "Require startup PIN with TPM", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configurepinusagedropdown_name_0", + "displayName": "Do not allow startup PIN with TPM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmpinkeyusagedropdown_name", + "displayName": "Configure TPM startup key and PIN:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmpinkeyusagedropdown_name_2", + "displayName": "Allow startup key and PIN with TPM", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmpinkeyusagedropdown_name_1", + "displayName": "Require startup key and PIN with TPM", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmpinkeyusagedropdown_name_0", + "displayName": "Do not allow startup key and PIN with TPM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmstartupkeyusagedropdown_name", + "displayName": "Configure TPM startup key:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmstartupkeyusagedropdown_name_2", + "displayName": "Allow startup key with TPM", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmstartupkeyusagedropdown_name_1", + "displayName": "Require startup key with TPM", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmstartupkeyusagedropdown_name_0", + "displayName": "Do not allow startup key with TPM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmusagedropdown_name", + "displayName": "Configure TPM startup:", + "options": [ + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmusagedropdown_name_2", + "displayName": "Allow TPM", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmusagedropdown_name_1", + "displayName": "Require TPM", + "description": null + }, + { + "id": "device_vendor_msft_bitlocker_systemdrivesrequirestartupauthentication_configuretpmusagedropdown_name_0", + "displayName": "Do not allow TPM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_clouddesktop_boottocloudpcenhanced", + "displayName": "Boot To Cloud PC Enhanced", + "options": [ + { + "id": "device_vendor_msft_clouddesktop_boottocloudpcenhanced_0", + "displayName": "Not Configured", + "description": "Not Configured" + }, + { + "id": "device_vendor_msft_clouddesktop_boottocloudpcenhanced_1", + "displayName": "Enable Boot to Cloud Shared PC Mode", + "description": "Enable Boot to Cloud Shared PC Mode" + }, + { + "id": "device_vendor_msft_clouddesktop_boottocloudpcenhanced_2", + "displayName": "Enable Boot to Cloud Dedicated Mode (Cloud only)", + "description": "Enable Boot to Cloud Dedicated Mode (Cloud only)" + } + ] + }, + { + "id": "device_vendor_msft_clouddesktop_enableboottocloudsharedpcmode", + "displayName": "[Deprecated] Enable Boot To Cloud Shared PC Mode", + "options": [ + { + "id": "device_vendor_msft_clouddesktop_enableboottocloudsharedpcmode_false", + "displayName": "Not configured", + "description": "Not configured" + }, + { + "id": "device_vendor_msft_clouddesktop_enableboottocloudsharedpcmode_true", + "displayName": "Boot to cloud shared pc mode enabled", + "description": "Boot to cloud shared pc mode enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_allowdatagramprocessingonwinserver", + "displayName": "Allow Datagram Processing On Win Server", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_allowdatagramprocessingonwinserver_1", + "displayName": "Datagram processing on Windows Server is enabled.", + "description": "Datagram processing on Windows Server is enabled." + }, + { + "id": "device_vendor_msft_defender_configuration_allowdatagramprocessingonwinserver_0", + "displayName": "Datagram processing on Windows Server is disabled.", + "description": "Datagram processing on Windows Server is disabled." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_allownetworkprotectiondownlevel", + "displayName": "Allow Network Protection Down Level", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_allownetworkprotectiondownlevel_1", + "displayName": "Network protection will be enabled downlevel.", + "description": "Network protection will be enabled downlevel." + }, + { + "id": "device_vendor_msft_defender_configuration_allownetworkprotectiondownlevel_0", + "displayName": "Network protection will be disabled downlevel.", + "description": "Network protection will be disabled downlevel." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_allownetworkprotectiononwinserver", + "displayName": "Allow Network Protection On Win Server", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_allownetworkprotectiononwinserver_1", + "displayName": "Allow", + "description": "Allow" + }, + { + "id": "device_vendor_msft_defender_configuration_allownetworkprotectiononwinserver_0", + "displayName": "Disallow", + "description": "Disallow" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_allowswitchtoasyncinspection", + "displayName": "Allow Switch To Async Inspection", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_allowswitchtoasyncinspection_1", + "displayName": "Allow switching to asynchronous inspection", + "description": "Allow switching to asynchronous inspection" + }, + { + "id": "device_vendor_msft_defender_configuration_allowswitchtoasyncinspection_0", + "displayName": "Don’t allow asynchronous inspection", + "description": "Don’t allow asynchronous inspection" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_archivemaxdepth", + "displayName": "Archive Max Depth", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_archivemaxsize", + "displayName": "Archive Max Size", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_asronlyperruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionaggressiveness", + "displayName": "Remote Encryption Protection Aggressiveness", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionaggressiveness_0", + "displayName": "Low: Block only when confidence level is 100% (Default)", + "description": "Low: Block only when confidence level is 100% (Default)" + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionaggressiveness_1", + "displayName": "Medium: Use cloud aggregation and block when confidence level is above 99%", + "description": "Medium: Use cloud aggregation and block when confidence level is above 99%" + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionaggressiveness_2", + "displayName": "High: Use cloud intel and context, and block when confidence level is above 90%", + "description": "High: Use cloud intel and context, and block when confidence level is above 90%" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionconfiguredstate", + "displayName": "Remote Encryption Protection Configured State", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionconfiguredstate_0", + "displayName": "Not configured: Apply defaults set for the antivirus engine and platform", + "description": "Not configured: Apply defaults set for the antivirus engine and platform" + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionconfiguredstate_1", + "displayName": "Block: Prevent suspicious and malicious behaviors", + "description": "Block: Prevent suspicious and malicious behaviors" + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionconfiguredstate_2", + "displayName": "Audit: Generate EDR detections without blocking", + "description": "Audit: Generate EDR detections without blocking" + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionconfiguredstate_4", + "displayName": "Off: Feature is off with no performance impact", + "description": "Off: Feature is off with no performance impact" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionexclusions", + "displayName": "Remote Encryption Protection Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_behavioralnetworkblocks_remoteencryptionprotection_remoteencryptionprotectionmaxblocktime", + "displayName": "Remote Encryption Protection Max Block Time", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_dataduplicationdirectory", + "displayName": "Data Duplication Directory", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_dataduplicationlocalretentionperiod", + "displayName": "Data Duplication Local Retention Period", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_dataduplicationmaximumquota", + "displayName": "Data Duplication Maximum Quota", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_dataduplicationremotelocation", + "displayName": "Data Duplication Remote Location", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_daysuntilaggressivecatchupquickscan", + "displayName": "Days Until Aggressive Catchup Quick Scan", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_defaultenforcement", + "displayName": "Default Enforcement", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_defaultenforcement_1", + "displayName": "Default Allow Enforcement", + "description": "Default Allow Enforcement" + }, + { + "id": "device_vendor_msft_defender_configuration_defaultenforcement_2", + "displayName": "Default Deny Enforcement", + "description": "Default Deny Enforcement" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}", + "displayName": "ID", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata", + "displayName": "Policy rule", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry", + "displayName": "Entry", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_accesmask", + "displayName": "Access mask", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_accesmask_1", + "displayName": "Read", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_accesmask_2", + "displayName": "Write", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_accesmask_4", + "displayName": "Execute", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_accesmask_8", + "displayName": "File read", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_accesmask_16", + "displayName": "File write", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_accesmask_32", + "displayName": "File execute", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_accesmask_64", + "displayName": "Print", + "description": "" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_computersid", + "displayName": "Computer Sid", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_id", + "displayName": "ID", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_options", + "displayName": "Options", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_options_0", + "displayName": "None", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_options_1", + "displayName": "Show notification", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_options_2", + "displayName": "Send event", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_options_3", + "displayName": "Send notification and event", + "description": "" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_options_4", + "displayName": "Disable", + "description": "" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_sid", + "displayName": "Sid", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_type", + "displayName": "Type", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_type_allow", + "displayName": "Allow", + "description": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_type_deny", + "displayName": "Deny", + "description": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_type_auditallowed", + "displayName": "Audit Allowed", + "description": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_entry_type_auditdenied", + "displayName": "Audit Denied", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_excludedidlist", + "displayName": "Excluded ID", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_excludedidlist_groupid", + "displayName": "Excluded ID", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_id", + "displayName": "ID", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_includedidlist", + "displayName": "Included ID", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_includedidlist_groupid", + "displayName": "Included ID", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrol_policyrules_{ruleid}_ruledata_name", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrolenabled", + "displayName": "Device Control Enabled", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_devicecontrolenabled_1", + "displayName": "Device Control is enabled", + "description": "Device Control is enabled" + }, + { + "id": "device_vendor_msft_defender_configuration_devicecontrolenabled_0", + "displayName": "Device Control is disabled", + "description": "Device Control is disabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablecachemaintenance", + "displayName": "Disable Cache Maintenance", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablecachemaintenance_1", + "displayName": "Cache maintenance is disabled", + "description": "Cache maintenance is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablecachemaintenance_0", + "displayName": "Cache maintenance is enabled (default)", + "description": "Cache maintenance is enabled (default)" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablecoreserviceecsintegration", + "displayName": "Disable Core Service ECS Integration", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablecoreserviceecsintegration_0", + "displayName": "The Defender core service will use the Experimentation and Configuration Service (ECS) to rapidly deliver critical, org-specific fixes.", + "description": "The Defender core service will use the Experimentation and Configuration Service (ECS) to rapidly deliver critical, org-specific fixes." + }, + { + "id": "device_vendor_msft_defender_configuration_disablecoreserviceecsintegration_1", + "displayName": "The Defender core service stops using the Experimentation and Configuration Service (ECS). Fixes will continue to be delivered through security intelligence updates.", + "description": "The Defender core service stops using the Experimentation and Configuration Service (ECS). Fixes will continue to be delivered through security intelligence updates." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablecoreservicetelemetry", + "displayName": "Disable Core Service Telemetry", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablecoreservicetelemetry_0", + "displayName": "The Defender core service will use the OneDsCollector framework to rapidly collect telemetry.", + "description": "The Defender core service will use the OneDsCollector framework to rapidly collect telemetry." + }, + { + "id": "device_vendor_msft_defender_configuration_disablecoreservicetelemetry_1", + "displayName": "The Defender core service stops using the OneDsCollector framework to rapidly collect telemetry, impacting Microsoft's ability to quickly recognize and address poor performance, false positives, and other problems.", + "description": "The Defender core service stops using the OneDsCollector framework to rapidly collect telemetry, impacting Microsoft's ability to quickly recognize and address poor performance, false positives, and other problems." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablecputhrottleonidlescans", + "displayName": "Disable Cpu Throttle On Idle Scans", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablecputhrottleonidlescans_1", + "displayName": "Disable CPU Throttle on idle scans", + "description": "Disable CPU Throttle on idle scans" + }, + { + "id": "device_vendor_msft_defender_configuration_disablecputhrottleonidlescans_0", + "displayName": "Enable CPU Throttle on idle scans", + "description": "Enable CPU Throttle on idle scans" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disabledatagramprocessing", + "displayName": "Disable Datagram Processing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disabledatagramprocessing_1", + "displayName": "UDP inspection is off", + "description": "UDP inspection is off" + }, + { + "id": "device_vendor_msft_defender_configuration_disabledatagramprocessing_0", + "displayName": "UDP inspection is on", + "description": "UDP inspection is on" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablednsovertcpparsing", + "displayName": "Disable Dns Over Tcp Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablednsovertcpparsing_1", + "displayName": "DNS over TCP parsing is disabled", + "description": "DNS over TCP parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablednsovertcpparsing_0", + "displayName": "DNS over TCP parsing is enabled", + "description": "DNS over TCP parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablednsparsing", + "displayName": "Disable Dns Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablednsparsing_1", + "displayName": "DNS parsing is disabled", + "description": "DNS parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablednsparsing_0", + "displayName": "DNS parsing is enabled", + "description": "DNS parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disableftpparsing", + "displayName": "Disable Ftp Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disableftpparsing_1", + "displayName": "FTP parsing is disabled", + "description": "FTP parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disableftpparsing_0", + "displayName": "FTP parsing is enabled", + "description": "FTP parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablegradualrelease", + "displayName": "Disable Gradual Release", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablegradualrelease_1", + "displayName": "Gradual release is disabled", + "description": "Gradual release is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablegradualrelease_0", + "displayName": "Gradual release is enabled", + "description": "Gradual release is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablehttpparsing", + "displayName": "Disable Http Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablehttpparsing_1", + "displayName": "HTTP parsing is disabled", + "description": "HTTP parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablehttpparsing_0", + "displayName": "HTTP parsing is enabled", + "description": "HTTP parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disableinboundconnectionfiltering", + "displayName": "Disable Inbound Connection Filtering", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disableinboundconnectionfiltering_1", + "displayName": "Inbound connection filtering is disabled", + "description": "Inbound connection filtering is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disableinboundconnectionfiltering_0", + "displayName": "Inbound connection filtering is enabled", + "description": "Inbound connection filtering is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablelocaladminmerge", + "displayName": "Disable Local Admin Merge", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablelocaladminmerge_0", + "displayName": "Enable Local Admin Merge", + "description": "Enable Local Admin Merge" + }, + { + "id": "device_vendor_msft_defender_configuration_disablelocaladminmerge_1", + "displayName": "Disable Local Admin Merge", + "description": "Disable Local Admin Merge" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablenetworkprotectionperftelemetry", + "displayName": "Disable Network Protection Perf Telemetry", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablenetworkprotectionperftelemetry_1", + "displayName": "Network protection telemetry is disabled", + "description": "Network protection telemetry is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablenetworkprotectionperftelemetry_0", + "displayName": "Network protection telemetry is enabled", + "description": "Network protection telemetry is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablequicparsing", + "displayName": "Disable Quic Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablequicparsing_1", + "displayName": "QUIC parsing is disabled", + "description": "QUIC parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablequicparsing_0", + "displayName": "QUIC parsing is enabled", + "description": "QUIC parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablerdpparsing", + "displayName": "Disable Rdp Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablerdpparsing_1", + "displayName": "RDP Parsing is disabled", + "description": "RDP Parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablerdpparsing_0", + "displayName": "RDP Parsing is enabled", + "description": "RDP Parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablesmtpparsing", + "displayName": "Disable Smtp Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablesmtpparsing_1", + "displayName": "SMTP parsing is disabled", + "description": "SMTP parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablesmtpparsing_0", + "displayName": "SMTP parsing is enabled", + "description": "SMTP parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disablesshparsing", + "displayName": "Disable Ssh Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disablesshparsing_1", + "displayName": "SSH parsing is disabled", + "description": "SSH parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disablesshparsing_0", + "displayName": "SSH parsing is enabled", + "description": "SSH parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_disabletlsparsing", + "displayName": "Disable Tls Parsing", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_disabletlsparsing_1", + "displayName": "TLS parsing is disabled", + "description": "TLS parsing is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_disabletlsparsing_0", + "displayName": "TLS parsing is enabled", + "description": "TLS parsing is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_enableconvertwarntoblock", + "displayName": "Enable Convert Warn To Block", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_enableconvertwarntoblock_1", + "displayName": "Warn verdicts are converted to block", + "description": "Warn verdicts are converted to block" + }, + { + "id": "device_vendor_msft_defender_configuration_enableconvertwarntoblock_0", + "displayName": "Warn verdicts are not converted to block", + "description": "Warn verdicts are not converted to block" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_enablednssinkhole", + "displayName": "[Deprecated] Enable Dns Sinkhole", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_enablednssinkhole_0", + "displayName": "DNS Sinkhole is disabled", + "description": "DNS Sinkhole is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_enablednssinkhole_1", + "displayName": "DNS Sinkhole is enabled", + "description": "DNS Sinkhole is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_enablefilehashcomputation", + "displayName": "Enable File Hash Computation", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_enablefilehashcomputation_0", + "displayName": "Disable", + "description": "Disable" + }, + { + "id": "device_vendor_msft_defender_configuration_enablefilehashcomputation_1", + "displayName": "Enable", + "description": "Enable" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_enableudpreceiveoffload", + "displayName": "Enable Udp Receive Offload", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_enableudpreceiveoffload_0", + "displayName": "Udp Receive Offload is disabled", + "description": "Udp Receive Offload is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_enableudpreceiveoffload_1", + "displayName": "Udp Receive Offload is enabled", + "description": "Udp Receive Offload is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_enableudpsegmentationoffload", + "displayName": "Enable Udp Segmentation Offload", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_enableudpsegmentationoffload_0", + "displayName": "Udp Segmentation Offload is disabled", + "description": "Udp Segmentation Offload is disabled" + }, + { + "id": "device_vendor_msft_defender_configuration_enableudpsegmentationoffload_1", + "displayName": "Udp Segmentation Offload is enabled", + "description": "Udp Segmentation Offload is enabled" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_engineupdateschannel", + "displayName": "Engine Updates Channel", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_engineupdateschannel_0", + "displayName": "Not configured (Default). The device will stay up to date automatically during the gradual release cycle. Suitable for most devices.", + "description": "Not configured (Default). The device will stay up to date automatically during the gradual release cycle. Suitable for most devices." + }, + { + "id": "device_vendor_msft_defender_configuration_engineupdateschannel_2", + "displayName": "Beta Channel: Devices set to this channel will be the first to receive new updates. Select Beta Channel to participate in identifying and reporting issues to Microsoft. Devices in the Windows Insider Program are subscribed to this channel by default. For use in (manual) test environments only and a limited number of devices.", + "description": "Beta Channel: Devices set to this channel will be the first to receive new updates. Select Beta Channel to participate in identifying and reporting issues to Microsoft. Devices in the Windows Insider Program are subscribed to this channel by default. For use in (manual) test environments only and a limited number of devices." + }, + { + "id": "device_vendor_msft_defender_configuration_engineupdateschannel_3", + "displayName": "Current Channel (Preview): Devices set to this channel will be offered updates earliest during the monthly gradual release cycle. Suggested for pre-production/validation environments.", + "description": "Current Channel (Preview): Devices set to this channel will be offered updates earliest during the monthly gradual release cycle. Suggested for pre-production/validation environments." + }, + { + "id": "device_vendor_msft_defender_configuration_engineupdateschannel_4", + "displayName": "Current Channel (Staged): Devices will be offered updates after the monthly gradual release cycle. Suggested to apply to a small, representative part of your production population (~10%).", + "description": "Current Channel (Staged): Devices will be offered updates after the monthly gradual release cycle. Suggested to apply to a small, representative part of your production population (~10%)." + }, + { + "id": "device_vendor_msft_defender_configuration_engineupdateschannel_5", + "displayName": "Current Channel (Broad): Devices will be offered updates only after the gradual release cycle completes. Suggested to apply to a broad set of devices in your production population (~10-100%).", + "description": "Current Channel (Broad): Devices will be offered updates only after the gradual release cycle completes. Suggested to apply to a broad set of devices in your production population (~10-100%)." + }, + { + "id": "device_vendor_msft_defender_configuration_engineupdateschannel_6", + "displayName": "Critical - Time delay: Devices will be offered updates with a 48-hour delay. Suggested for critical environments only.", + "description": "Critical - Time delay: Devices will be offered updates with a 48-hour delay. Suggested for critical environments only." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_excludedipaddresses", + "displayName": "Excluded Ip Addresses", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_hideexclusionsfromlocaladmins", + "displayName": "Hide Exclusions From Local Admins", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_hideexclusionsfromlocaladmins_1", + "displayName": "If you enable this setting, local admins will no longer be able to see the exclusion list in Windows Security App or via PowerShell.", + "description": "If you enable this setting, local admins will no longer be able to see the exclusion list in Windows Security App or via PowerShell." + }, + { + "id": "device_vendor_msft_defender_configuration_hideexclusionsfromlocaladmins_0", + "displayName": "If you disable or do not configure this setting, local admins will be able to see exclusions in the Windows Security App and via PowerShell.", + "description": "If you disable or do not configure this setting, local admins will be able to see exclusions in the Windows Security App and via PowerShell." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_hideexclusionsfromlocalusers", + "displayName": "Hide Exclusions From Local Users", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_hideexclusionsfromlocalusers_1", + "displayName": "If you enable this setting, local users will no longer be able to see the exclusion list in Windows Security App or via PowerShell.", + "description": "If you enable this setting, local users will no longer be able to see the exclusion list in Windows Security App or via PowerShell." + }, + { + "id": "device_vendor_msft_defender_configuration_hideexclusionsfromlocalusers_0", + "displayName": "If you disable or do not configure this setting, local users will be able to see exclusions in the Windows Security App and via PowerShell.", + "description": "If you disable or do not configure this setting, local users will be able to see exclusions in the Windows Security App and via PowerShell." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_inteltdtenabled", + "displayName": "Intel TDT Enabled", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_inteltdtenabled_0", + "displayName": "If you do not configure this setting, the default value will be applied. The default value is controlled by Microsoft security intelligence updates. Microsoft will enable Intel TDT if there is a known threat.", + "description": "If you do not configure this setting, the default value will be applied. The default value is controlled by Microsoft security intelligence updates. Microsoft will enable Intel TDT if there is a known threat." + }, + { + "id": "device_vendor_msft_defender_configuration_inteltdtenabled_1", + "displayName": "If you configure this setting to enabled, Intel TDT integration will turn on.", + "description": "If you configure this setting to enabled, Intel TDT integration will turn on." + }, + { + "id": "device_vendor_msft_defender_configuration_inteltdtenabled_2", + "displayName": "If you configure this setting to disabled, Intel TDT integration will turn off.", + "description": "If you configure this setting to disabled, Intel TDT integration will turn off." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_meteredconnectionupdates", + "displayName": "Metered Connection Updates", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_meteredconnectionupdates_1", + "displayName": "Allowed", + "description": "Allowed" + }, + { + "id": "device_vendor_msft_defender_configuration_meteredconnectionupdates_0", + "displayName": "Not Allowed", + "description": "Not Allowed" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_networkprotectionreputationmode", + "displayName": "Network Protection Reputation Mode", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_networkprotectionreputationmode_0", + "displayName": "Use standard reputation engine", + "description": "Use standard reputation engine" + }, + { + "id": "device_vendor_msft_defender_configuration_networkprotectionreputationmode_1", + "displayName": "Use ESP reputation engine", + "description": "Use ESP reputation engine" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_oobeenablertpandsigupdate", + "displayName": "Oobe Enable Rtp And Sig Update", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_oobeenablertpandsigupdate_1", + "displayName": "If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE.", + "description": "If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE." + }, + { + "id": "device_vendor_msft_defender_configuration_oobeenablertpandsigupdate_0", + "displayName": "If you either disable or do not configure this setting, real-time protection and Security Intelligence Updates during OOBE is not enabled.", + "description": "If you either disable or do not configure this setting, real-time protection and Security Intelligence Updates during OOBE is not enabled." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_passiveremediation", + "displayName": "Passive Remediation", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_passiveremediation_0", + "displayName": "Passive Remediation is turned off (default)", + "description": "Passive Remediation is turned off (default)" + }, + { + "id": "device_vendor_msft_defender_configuration_passiveremediation_1", + "displayName": "PASSIVEREMEDIATIONFLAGSENSEAUTOREMEDIATION: Passive Remediation Sense AutoRemediation", + "description": "PASSIVE_REMEDIATION_FLAG_SENSE_AUTO_REMEDIATION: Passive Remediation Sense AutoRemediation" + }, + { + "id": "device_vendor_msft_defender_configuration_passiveremediation_2", + "displayName": "PASSIVEREMEDIATIONFLAGRTPAUDIT: Passive Remediation Realtime Protection Audit", + "description": "PASSIVE_REMEDIATION_FLAG_RTP_AUDIT: Passive Remediation Realtime Protection Audit" + }, + { + "id": "device_vendor_msft_defender_configuration_passiveremediation_4", + "displayName": "PASSIVEREMEDIATIONFLAGRTPREMEDIATION: Passive Remediation Realtime Protection Remediation", + "description": "PASSIVE_REMEDIATION_FLAG_RTP_REMEDIATION: Passive Remediation Realtime Protection Remediation" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_performancemodestatus", + "displayName": "Performance Mode Status", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_performancemodestatus_0", + "displayName": "Performance mode is enabled (default). A service restart is required after changing this value.", + "description": "Performance mode is enabled (default). A service restart is required after changing this value." + }, + { + "id": "device_vendor_msft_defender_configuration_performancemodestatus_1", + "displayName": "Performance mode is disabled. A service restart is required after changing this value.", + "description": "Performance mode is disabled. A service restart is required after changing this value." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_platformupdateschannel", + "displayName": "Platform Updates Channel", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_platformupdateschannel_0", + "displayName": "Not configured (Default). The device will stay up to date automatically during the gradual release cycle. Suitable for most devices.", + "description": "Not configured (Default). The device will stay up to date automatically during the gradual release cycle. Suitable for most devices." + }, + { + "id": "device_vendor_msft_defender_configuration_platformupdateschannel_2", + "displayName": "Beta Channel: Devices set to this channel will be the first to receive new updates. Select Beta Channel to participate in identifying and reporting issues to Microsoft. Devices in the Windows Insider Program are subscribed to this channel by default. For use in (manual) test environments only and a limited number of devices.", + "description": "Beta Channel: Devices set to this channel will be the first to receive new updates. Select Beta Channel to participate in identifying and reporting issues to Microsoft. Devices in the Windows Insider Program are subscribed to this channel by default. For use in (manual) test environments only and a limited number of devices." + }, + { + "id": "device_vendor_msft_defender_configuration_platformupdateschannel_3", + "displayName": "Current Channel (Preview): Devices set to this channel will be offered updates earliest during the monthly gradual release cycle. Suggested for pre-production/validation environments.", + "description": "Current Channel (Preview): Devices set to this channel will be offered updates earliest during the monthly gradual release cycle. Suggested for pre-production/validation environments." + }, + { + "id": "device_vendor_msft_defender_configuration_platformupdateschannel_4", + "displayName": "Current Channel (Staged): Devices will be offered updates after the monthly gradual release cycle. Suggested to apply to a small, representative part of your production population (~10%).", + "description": "Current Channel (Staged): Devices will be offered updates after the monthly gradual release cycle. Suggested to apply to a small, representative part of your production population (~10%)." + }, + { + "id": "device_vendor_msft_defender_configuration_platformupdateschannel_5", + "displayName": "Current Channel (Broad): Devices will be offered updates only after the gradual release cycle completes. Suggested to apply to a broad set of devices in your production population (~10-100%).", + "description": "Current Channel (Broad): Devices will be offered updates only after the gradual release cycle completes. Suggested to apply to a broad set of devices in your production population (~10-100%)." + }, + { + "id": "device_vendor_msft_defender_configuration_platformupdateschannel_6", + "displayName": "Critical - Time delay: Devices will be offered updates with a 48-hour delay. Suggested for critical environments only.", + "description": "Critical - Time delay: Devices will be offered updates with a 48-hour delay. Suggested for critical environments only." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_quickscanincludeexclusions", + "displayName": "Quick Scan Include Exclusions", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_quickscanincludeexclusions_0", + "displayName": "If you set this setting to 0 or do not configure it, exclusions are not scanned during quick scans.", + "description": "If you set this setting to 0 or do not configure it, exclusions are not scanned during quick scans." + }, + { + "id": "device_vendor_msft_defender_configuration_quickscanincludeexclusions_1", + "displayName": "If you set this setting to 1, all files and directories that are excluded from real-time protection using contextual exclusions are scanned during a quick scan.", + "description": "If you set this setting to 1, all files and directories that are excluded from real-time protection using contextual exclusions are scanned during a quick scan." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_randomizescheduletasktimes", + "displayName": "Randomize Schedule Task Times", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_randomizescheduletasktimes_1", + "displayName": "Widen or narrow the randomization period for scheduled scans. Specify a randomization window of between 1 and 23 hours by using the setting SchedulerRandomizationTime.", + "description": "Widen or narrow the randomization period for scheduled scans. Specify a randomization window of between 1 and 23 hours by using the setting SchedulerRandomizationTime." + }, + { + "id": "device_vendor_msft_defender_configuration_randomizescheduletasktimes_0", + "displayName": "Scheduled tasks will not be randomized.", + "description": "Scheduled tasks will not be randomized." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_scanonlyifidleenabled", + "displayName": "Scan Only If Idle Enabled", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_scanonlyifidleenabled_1", + "displayName": "Runs scheduled scans only if the system is idle.", + "description": "Runs scheduled scans only if the system is idle." + }, + { + "id": "device_vendor_msft_defender_configuration_scanonlyifidleenabled_0", + "displayName": "Runs scheduled scans regardless of whether the system is idle.", + "description": "Runs scheduled scans regardless of whether the system is idle." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_schedulerrandomizationtime", + "displayName": "Scheduler Randomization Time", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday", + "displayName": "Schedule Security Intelligence Update Day", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_0", + "displayName": "Daily", + "description": "Daily" + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_1", + "displayName": "Sunday", + "description": "Sunday" + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_2", + "displayName": "Monday", + "description": "Monday" + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_3", + "displayName": "Tuesday", + "description": "Tuesday" + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_4", + "displayName": "Wednesday", + "description": "Wednesday" + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_5", + "displayName": "Thursday", + "description": "Thursday" + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_6", + "displayName": "Friday", + "description": "Friday" + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_7", + "displayName": "Saturday", + "description": "Saturday" + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdateday_8", + "displayName": "Never", + "description": "Never" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_schedulesecurityintelligenceupdatetime", + "displayName": "Schedule Security Intelligence Update Time", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_secureddevicesconfiguration", + "displayName": "Secured Devices Configuration", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_secureddevicesconfiguration_removablemediadevices", + "displayName": "Removable Media Devices", + "description": "RemovableMediaDevices" + }, + { + "id": "device_vendor_msft_defender_configuration_secureddevicesconfiguration_cdromdevices", + "displayName": "Cd Rom Devices", + "description": "CdRomDevices" + }, + { + "id": "device_vendor_msft_defender_configuration_secureddevicesconfiguration_wpddevices", + "displayName": "Wpd Devices", + "description": "WpdDevices" + }, + { + "id": "device_vendor_msft_defender_configuration_secureddevicesconfiguration_printerdevices", + "displayName": "Printer Devices", + "description": "PrinterDevices" + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_securityintelligencelocationupdateatscheduledtimeonly", + "displayName": "Security Intelligence Location Update At Scheduled Time Only", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_securityintelligencelocationupdateatscheduledtimeonly_1", + "displayName": "If you enable this setting and configure SecurityIntelligenceLocation, updates from the configured location occur only at the previously configured scheduled update time.", + "description": "If you enable this setting and configure SecurityIntelligenceLocation, updates from the configured location occur only at the previously configured scheduled update time." + }, + { + "id": "device_vendor_msft_defender_configuration_securityintelligencelocationupdateatscheduledtimeonly_0", + "displayName": "If you either disable or do not configure this setting, updates occur whenever a new security intelligence update is detected at the location that is specified by SecurityIntelligenceLocation.", + "description": "If you either disable or do not configure this setting, updates occur whenever a new security intelligence update is detected at the location that is specified by SecurityIntelligenceLocation." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel", + "displayName": "Security Intelligence Updates Channel", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel_0", + "displayName": "Not configured (Default). The device will stay up to date automatically during the gradual release cycle. Suitable for most devices.", + "description": "Not configured (Default). The device will stay up to date automatically during the gradual release cycle. Suitable for most devices." + }, + { + "id": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel_4", + "displayName": "Current Channel (Staged): Devices will be offered updates after the release cycle. Suggested to apply to a small, representative part of production population (~10%).", + "description": "Current Channel (Staged): Devices will be offered updates after the release cycle. Suggested to apply to a small, representative part of production population (~10%)." + }, + { + "id": "device_vendor_msft_defender_configuration_securityintelligenceupdateschannel_5", + "displayName": "Current Channel (Broad): Devices will be offered updates only after the gradual release cycle completes. Suggested to apply to a broad set of devices in your production population (~10-100%).", + "description": "Current Channel (Broad): Devices will be offered updates only after the gradual release cycle completes. Suggested to apply to a broad set of devices in your production population (~10-100%)." + } + ] + }, + { + "id": "device_vendor_msft_defender_configuration_supportloglocation", + "displayName": "Support Log Location", + "options": null + }, + { + "id": "device_vendor_msft_defender_configuration_throttleforscheduledscanonly", + "displayName": "Throttle For Scheduled Scan Only", + "options": [ + { + "id": "device_vendor_msft_defender_configuration_throttleforscheduledscanonly_1", + "displayName": "If you enable this setting, CPU throttling will apply only to scheduled scans.", + "description": "If you enable this setting, CPU throttling will apply only to scheduled scans." + }, + { + "id": "device_vendor_msft_defender_configuration_throttleforscheduledscanonly_0", + "displayName": "If you disable this setting, CPU throttling will apply to scheduled and custom scans.", + "description": "If you disable this setting, CPU throttling will apply to scheduled and custom scans." + } + ] + }, + { + "id": "device_vendor_msft_dmclient_provider_{providerid}", + "displayName": " Provider ID", + "options": null + }, + { + "id": "device_vendor_msft_dmclient_provider_{providerid}_configrefresh_cadence", + "displayName": "Refresh cadence", + "options": null + }, + { + "id": "device_vendor_msft_dmclient_provider_{providerid}_configrefresh_enabled", + "displayName": "Config refresh", + "options": [ + { + "id": "device_vendor_msft_dmclient_provider_{providerid}_configrefresh_enabled_true", + "displayName": "Enabled.", + "description": "Enabled." + }, + { + "id": "device_vendor_msft_dmclient_provider_{providerid}_configrefresh_enabled_false", + "displayName": "Disabled.", + "description": "Disabled." + } + ] + }, + { + "id": "device_vendor_msft_email_accountname", + "displayName": "Account Name", + "options": null + }, + { + "id": "device_vendor_msft_email_emailaddressattributeaad", + "displayName": "Email address attribute from AAD", + "options": null + }, + { + "id": "device_vendor_msft_email_emailserver", + "displayName": "Email Server", + "options": null + }, + { + "id": "device_vendor_msft_email_usernameattributeaad", + "displayName": "Username attribute from AAD", + "options": null + }, + { + "id": "device_vendor_msft_euiccs_{euicc}", + "displayName": "eSIM", + "options": null + }, + { + "id": "device_vendor_msft_euiccs_{euicc}_downloadservers_{servername}", + "displayName": "Download Servers", + "options": null + }, + { + "id": "device_vendor_msft_euiccs_{euicc}_downloadservers_{servername}_autoenable", + "displayName": "Auto Enable", + "options": [ + { + "id": "device_vendor_msft_euiccs_{euicc}_downloadservers_{servername}_autoenable_false", + "displayName": "Disable", + "description": "Disable" + }, + { + "id": "device_vendor_msft_euiccs_{euicc}_downloadservers_{servername}_autoenable_true", + "displayName": "Enable", + "description": "Enable" + } + ] + }, + { + "id": "device_vendor_msft_euiccs_{euicc}_downloadservers_{servername}_servername", + "displayName": "Server Name", + "options": null + }, + { + "id": "device_vendor_msft_euiccs_{euicc}_policies_localuienabled", + "displayName": "Display Local UI", + "options": [ + { + "id": "device_vendor_msft_euiccs_{euicc}_policies_localuienabled_false", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_euiccs_{euicc}_policies_localuienabled_true", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_laps_policies_adencryptedpasswordhistorysize", + "displayName": "AD Encrypted Password History Size", + "options": null + }, + { + "id": "device_vendor_msft_laps_policies_administratoraccountname", + "displayName": "Administrator Account Name", + "options": null + }, + { + "id": "device_vendor_msft_laps_policies_adpasswordencryptionenabled", + "displayName": "AD Password Encryption Enabled", + "options": [ + { + "id": "device_vendor_msft_laps_policies_adpasswordencryptionenabled_false", + "displayName": "Store the password in clear-text form in Active Directory", + "description": "Store the password in clear-text form in Active Directory" + }, + { + "id": "device_vendor_msft_laps_policies_adpasswordencryptionenabled_true", + "displayName": "Store the password in encrypted form in Active Directory", + "description": "Store the password in encrypted form in Active Directory" + } + ] + }, + { + "id": "device_vendor_msft_laps_policies_adpasswordencryptionprincipal", + "displayName": "AD Password Encryption Principal", + "options": null + }, + { + "id": "device_vendor_msft_laps_policies_backupdirectory", + "displayName": "Backup Directory", + "options": [ + { + "id": "device_vendor_msft_laps_policies_backupdirectory_0", + "displayName": "Disabled (password will not be backed up)", + "description": "Disabled (password will not be backed up)" + }, + { + "id": "device_vendor_msft_laps_policies_backupdirectory_1", + "displayName": "Backup the password to Azure AD only", + "description": "Backup the password to Azure AD only" + }, + { + "id": "device_vendor_msft_laps_policies_backupdirectory_2", + "displayName": "Backup the password to Active Directory only", + "description": "Backup the password to Active Directory only" + } + ] + }, + { + "id": "device_vendor_msft_laps_policies_passwordagedays", + "displayName": "Password Age Days", + "options": null + }, + { + "id": "device_vendor_msft_laps_policies_passwordagedays_aad", + "displayName": "Password Age Days", + "options": null + }, + { + "id": "device_vendor_msft_laps_policies_passwordcomplexity", + "displayName": "Password Complexity", + "options": [ + { + "id": "device_vendor_msft_laps_policies_passwordcomplexity_1", + "displayName": "Large letters", + "description": "Large letters" + }, + { + "id": "device_vendor_msft_laps_policies_passwordcomplexity_2", + "displayName": "Large letters + small letters", + "description": "Large letters + small letters" + }, + { + "id": "device_vendor_msft_laps_policies_passwordcomplexity_3", + "displayName": "Large letters + small letters + numbers", + "description": "Large letters + small letters + numbers" + }, + { + "id": "device_vendor_msft_laps_policies_passwordcomplexity_4", + "displayName": "Large letters + small letters + numbers + special characters", + "description": "Large letters + small letters + numbers + special characters" + }, + { + "id": "device_vendor_msft_laps_policies_passwordcomplexity_5", + "displayName": "Large letters + small letters + numbers + special characters (improved readability)", + "description": "Large letters + small letters + numbers + special characters (improved readability)" + } + ] + }, + { + "id": "device_vendor_msft_laps_policies_passwordexpirationprotectionenabled", + "displayName": "Password Expiration Protection Enabled", + "options": [ + { + "id": "device_vendor_msft_laps_policies_passwordexpirationprotectionenabled_false", + "displayName": "Allow configured password expiriration timestamp to exceed maximum password age", + "description": "Allow configured password expiriration timestamp to exceed maximum password age" + }, + { + "id": "device_vendor_msft_laps_policies_passwordexpirationprotectionenabled_true", + "displayName": "Do not allow configured password expiriration timestamp to exceed maximum password age", + "description": "Do not allow configured password expiriration timestamp to exceed maximum password age" + } + ] + }, + { + "id": "device_vendor_msft_laps_policies_passwordlength", + "displayName": "Password Length", + "options": null + }, + { + "id": "device_vendor_msft_laps_policies_postauthenticationactions", + "displayName": "Post Authentication Actions", + "options": [ + { + "id": "device_vendor_msft_laps_policies_postauthenticationactions_1", + "displayName": "Reset password: upon expiry of the grace period, the managed account password will be reset.", + "description": "Reset password: upon expiry of the grace period, the managed account password will be reset." + }, + { + "id": "device_vendor_msft_laps_policies_postauthenticationactions_3", + "displayName": "Reset the password and logoff the managed account: upon expiry of the grace period, the managed account password will be reset and any interactive logon sessions using the managed account will terminated.", + "description": "Reset the password and logoff the managed account: upon expiry of the grace period, the managed account password will be reset and any interactive logon sessions using the managed account will terminated." + }, + { + "id": "device_vendor_msft_laps_policies_postauthenticationactions_5", + "displayName": "Reset the password and reboot: upon expiry of the grace period, the managed account password will be reset and the managed device will be immediately rebooted.", + "description": "Reset the password and reboot: upon expiry of the grace period, the managed account password will be reset and the managed device will be immediately rebooted." + } + ] + }, + { + "id": "device_vendor_msft_laps_policies_postauthenticationresetdelay", + "displayName": "Post Authentication Reset Delay", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}", + "displayName": "Device-scoped settings", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_enablepinrecovery", + "displayName": "Enable Pin Recovery", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_enablepinrecovery_false", + "displayName": "false", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_enablepinrecovery_true", + "displayName": "true", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_excludesecuritydevices_tpm12", + "displayName": "Restrict use of TPM 1.2", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_excludesecuritydevices_tpm12_false", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_excludesecuritydevices_tpm12_true", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_digits", + "displayName": "Digits", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_digits_0", + "displayName": "Allows the use of digits in PIN.", + "description": "Allows the use of digits in PIN." + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_digits_1", + "displayName": "Requires the use of at least one digits in PIN.", + "description": "Requires the use of at least one digits in PIN." + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_digits_2", + "displayName": "Does not allow the use of digits in PIN.", + "description": "Does not allow the use of digits in PIN." + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_expiration", + "displayName": "Expiration", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_history", + "displayName": "PIN History", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_lowercaseletters", + "displayName": "Lowercase Letters", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_lowercaseletters_0", + "displayName": "Allowed", + "description": "Allows the use of lowercase letters in PIN." + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_lowercaseletters_1", + "displayName": "Required", + "description": "Requires the use of at least one lowercase letters in PIN." + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_lowercaseletters_2", + "displayName": "Blocked", + "description": "Does not allow the use of lowercase letters in PIN." + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_maximumpinlength", + "displayName": "Maximum PIN Length", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_minimumpinlength", + "displayName": "Minimum PIN Length", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_specialcharacters", + "displayName": "Special Characters", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_specialcharacters_0", + "displayName": "Allows the use of special characters in PIN.", + "description": "Allows the use of special characters in PIN." + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_specialcharacters_1", + "displayName": "Requires the use of at least one special characters in PIN.", + "description": "Requires the use of at least one special characters in PIN." + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_specialcharacters_2", + "displayName": "Does not allow the use of special characters in PIN.", + "description": "Does not allow the use of special characters in PIN." + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_uppercaseletters", + "displayName": "Uppercase Letters", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_uppercaseletters_0", + "displayName": "Allowed", + "description": "Allows the use of uppercase letters in PIN." + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_uppercaseletters_1", + "displayName": "Required", + "description": "Requires the use of at least one uppercase letters in PIN." + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_uppercaseletters_2", + "displayName": "Blocked", + "description": "Does not allow the use of uppercase letters in PIN." + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_remote_useremotepassport", + "displayName": "Use Remote Passport", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_remote_useremotepassport_false", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_remote_useremotepassport_true", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_requiresecuritydevice", + "displayName": "Require Security Device", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_requiresecuritydevice_false", + "displayName": "false", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_requiresecuritydevice_true", + "displayName": "true", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usecertificateforonpremauth", + "displayName": "Use Certificate For On Prem Auth", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usecertificateforonpremauth_false", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usecertificateforonpremauth_true", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usecloudtrustforonpremauth", + "displayName": "Use Cloud Trust For On Prem Auth", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usecloudtrustforonpremauth_false", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usecloudtrustforonpremauth_true", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usehellocertificatesassmartcardcertificates", + "displayName": "Use Hello Certificates As Smart Card Certificates", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usehellocertificatesassmartcardcertificates_false", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usehellocertificatesassmartcardcertificates_true", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usepassportforwork", + "displayName": "Use Windows Hello For Business (Device)", + "options": [ + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usepassportforwork_false", + "displayName": "false", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_{tenantid}_policies_usepassportforwork_true", + "displayName": "true", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_biometrics_enableesswithsupportedperipherals", + "displayName": "Enable ESS with Supported Peripherals", + "options": [ + { + "id": "device_vendor_msft_passportforwork_biometrics_enableesswithsupportedperipherals_0", + "displayName": "Enhanced sign-in security will be disabled on all systems. If a user already has a secure Windows Hello enrollment, they will lose their enrollment and must reset PIN, and they will have the option to re-enroll in normal face and fingerprint. Peripheral usage will be enabled by disabling Enhanced sign-in security. OS will not attempt to start secure components, even if the secure hardware and software components are present. (not recommended)", + "description": "Enhanced sign-in security will be disabled on all systems. If a user already has a secure Windows Hello enrollment, they will lose their enrollment and must reset PIN, and they will have the option to re-enroll in normal face and fingerprint. Peripheral usage will be enabled by disabling Enhanced sign-in security. OS will not attempt to start secure components, even if the secure hardware and software components are present. (not recommended)" + }, + { + "id": "device_vendor_msft_passportforwork_biometrics_enableesswithsupportedperipherals_1", + "displayName": "Enhanced sign-in security will be enabled on systems with capable software and hardware, following the existing default behavior in Windows. For systems with one secure modality (face or fingerprint) and one insecure modality (fingerprint or face), only the secure sensor can be used for sign-in and the insecure sensor(s) will be blocked. This includes peripheral devices, which are unsupported and will be unusable. (default and recommended for highest security)", + "description": "Enhanced sign-in security will be enabled on systems with capable software and hardware, following the existing default behavior in Windows. For systems with one secure modality (face or fingerprint) and one insecure modality (fingerprint or face), only the secure sensor can be used for sign-in and the insecure sensor(s) will be blocked. This includes peripheral devices, which are unsupported and will be unusable. (default and recommended for highest security)" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_biometrics_facialfeaturesuseenhancedantispoofing", + "displayName": "Facial Features Use Enhanced Anti Spoofing", + "options": [ + { + "id": "device_vendor_msft_passportforwork_biometrics_facialfeaturesuseenhancedantispoofing_false", + "displayName": "false", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_biometrics_facialfeaturesuseenhancedantispoofing_true", + "displayName": "true", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_biometrics_usebiometrics", + "displayName": "Allow Use of Biometrics", + "options": [ + { + "id": "device_vendor_msft_passportforwork_biometrics_usebiometrics_false", + "displayName": "False", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_biometrics_usebiometrics_true", + "displayName": "True", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_deviceunlock_groupa", + "displayName": "Group A", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_deviceunlock_groupb", + "displayName": "Group B", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_deviceunlock_plugins", + "displayName": "Device Unlock Plugins", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_dynamiclock_dynamiclock", + "displayName": "Dynamic Lock", + "options": [ + { + "id": "device_vendor_msft_passportforwork_dynamiclock_dynamiclock_false", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_passportforwork_dynamiclock_dynamiclock_true", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_passportforwork_dynamiclock_plugins", + "displayName": "Dynamic Lock Plugins", + "options": null + }, + { + "id": "device_vendor_msft_passportforwork_securitykey_usesecuritykeyforsignin", + "displayName": "Use Security Key For Signin", + "options": [ + { + "id": "device_vendor_msft_passportforwork_securitykey_usesecuritykeyforsignin_0", + "displayName": "Disabled", + "description": "disabled" + }, + { + "id": "device_vendor_msft_passportforwork_securitykey_usesecuritykeyforsignin_1", + "displayName": "Enabled", + "description": "enabled" + } + ] + }, + { + "id": "device_vendor_msft_pkcscertificate_certificatevalidityperiod", + "displayName": "Certificate validity period", + "options": null + }, + { + "id": "device_vendor_msft_pkcscertificate_certificationauthority", + "displayName": "Certification Authority", + "options": null + }, + { + "id": "device_vendor_msft_pkcscertificate_keystorageprovider", + "displayName": "Key storage provider (KSP)", + "options": null + }, + { + "id": "device_vendor_msft_pkcscertificate_renewalthreshold", + "displayName": "Renewal threshold (%)", + "options": null + }, + { + "id": "device_vendor_msft_pkcscertificate_subjectnameformat", + "displayName": "Subject name format", + "options": null + }, + { + "id": "device_vendor_msft_pkcsimportedcertificate_intendedpurpose", + "displayName": "Intended Purpose", + "options": null + }, + { + "id": "device_vendor_msft_pkcsimportedcertificate_keystorageprovider", + "displayName": "Key storage provider (KSP)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_abovelock_allowcortanaabovelock", + "displayName": "Allow Cortana Above Lock", + "options": [ + { + "id": "device_vendor_msft_policy_config_abovelock_allowcortanaabovelock_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_abovelock_allowcortanaabovelock_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_abovelock_allowtoasts", + "displayName": "Allow Toasts", + "options": [ + { + "id": "device_vendor_msft_policy_config_abovelock_allowtoasts_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_abovelock_allowtoasts_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_accounts_allowaddingnonmicrosoftaccountsmanually", + "displayName": "Allow Adding Non Microsoft Accounts Manually", + "options": [ + { + "id": "device_vendor_msft_policy_config_accounts_allowaddingnonmicrosoftaccountsmanually_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_accounts_allowaddingnonmicrosoftaccountsmanually_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_accounts_allowmicrosoftaccountconnection", + "displayName": "Allow Microsoft Account Connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_accounts_allowmicrosoftaccountconnection_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_accounts_allowmicrosoftaccountconnection_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_accounts_allowmicrosoftaccountsigninassistant", + "displayName": "Allow Microsoft Account Sign In Assistant", + "options": [ + { + "id": "device_vendor_msft_policy_config_accounts_allowmicrosoftaccountsigninassistant_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_accounts_allowmicrosoftaccountsigninassistant_1", + "displayName": "Manual start", + "description": "Manual start" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_accounts_domainnamesforemailsync", + "displayName": "Domain Names For Email Sync", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_activexcontrols_approvedinstallationsites", + "displayName": "Approved Installation Sites for ActiveX Controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_activexcontrols_approvedinstallationsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_activexcontrols_approvedinstallationsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_activexcontrols_approvedinstallationsites_approvedactivexinstallsiteslist", + "displayName": "Host URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_activexcontrols_approvedinstallationsites_approvedactivexinstallsiteslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_activexcontrols_approvedinstallationsites_approvedactivexinstallsiteslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies", + "displayName": "Establish ActiveX installation policy for sites in Trusted zones", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreinvalidcertdate", + "displayName": "Expired certificate validation date (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreinvalidcertdate_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreinvalidcertdate_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreinvalidcn", + "displayName": "Invalid certificate name (CN) (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreinvalidcn_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreinvalidcn_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreunknownca", + "displayName": "Unknown certifcation authority (CA) (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreunknownca_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignoreunknownca_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignorewrongcertusage", + "displayName": "Wrong certificate usage (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignorewrongcertusage_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_ignorewrongcertusage_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installsignedocx", + "displayName": "Installation Policy for signed ActiveX control (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installsignedocx_0", + "displayName": "Don't install", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installsignedocx_1", + "displayName": "Prompt the user", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installsignedocx_2", + "displayName": "Silently install", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installtrustedocx", + "displayName": "Installation Policy for ActiveX control signed by trusted publisher (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installtrustedocx_0", + "displayName": "Don't install", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installtrustedocx_1", + "displayName": "Prompt the user", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installtrustedocx_2", + "displayName": "Silently install", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installunsignedocx", + "displayName": "Installation Policy for unsigned ActiveX control (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installunsignedocx_0", + "displayName": "Don't install", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_activexinstallservice_axisurlzonepolicies_installunsignedocx_1", + "displayName": "Prompt the user", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd", + "displayName": "Password Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_adminname", + "displayName": "Name of administrator account to manage", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_adminname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_adminname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_adminname_txt_adminaccountname", + "displayName": "Administrator account name (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_dontallowpwdexpirationbehindpolicy", + "displayName": "Do not allow password expiration time longer than required by policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_dontallowpwdexpirationbehindpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_dontallowpwdexpirationbehindpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_elm_admpwd_passwordagedays", + "displayName": "Password Age (Days) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_elm_admpwd_passwordcomplexity", + "displayName": "Password Complexity (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_elm_admpwd_passwordcomplexity_1", + "displayName": "Large letters", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_elm_admpwd_passwordcomplexity_2", + "displayName": "Large letters + small letters", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_elm_admpwd_passwordcomplexity_3", + "displayName": "Large letters + small letters + numbers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_elm_admpwd_passwordcomplexity_4", + "displayName": "Large letters + small letters + numbers + specials", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_elm_admpwd_passwordlength", + "displayName": "Password Length (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_enabled", + "displayName": "Enable local admin password management", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_admpwd_pol_admpwd_enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatprevent16bitmach", + "displayName": "Prevent access to 16-bit applications", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatprevent16bitmach_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatprevent16bitmach_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatremoveprogramcompatproppage", + "displayName": "Remove Program Compatibility Property Page", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatremoveprogramcompatproppage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatremoveprogramcompatproppage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffapplicationimpacttelemetry", + "displayName": "Turn off Application Telemetry", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffapplicationimpacttelemetry_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffapplicationimpacttelemetry_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffengine", + "displayName": "Turn off Application Compatibility Engine", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffengine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffengine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprogramcompatibilityassistant_2", + "displayName": "Turn off Program Compatibility Assistant", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprogramcompatibilityassistant_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprogramcompatibilityassistant_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprograminventory", + "displayName": "Turn off Inventory Collector", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprograminventory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprograminventory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffswitchback", + "displayName": "Turn off SwitchBack Compatibility Engine", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffswitchback_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffswitchback_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffuseractionrecord", + "displayName": "Turn off Steps Recorder", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffuseractionrecord_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appcompat_appcompatturnoffuseractionrecord_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appxpackagemanager_allowdeploymentinspecialprofiles", + "displayName": "Allow deployment operations in special profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appxpackagemanager_allowdeploymentinspecialprofiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appxpackagemanager_allowdeploymentinspecialprofiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeapplicationcontenturirules", + "displayName": "Turn on dynamic Content URI Rules for Windows store apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeapplicationcontenturirules_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeapplicationcontenturirules_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeapplicationcontenturirules_listbox_contenturirules", + "displayName": "Content URI Rules: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockfileelevation", + "displayName": "Block launching desktop apps associated with a file.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockfileelevation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockfileelevation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockhostedappaccesswinrt", + "displayName": "Block launching Universal Windows apps with Windows Runtime API access from hosted content.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockhostedappaccesswinrt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockhostedappaccesswinrt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockprotocolelevation", + "displayName": "Block launching desktop apps associated with a URI scheme", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockprotocolelevation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockprotocolelevation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_auditsettings_includecmdline", + "displayName": "Include command line in process creation events", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_auditsettings_includecmdline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_auditsettings_includecmdline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablebranchcache", + "displayName": "Do not allow the BITS client to use Windows Branch Cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablebranchcache_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablebranchcache_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablepeercachingclient", + "displayName": "Do not allow the computer to act as a BITS Peercaching client", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablepeercachingclient_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablepeercachingclient_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablepeercachingserver", + "displayName": "Do not allow the computer to act as a BITS Peercaching server", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablepeercachingserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_disablepeercachingserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_enablepeercaching", + "displayName": "Allow BITS Peercaching", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_enablepeercaching_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_enablepeercaching_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthservedforpeers", + "displayName": "Limit the maximum network bandwidth used for Peercaching", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthservedforpeers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthservedforpeers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthservedforpeers_bits_maxbandwidthservedforpeerslist", + "displayName": "Maximum network bandwidth used for Peercaching (bps): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance", + "displayName": "Set up a maintenance schedule to limit the maximum network bandwidth used for BITS background transfers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysfrom", + "displayName": "From (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysfrom_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysfrom_1", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysfrom_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysfrom_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysfrom_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysfrom_5", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysfrom_6", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysto", + "displayName": "To (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysto_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysto_1", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysto_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysto_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysto_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysto_5", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancedaysto_6", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehighprioritylimit", + "displayName": "High Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehighpriorityunit", + "displayName": "High Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehighpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehighpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehighpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom", + "displayName": "From (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_0", + "displayName": "12 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_1", + "displayName": "1 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_2", + "displayName": "2 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_3", + "displayName": "3 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_4", + "displayName": "4 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_5", + "displayName": "5 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_6", + "displayName": "6 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_7", + "displayName": "7 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_8", + "displayName": "8 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_9", + "displayName": "9 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_10", + "displayName": "10 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_11", + "displayName": "11 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_12", + "displayName": "12 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_13", + "displayName": "1 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_14", + "displayName": "2 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_15", + "displayName": "3 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_16", + "displayName": "4 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_17", + "displayName": "5 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_18", + "displayName": "6 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_19", + "displayName": "7 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_20", + "displayName": "8 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_21", + "displayName": "9 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_22", + "displayName": "10 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursfrom_23", + "displayName": "11 PM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto", + "displayName": "To (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_0", + "displayName": "12 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_1", + "displayName": "1 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_2", + "displayName": "2 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_3", + "displayName": "3 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_4", + "displayName": "4 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_5", + "displayName": "5 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_6", + "displayName": "6 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_7", + "displayName": "7 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_8", + "displayName": "8 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_9", + "displayName": "9 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_10", + "displayName": "10 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_11", + "displayName": "11 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_12", + "displayName": "12 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_13", + "displayName": "1 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_14", + "displayName": "2 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_15", + "displayName": "3 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_16", + "displayName": "4 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_17", + "displayName": "5 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_18", + "displayName": "6 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_19", + "displayName": "7 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_20", + "displayName": "8 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_21", + "displayName": "9 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_22", + "displayName": "10 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancehoursto_23", + "displayName": "11 PM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancelowprioritylimit", + "displayName": "Low Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancelowpriorityunit", + "displayName": "Low Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancelowpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancelowpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancelowpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancenormalprioritylimit", + "displayName": "Normal Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancenormalpriorityunit", + "displayName": "Normal Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancenormalpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancenormalpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_maintenance_bits_maintenancenormalpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work", + "displayName": "Set up a work schedule to limit the maximum network bandwidth used for BITS background transfers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_ignorelimitsonlan", + "displayName": "Ignore bandwidth limits if the source and the destination are on the same subnet. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_ignorelimitsonlan_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_ignorelimitsonlan_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworkhighprioritylimit", + "displayName": "High Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworkhighpriorityunit", + "displayName": "High Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworkhighpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworkhighpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworkhighpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworklowprioritylimit", + "displayName": "Low Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworklowpriorityunit", + "displayName": "Low Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworklowpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworklowpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworklowpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworknormalprioritylimit", + "displayName": "Normal Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworknormalpriorityunit", + "displayName": "Normal Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworknormalpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworknormalpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_nonworknormalpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysfrom", + "displayName": "From (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysfrom_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysfrom_1", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysfrom_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysfrom_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysfrom_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysfrom_5", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysfrom_6", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysto", + "displayName": "To (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysto_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysto_1", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysto_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysto_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysto_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysto_5", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workdaysto_6", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhighprioritylimit", + "displayName": "High Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhighpriorityunit", + "displayName": "High Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhighpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhighpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhighpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom", + "displayName": "From (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_0", + "displayName": "12 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_1", + "displayName": "1 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_2", + "displayName": "2 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_3", + "displayName": "3 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_4", + "displayName": "4 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_5", + "displayName": "5 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_6", + "displayName": "6 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_7", + "displayName": "7 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_8", + "displayName": "8 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_9", + "displayName": "9 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_10", + "displayName": "10 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_11", + "displayName": "11 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_12", + "displayName": "12 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_13", + "displayName": "1 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_14", + "displayName": "2 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_15", + "displayName": "3 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_16", + "displayName": "4 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_17", + "displayName": "5 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_18", + "displayName": "6 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_19", + "displayName": "7 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_20", + "displayName": "8 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_21", + "displayName": "9 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_22", + "displayName": "10 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursfrom_23", + "displayName": "11 PM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto", + "displayName": "To (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_0", + "displayName": "12 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_1", + "displayName": "1 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_2", + "displayName": "2 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_3", + "displayName": "3 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_4", + "displayName": "4 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_5", + "displayName": "5 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_6", + "displayName": "6 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_7", + "displayName": "7 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_8", + "displayName": "8 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_9", + "displayName": "9 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_10", + "displayName": "10 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_11", + "displayName": "11 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_12", + "displayName": "12 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_13", + "displayName": "1 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_14", + "displayName": "2 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_15", + "displayName": "3 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_16", + "displayName": "4 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_17", + "displayName": "5 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_18", + "displayName": "6 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_19", + "displayName": "7 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_20", + "displayName": "8 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_21", + "displayName": "9 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_22", + "displayName": "10 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_workhoursto_23", + "displayName": "11 PM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worklowprioritylimit", + "displayName": "Low Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worklowpriorityunit", + "displayName": "Low Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worklowpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worklowpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worklowpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worknormalprioritylimit", + "displayName": "Normal Priority Limit: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worknormalpriorityunit", + "displayName": "Normal Priority Unit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worknormalpriorityunit_1", + "displayName": "Kbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worknormalpriorityunit_2", + "displayName": "Mbps", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxbandwidthv2_work_bits_worknormalpriorityunit_3", + "displayName": "Unlimited", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxcachesize", + "displayName": "Limit the BITS Peercache size", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxcachesize_bits_maxsize", + "displayName": "Percentage of disk space to be used for the BITS peercache: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxcontentage", + "displayName": "Limit the age of files in the BITS Peercache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxcontentage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxcontentage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxcontentage_bits_maxcontentagelist", + "displayName": "Number of days: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxdownloadtime", + "displayName": "Limit the maximum BITS job download time", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxdownloadtime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxdownloadtime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxdownloadtime_bits_maxdownloadseconds", + "displayName": "Active Job Timeout in seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxfilesperjob", + "displayName": "Limit the maximum number of files allowed in a BITS job", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxfilesperjob_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxfilesperjob_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxfilesperjob_bits_maxfilesperjoblist", + "displayName": "Maximum number of files allowed in a BITS job: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxjobspermachine", + "displayName": "Limit the maximum number of BITS jobs for this computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxjobspermachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxjobspermachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxjobspermachine_bits_maxjobspermachinelist", + "displayName": "Maximum number of BITS jobs for this computer: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxjobsperuser", + "displayName": "Limit the maximum number of BITS jobs for each user", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxjobsperuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxjobsperuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxjobsperuser_bits_maxjobsperuserlist", + "displayName": "Maximum number of BITS jobs for each user: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxrangesperfile", + "displayName": "Limit the maximum number of ranges that can be added to the file in a BITS job", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxrangesperfile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxrangesperfile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_bits_bits_maxrangesperfile_bits_maxrangesperfilelist", + "displayName": "Maximum number of ranges that can be added to the file in a BITS job: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ciphersuiteorder_sslciphersuiteorder", + "displayName": "SSL Cipher Suite Order", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ciphersuiteorder_sslciphersuiteorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ciphersuiteorder_sslciphersuiteorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ciphersuiteorder_sslciphersuiteorder_pol_sslciphersuiteorder", + "displayName": "SSL Cipher Suites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ciphersuiteorder_sslcurveorder", + "displayName": "ECC Curve Order", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ciphersuiteorder_sslcurveorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ciphersuiteorder_sslcurveorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ciphersuiteorder_sslcurveorder_sslcurveorderlist", + "displayName": "ECC Curve Order: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_com_appmgmt_com_searchforclsid_2", + "displayName": "Download missing COM components", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_com_appmgmt_com_searchforclsid_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_com_appmgmt_com_searchforclsid_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_forcedefaultlockscreen", + "displayName": "Force a specific default lock screen and logon image", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_forcedefaultlockscreen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_forcedefaultlockscreen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_forcedefaultlockscreen_lockscreenimage", + "displayName": "Path to lock screen image: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_forcedefaultlockscreen_lockscreenoverlaysdisabled", + "displayName": "Turn off fun facts, tips, tricks, and more on lock screen (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_forcedefaultlockscreen_lockscreenoverlaysdisabled_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_forcedefaultlockscreen_lockscreenoverlaysdisabled_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nochanginglockscreen", + "displayName": "Prevent changing lock screen and logon image", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nochanginglockscreen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nochanginglockscreen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nochangingstartmenubackground", + "displayName": "Prevent changing start menu background", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nochangingstartmenubackground_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nochangingstartmenubackground_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nolockscreen", + "displayName": "Do not display the lock screen", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nolockscreen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nolockscreen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_personalcolors", + "displayName": "Force a specific background and accent color", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_personalcolors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_personalcolors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_personalcolors_personalcolors_accent", + "displayName": "Accent color: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_personalcolors_personalcolors_background", + "displayName": "Start background color: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_startbackground", + "displayName": "Force a specific Start background", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_startbackground_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_startbackground_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_startbackground_startbackgroundspin", + "displayName": "Background ID: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_cpls_usedefaulttile", + "displayName": "Apply the default account picture to all users", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_cpls_usedefaulttile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_cpls_usedefaulttile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock", + "displayName": "Allow users to select when a password is required when resuming from connected standby", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_defaultcredentialprovider", + "displayName": "Assign a default credential provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_defaultcredentialprovider_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_defaultcredentialprovider_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_defaultcredentialprovider_defaultcredentialprovider_message", + "displayName": "Assign the following credential provider as the default credential provider: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_excludedcredentialproviders", + "displayName": "Exclude credential providers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_excludedcredentialproviders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_excludedcredentialproviders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credentialproviders_excludedcredentialproviders_excludedcredentialproviders_message", + "displayName": "Exclude the following credential providers: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefaultcredentials", + "displayName": "Allow delegating default credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefaultcredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefaultcredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefaultcredentials_allowdefaultcredentials_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefaultcredentials_concatenatedefaults_adc", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefaultcredentials_concatenatedefaults_adc_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefaultcredentials_concatenatedefaults_adc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefcredentialswhenntlmonly", + "displayName": "Allow delegating default credentials with NTLM-only server authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefcredentialswhenntlmonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefcredentialswhenntlmonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefcredentialswhenntlmonly_allowdefcredentialswhenntlmonly_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefcredentialswhenntlmonly_concatenatedefaults_adcn", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefcredentialswhenntlmonly_concatenatedefaults_adcn_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowdefcredentialswhenntlmonly_concatenatedefaults_adcn_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowencryptionoracle", + "displayName": "Encryption Oracle Remediation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowencryptionoracle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowencryptionoracle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowencryptionoracle_allowencryptionoracledrop", + "displayName": "Protection Level: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowencryptionoracle_allowencryptionoracledrop_0", + "displayName": "Force Updated Clients", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowencryptionoracle_allowencryptionoracledrop_1", + "displayName": "Mitigated", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowencryptionoracle_allowencryptionoracledrop_2", + "displayName": "Vulnerable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentials", + "displayName": "Allow delegating fresh credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentials_allowfreshcredentials_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentials_concatenatedefaults_afc", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentials_concatenatedefaults_afc_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentials_concatenatedefaults_afc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentialswhenntlmonly", + "displayName": "Allow delegating fresh credentials with NTLM-only server authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentialswhenntlmonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentialswhenntlmonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentialswhenntlmonly_allowfreshcredentialswhenntlmonly_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentialswhenntlmonly_concatenatedefaults_afcn", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentialswhenntlmonly_concatenatedefaults_afcn_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowfreshcredentialswhenntlmonly_concatenatedefaults_afcn_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentials", + "displayName": "Allow delegating saved credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentials_allowsavedcredentials_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentials_concatenatedefaults_asc", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentials_concatenatedefaults_asc_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentials_concatenatedefaults_asc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentialswhenntlmonly", + "displayName": "Allow delegating saved credentials with NTLM-only server authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentialswhenntlmonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentialswhenntlmonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentialswhenntlmonly_allowsavedcredentialswhenntlmonly_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentialswhenntlmonly_concatenatedefaults_ascn", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentialswhenntlmonly_concatenatedefaults_ascn_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_allowsavedcredentialswhenntlmonly_concatenatedefaults_ascn_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denydefaultcredentials", + "displayName": "Deny delegating default credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_denydefaultcredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denydefaultcredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denydefaultcredentials_concatenatedefaults_ddc", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_denydefaultcredentials_concatenatedefaults_ddc_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denydefaultcredentials_concatenatedefaults_ddc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denydefaultcredentials_denydefaultcredentials_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denyfreshcredentials", + "displayName": "Deny delegating fresh credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_denyfreshcredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denyfreshcredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denyfreshcredentials_concatenatedefaults_dfc", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_denyfreshcredentials_concatenatedefaults_dfc_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denyfreshcredentials_concatenatedefaults_dfc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denyfreshcredentials_denyfreshcredentials_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denysavedcredentials", + "displayName": "Deny delegating saved credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_denysavedcredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denysavedcredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denysavedcredentials_concatenatedefaults_dsc", + "displayName": "Concatenate OS defaults with input above (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_denysavedcredentials_concatenatedefaults_dsc_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denysavedcredentials_concatenatedefaults_dsc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_denysavedcredentials_denysavedcredentials_name", + "displayName": "Add servers to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_restrictedremoteadministration", + "displayName": "Restrict delegation of credentials to remote servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_restrictedremoteadministration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_restrictedremoteadministration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_restrictedremoteadministration_restrictedremoteadministrationdrop", + "displayName": "Use the following restricted mode: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credssp_restrictedremoteadministration_restrictedremoteadministrationdrop_3", + "displayName": "Restrict Credential Delegation", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_restrictedremoteadministration_restrictedremoteadministrationdrop_2", + "displayName": "Require Remote Credential Guard", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credssp_restrictedremoteadministration_restrictedremoteadministrationdrop_1", + "displayName": "Require Restricted Admin", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credui_enablesecurecredentialprompting", + "displayName": "Require trusted path for credential entry", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credui_enablesecurecredentialprompting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credui_enablesecurecredentialprompting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_credui_nolocalpasswordresetquestions", + "displayName": "Prevent the use of security questions for local accounts", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_credui_nolocalpasswordresetquestions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_credui_nolocalpasswordresetquestions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_datacollection_commercialidpolicy", + "displayName": "Configure the Commercial ID", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_datacollection_commercialidpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_datacollection_commercialidpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_datacollection_commercialidpolicy_commercialidvalue", + "displayName": "Commercial Id: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckallowlocallist", + "displayName": "Allow local activation security check exemptions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckallowlocallist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckallowlocallist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckexemptionlist", + "displayName": "Define Activation Security Check exemptions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckexemptionlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckexemptionlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckexemptionlist_dcom_lbl_actseccheckexemptionlist", + "displayName": "Add\\remove DCOM servers to the exemption list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckexemptionlist_dcom_lbl_actseccheckexemptionlist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dcom_dcomactivationsecuritycheckexemptionlist_dcom_lbl_actseccheckexemptionlist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_desktop_nodesktop", + "displayName": "Hide and disable all items on the desktop", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_desktop_nodesktop_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_desktop_nodesktop_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_devicecompat_deviceflags", + "displayName": "Device compatibility settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_devicecompat_deviceflags_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_devicecompat_deviceflags_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_devicecompat_drivershims", + "displayName": "Driver compatibility settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_devicecompat_drivershims_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_devicecompat_drivershims_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceguard_configcipolicy", + "displayName": "Deploy Windows Defender Application Control", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceguard_configcipolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceguard_configcipolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceguard_configcipolicy_configcipolicyfilepathtext", + "displayName": "Code Integrity Policy file path: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_allowadmininstall", + "displayName": "Allow administrators to override Device Installation Restriction policies", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_allowadmininstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_allowadmininstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_deniedpolicy_detailtext", + "displayName": "Display a custom message when installation is prevented by a policy setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_deniedpolicy_detailtext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_deniedpolicy_detailtext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_deniedpolicy_detailtext_deviceinstall_deniedpolicy_detailtext_text", + "displayName": "Detail Text (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_deniedpolicy_simpletext", + "displayName": "Display a custom message title when device installation is prevented by a policy setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_deniedpolicy_simpletext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_deniedpolicy_simpletext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_deniedpolicy_simpletext_deviceinstall_deniedpolicy_simpletext_text", + "displayName": "Main Text (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_installtimeout", + "displayName": "Configure device installation time-out", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_installtimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_installtimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_installtimeout_deviceinstall_installtimeout_time", + "displayName": "Device Installation Timeout (in seconds) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_policy_reboottime", + "displayName": "Time (in seconds) to force reboot when required for policy changes to take effect", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_policy_reboottime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_policy_reboottime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_policy_reboottime_deviceinstall_policy_reboottime_time", + "displayName": "Reboot Timeout (in seconds) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_removable_deny", + "displayName": "Prevent installation of removable devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_removable_deny_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_removable_deny_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_systemrestore", + "displayName": "Prevent creation of a system restore point during device activity that would normally prompt creation of a restore point", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_systemrestore_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_deviceinstall_systemrestore_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_driverinstall_classes_allowuser", + "displayName": "Allow non-administrators to install drivers for these device setup classes", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_driverinstall_classes_allowuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_driverinstall_classes_allowuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_deviceinstallation_driverinstall_classes_allowuser_driverinstall_classes_allowuser_list", + "displayName": "Allow Users to install driver packages for these classes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_deviceinstall_balloontips", + "displayName": "Turn off \"Found New Hardware\" balloons during device installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_deviceinstall_balloontips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_deviceinstall_balloontips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_driversearchplaces_searchorderconfiguration", + "displayName": "Specify search order for device driver source locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_driversearchplaces_searchorderconfiguration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_driversearchplaces_searchorderconfiguration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_driversearchplaces_searchorderconfiguration_driversearchplaces_searchorderconfiguration_dropdown", + "displayName": "Select search order: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_driversearchplaces_searchorderconfiguration_driversearchplaces_searchorderconfiguration_dropdown_1", + "displayName": "Always search Windows Update", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_driversearchplaces_searchorderconfiguration_driversearchplaces_searchorderconfiguration_dropdown_2", + "displayName": "Search Windows Update only if needed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_devicesetup_driversearchplaces_searchorderconfiguration_driversearchplaces_searchorderconfiguration_dropdown_0", + "displayName": "Do not search Windows Update", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dfs_dfsdiscoverdc", + "displayName": "Configure how often a DFS client discovers domain controllers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dfs_dfsdiscoverdc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dfs_dfsdiscoverdc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dfs_dfsdiscoverdc_dfsdiscoverdialog", + "displayName": "Time in minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_digitallocker_digitalx_diableapplication_titletext_2", + "displayName": "Do not allow Digital Locker to run", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_digitallocker_digitalx_diableapplication_titletext_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_digitallocker_digitalx_diableapplication_titletext_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskdiagnostic_dfdalertpolicy", + "displayName": "Disk Diagnostic: Configure custom alert text", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskdiagnostic_dfdalertpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskdiagnostic_dfdalertpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskdiagnostic_dfdalertpolicy_dfdalertpolicytitle", + "displayName": "Custom alert text (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskdiagnostic_wdiscenarioexecutionpolicy", + "displayName": "Disk Diagnostic: Configure execution level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskdiagnostic_wdiscenarioexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskdiagnostic_wdiscenarioexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_bootresumepolicy", + "displayName": "Turn off boot and resume optimizations", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_bootresumepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_bootresumepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_cachepowermodepolicy", + "displayName": "Turn off cache power mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_cachepowermodepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_cachepowermodepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_featureoffpolicy", + "displayName": "Turn off non-volatile cache feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_featureoffpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_featureoffpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_solidstatepolicy", + "displayName": "Turn off solid state mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_solidstatepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_disknvcache_solidstatepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_enable", + "displayName": "Enable disk quotas", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_enable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_enable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_enforce", + "displayName": "Enforce disk quota limit", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_enforce_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_enforce_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit", + "displayName": "Specify default quota limit and warning level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_limitunits", + "displayName": "Units (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_limitunits_1", + "displayName": "KB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_limitunits_2", + "displayName": "MB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_limitunits_3", + "displayName": "GB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_limitunits_4", + "displayName": "TB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_limitunits_5", + "displayName": "PB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_limitunits_6", + "displayName": "EB", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_limitvalue", + "displayName": "Value (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_thresholdunits", + "displayName": "Units (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_thresholdunits_1", + "displayName": "KB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_thresholdunits_2", + "displayName": "MB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_thresholdunits_3", + "displayName": "GB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_thresholdunits_4", + "displayName": "TB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_thresholdunits_5", + "displayName": "PB", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_thresholdunits_6", + "displayName": "EB", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_limit_dq_thresholdvalue", + "displayName": "Value (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_logeventoverlimit", + "displayName": "Log event when quota limit is exceeded", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_logeventoverlimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_logeventoverlimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_logeventoverthreshold", + "displayName": "Log event when quota warning level is exceeded", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_logeventoverthreshold_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_logeventoverthreshold_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_removablemedia", + "displayName": "Apply policy to removable media", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_removablemedia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_diskquota_dq_removablemedia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_distributedlinktracking_dlt_allowdomainmode", + "displayName": "Allow Distributed Link Tracking clients to use domain resources", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_distributedlinktracking_dlt_allowdomainmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_distributedlinktracking_dlt_allowdomainmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_allowfqdnnetbiosqueries", + "displayName": "Allow NetBT queries for fully qualified domain names", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_allowfqdnnetbiosqueries_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_allowfqdnnetbiosqueries_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_appendtomultilabelname", + "displayName": "Allow DNS suffix appending to unqualified multi-label name queries", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_appendtomultilabelname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_appendtomultilabelname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_domain", + "displayName": "Connection-specific DNS suffix", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_domain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_domain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_domain_dns_domainlabel", + "displayName": "DNS suffix: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_domainnamedevolutionlevel", + "displayName": "Primary DNS suffix devolution level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_domainnamedevolutionlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_domainnamedevolutionlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_domainnamedevolutionlevel_dns_domainnamedevolutionlevellabel", + "displayName": "Set the primary DNS suffix devolution level (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_idnencoding", + "displayName": "Turn off IDN encoding", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_idnencoding_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_idnencoding_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_idnmapping", + "displayName": "IDN mapping", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_idnmapping_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_idnmapping_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_nameserver", + "displayName": "DNS servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_nameserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_nameserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_nameserver_dns_nameserverlabel", + "displayName": "IP addresses: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_preferlocalresponsesoverlowerorderdns", + "displayName": "Prefer link local responses over DNS when received over a network with higher precedence", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_preferlocalresponsesoverlowerorderdns_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_preferlocalresponsesoverlowerorderdns_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_primarydnssuffix", + "displayName": "Primary DNS suffix", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_primarydnssuffix_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_primarydnssuffix_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_primarydnssuffix_dns_primarydnssuffixbox", + "displayName": "Enter a primary DNS suffix: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registeradaptername", + "displayName": "Register DNS records with connection-specific DNS suffix", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registeradaptername_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registeradaptername_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registerreverselookup", + "displayName": "Register PTR records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registerreverselookup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registerreverselookup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registerreverselookup_dns_registerreverselookup_box", + "displayName": "Register PTR records: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registerreverselookup_dns_registerreverselookup_box_2", + "displayName": "Register only if A record registration succeeds", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registerreverselookup_dns_registerreverselookup_box_1", + "displayName": "Register", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registerreverselookup_dns_registerreverselookup_box_0", + "displayName": "Do not register", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationenabled", + "displayName": "Dynamic update", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationoverwritesinconflict", + "displayName": "Replace addresses in conflicts", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationoverwritesinconflict_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationoverwritesinconflict_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationrefreshinterval", + "displayName": "Registration refresh interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationrefreshinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationrefreshinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationrefreshinterval_dns_registrationrefreshintervallabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationttl", + "displayName": "TTL value for A and PTR records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationttl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationttl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_registrationttl_dns_registrationttllabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_searchlist", + "displayName": "DNS suffix search list", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_searchlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_searchlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_searchlist_dns_searchlistlabel", + "displayName": "DNS Suffixes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_smartmultihomednameresolution", + "displayName": "Turn off smart multi-homed name resolution", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_smartmultihomednameresolution_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_smartmultihomednameresolution_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_smartprotocolreorder", + "displayName": "Turn off smart protocol reordering", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_smartprotocolreorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_smartprotocolreorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatesecuritylevel", + "displayName": "Update security level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatesecuritylevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatesecuritylevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatesecuritylevel_dns_updatesecuritylevel_box", + "displayName": "Update security level: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatesecuritylevel_dns_updatesecuritylevel_box_256", + "displayName": "Only secure", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatesecuritylevel_dns_updatesecuritylevel_box_16", + "displayName": "Only unsecure", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatesecuritylevel_dns_updatesecuritylevel_box_0", + "displayName": "Unsecure followed by secure", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatetopleveldomainzones", + "displayName": "Update top level domain zones", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatetopleveldomainzones_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_updatetopleveldomainzones_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_usedomainnamedevolution", + "displayName": "Primary DNS suffix devolution", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_usedomainnamedevolution_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_dns_usedomainnamedevolution_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_turn_off_multicast", + "displayName": "Turn off multicast name resolution", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_turn_off_multicast_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dnsclient_turn_off_multicast_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_2", + "displayName": "Specify a default color", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_2_dwmdefaultcolorizationcoloralpha", + "displayName": "Alpha (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_2_dwmdefaultcolorizationcolorblue", + "displayName": "Blue (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_2_dwmdefaultcolorizationcolorgreen", + "displayName": "Green (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_2_dwmdefaultcolorizationcolorred", + "displayName": "Red (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdisallowanimations_2", + "displayName": "Do not allow window animations", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdisallowanimations_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdisallowanimations_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdisallowcolorizationcolorchanges_2", + "displayName": "Do not allow color changes", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdisallowcolorizationcolorchanges_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_dwm_dwmdisallowcolorizationcolorchanges_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_encryptfilesonmove_noencryptonmove", + "displayName": "Do not automatically encrypt files moved to encrypted folders", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_encryptfilesonmove_noencryptonmove_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_encryptfilesonmove_noencryptonmove_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_approvedenstordevices", + "displayName": "Configure list of Enhanced Storage devices usable on your computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_approvedenstordevices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_approvedenstordevices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_approvedenstordevices_approvedenstordevices_list", + "displayName": "Usable Enhanced Storage Devices: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_approvedsilos", + "displayName": "Configure list of IEEE 1667 silos usable on your computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_approvedsilos_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_approvedsilos_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_approvedsilos_approvedsilos_list", + "displayName": "Usable IEEE 1667 Silo Type Identifiers: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_disablepasswordauthentication", + "displayName": "Do not allow password authentication of Enhanced Storage devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_disablepasswordauthentication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_disablepasswordauthentication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_disallowlegacydiskdevices", + "displayName": "Do not allow non-Enhanced Storage removable devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_disallowlegacydiskdevices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_disallowlegacydiskdevices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_lockdeviceonmachinelock", + "displayName": "Lock Enhanced Storage when the computer is locked", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_lockdeviceonmachinelock_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_lockdeviceonmachinelock_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_roothubconnectedenstordevices", + "displayName": "Allow only USB root hub connected Enhanced Storage devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_roothubconnectedenstordevices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_enhancedstorage_roothubconnectedenstordevices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef", + "displayName": "Default application reporting settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornonedef_list", + "displayName": "Default: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornonedef_list_1", + "displayName": "Report all application errors", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornonedef_list_0", + "displayName": "Do not report any application errors", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornoneincms_chk", + "displayName": "Report all errors in Microsoft applications. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornoneincms_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornoneincms_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornonewincomp_chk", + "displayName": "Report all errors in Windows components. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornonewincomp_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornonedef_pch_allornonewincomp_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornoneex", + "displayName": "List of applications to never report errors for", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornoneex_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornoneex_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornoneex_pch_allornoneex_list", + "displayName": "Exclude errors for applications on this list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornoneinc", + "displayName": "List of applications to always report errors for", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornoneinc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornoneinc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_allornoneinc_pch_allornoneinc_list", + "displayName": "Report errors for applications on this list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport", + "displayName": "Configure Error Reporting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_companytext_edit", + "displayName": "Replace instances of the word 'Microsoft' with: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_dumppath_edit", + "displayName": "Corporate upload file path: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_forceq_chk", + "displayName": "Force queue mode for application errors (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_forceq_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_forceq_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_noexternalurl_chk", + "displayName": "Do not display links to any Microsoft provided 'more information' web sites. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_noexternalurl_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_noexternalurl_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_nofilecollect_chk", + "displayName": "Do not collect additional files (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_nofilecollect_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_nofilecollect_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_noleveltwo_chk", + "displayName": "Do not collect additional machine data (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_noleveltwo_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_configurereport_pch_noleveltwo_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_reportoperatingsystemfaults", + "displayName": "Report operating system errors", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_reportoperatingsystemfaults_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_pch_reportoperatingsystemfaults_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werarchive_2", + "displayName": "Configure Report Archive", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werarchive_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werarchive_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werarchive_2_werarchivebehavior", + "displayName": "Archive behavior: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werarchive_2_werarchivebehavior_2", + "displayName": "Store all", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werarchive_2_werarchivebehavior_1", + "displayName": "Store parameters only", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werarchive_2_wermaxarchivecount", + "displayName": "Maximum number of reports to store: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werautoapproveosdumps_2", + "displayName": "Automatically send memory dumps for OS-generated error reports", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werautoapproveosdumps_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werautoapproveosdumps_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypassdatathrottling_2", + "displayName": "Do not throttle additional data", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypassdatathrottling_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypassdatathrottling_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypassnetworkcostthrottling_2", + "displayName": "Send data when on connected to a restricted/costed network", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypassnetworkcostthrottling_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypassnetworkcostthrottling_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypasspowerthrottling_2", + "displayName": "Send additional data when on battery power", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypasspowerthrottling_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werbypasspowerthrottling_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer", + "displayName": "Configure Corporate Windows Error Reporting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_wercercorporateportnumber", + "displayName": "Server port: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_wercerserver", + "displayName": "Corporate server name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_werceruploadonfreenetworksonly", + "displayName": "Only upload on free networks (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_werceruploadonfreenetworksonly_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_werceruploadonfreenetworksonly_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_wercerusessl", + "displayName": "Connect using SSL (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_wercerusessl_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wercer_wercerusessl_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werconsentoverride_2", + "displayName": "Ignore custom consent settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werconsentoverride_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werconsentoverride_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_2", + "displayName": "Configure Default consent", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_2_werconsent", + "displayName": "Consent level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_2_werconsent_1", + "displayName": "Always ask before sending data", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_2_werconsent_2", + "displayName": "Send parameters", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_2_werconsent_3", + "displayName": "Send parameters and safe additional data", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_2_werconsent_4", + "displayName": "Send all data", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werexlusion_2", + "displayName": "List of applications to be excluded", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werexlusion_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werexlusion_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werexlusion_2_werexlusionlist", + "displayName": "List of applications to be excluded (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wernologging_2", + "displayName": "Disable logging", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wernologging_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_wernologging_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2", + "displayName": "Configure Report Queue", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_wermaxqueuecount", + "displayName": "Maximum number of reports to queue: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_wermaxqueuesize", + "displayName": "Maximum size of the queue (MB): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_werminfreediskspace", + "displayName": "Minimum free disk space (MB): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_werqueuebehavior", + "displayName": "Queuing behavior: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_werqueuebehavior_0", + "displayName": "Default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_werqueuebehavior_1", + "displayName": "Always queue", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_werqueuebehavior_2", + "displayName": "Always queue for administrator", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_errorreporting_werqueue_2_werupdatecheck", + "displayName": "Number of days between solution check reminders: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventforwarding_forwarderresourceusage", + "displayName": "Configure forwarder resource usage", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventforwarding_forwarderresourceusage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventforwarding_forwarderresourceusage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventforwarding_forwarderresourceusage_maxforwardingrate", + "displayName": "The maximum forwarding rate ( events/sec ) allowed for the forwarder: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventforwarding_subscriptionmanager", + "displayName": "Configure target Subscription Manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventforwarding_subscriptionmanager_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventforwarding_subscriptionmanager_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventforwarding_subscriptionmanager_subscriptionmanager_listbox", + "displayName": "SubscriptionManagers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_1", + "displayName": "Back up log automatically when full", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_2", + "displayName": "Back up log automatically when full", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_3", + "displayName": "Back up log automatically when full", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_4", + "displayName": "Back up log automatically when full", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_autobackup_4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_1", + "displayName": "Configure log access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_1_channel_log_filelogaccess", + "displayName": "Log Access (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_2", + "displayName": "Configure log access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_2_channel_log_filelogaccess", + "displayName": "Log Access (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_3", + "displayName": "Configure log access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_3_channel_log_filelogaccess", + "displayName": "Log Access (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_4", + "displayName": "Configure log access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_4_channel_log_filelogaccess", + "displayName": "Log Access (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_5", + "displayName": "Configure log access (legacy)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_5_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_5_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_5_channel_log_filelogaccess", + "displayName": "Log Access (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_6", + "displayName": "Configure log access (legacy)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_6_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_6_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_6_channel_log_filelogaccess", + "displayName": "Log Access (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_7", + "displayName": "Configure log access (legacy)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_7_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_7_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_7_channel_log_filelogaccess", + "displayName": "Log Access (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_8", + "displayName": "Configure log access (legacy)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_8_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_8_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_filelogaccess_8_channel_log_filelogaccess", + "displayName": "Log Access (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_2", + "displayName": "Control Event Log behavior when the log file reaches its maximum size", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_3", + "displayName": "Control Event Log behavior when the log file reaches its maximum size", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_4", + "displayName": "Control Event Log behavior when the log file reaches its maximum size", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_log_retention_4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logenabled", + "displayName": "Turn on logging", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_1", + "displayName": "Control the location of the log file", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_1_channel_logfilepath", + "displayName": "Log File Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_2", + "displayName": "Control the location of the log file", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_2_channel_logfilepath", + "displayName": "Log File Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_3", + "displayName": "Control the location of the log file", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_3_channel_logfilepath", + "displayName": "Log File Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_4", + "displayName": "Control the location of the log file", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logfilepath_4_channel_logfilepath", + "displayName": "Log File Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logmaxsize_3", + "displayName": "Specify the maximum log file size (KB)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logmaxsize_3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logmaxsize_3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlog_channel_logmaxsize_3_channel_logmaxsize", + "displayName": "Maximum Log Size (KB) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlogging_enableprotectedeventlogging", + "displayName": "Enable Protected Event Logging", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventlogging_enableprotectedeventlogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlogging_enableprotectedeventlogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventlogging_enableprotectedeventlogging_encryptioncertificate", + "displayName": "\r\nProvide an encryption certificate to be used by Protected Event Logging. You may provide either:\r\n\r\n - The content of a base-64 encoded X.509 certificate\r\n - The thumbprint of a certificate that can be found in the Local Machine certificate store (usually deployed by PKI infrastructure)\r\n - The full path to a certificate (can be local, or a remote share)\r\n - The path to a directory containing a certificate or certificates (can be local, or a remote share)\r\n - The subject name of a certificate that can be found in the Local Machine certificate store (usually deployed by PKI infrastructure)\r\n\r\nThe resulting certificate must have 'Document Encryption' as an enhanced key usage (1.3.6.1.4.1.311.80.1), as well as either Data Encipherment or Key Encipherment key usages enabled.\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionprogram", + "displayName": "Events.asp program", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionprogram_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionprogram_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionprogram_eventviewer_redirectionprogram", + "displayName": "Events.asp program (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionprogramcommandlineparameters", + "displayName": "Events.asp program command line parameters", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionprogramcommandlineparameters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionprogramcommandlineparameters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionprogramcommandlineparameters_eventviewer_redirectionprogramcommandlineparameters", + "displayName": "Events.asp program command line parameters (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionurl", + "displayName": "Events.asp URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_eventviewer_eventviewer_redirectionurl_eventviewer_redirectionurl", + "displayName": "Events.asp URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_explorer_admininfourl", + "displayName": "Set a support web page link", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_explorer_admininfourl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_explorer_admininfourl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_explorer_admininfourl_admininfourl_textbox", + "displayName": "Support Web page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_explorer_disableroamedprofileinit", + "displayName": "Do not reinitialize a pre-existing roamed user profile when it is loaded on a machine for the first time", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_explorer_disableroamedprofileinit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_explorer_disableroamedprofileinit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_hibernate", + "displayName": "Allow hibernate (S4) when starting from a Windows To Go workspace", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_hibernate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_hibernate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_launcher", + "displayName": "Windows To Go Default Startup Options", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_launcher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_launcher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_sleep", + "displayName": "Disallow standby sleep states (S1-S3) when starting from a Windows to Go workspace", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_sleep_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_externalboot_portableoperatingsystem_sleep_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filerecovery_wdiscenarioexecutionpolicy", + "displayName": "Configure Corrupted File Recovery behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filerecovery_wdiscenarioexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filerecovery_wdiscenarioexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filerecovery_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filerecovery_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel_1", + "displayName": "Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filerecovery_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel_2", + "displayName": "Regular", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filerecovery_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel_3", + "displayName": "Silent", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_fileservervssprovider_pol_encryptprotocol", + "displayName": "Allow or Disallow use of encryption to protect the RPC protocol messages between File Share Shadow Copy Provider running on application server and File Share Shadow Copy Agent running on the file servers.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_fileservervssprovider_pol_encryptprotocol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_fileservervssprovider_pol_encryptprotocol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_disablecompression", + "displayName": "Do not allow compression on all NTFS volumes", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_disablecompression_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_disablecompression_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_disabledeletenotification", + "displayName": "Disable delete notifications on all volumes", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_disabledeletenotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_disabledeletenotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_disableencryption", + "displayName": "Do not allow encryption on all NTFS volumes", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_disableencryption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_disableencryption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_enablepagefileencryption", + "displayName": "Enable NTFS pagefile encryption", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_enablepagefileencryption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_enablepagefileencryption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_longpathsenabled", + "displayName": "Enable Win32 long paths", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_longpathsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_longpathsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_shortnamecreationsettings", + "displayName": "Short name creation options", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_shortnamecreationsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_shortnamecreationsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_shortnamecreationsettings_shortnamecreationsetting_levels", + "displayName": "Short name creation options (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_shortnamecreationsettings_shortnamecreationsetting_levels_0", + "displayName": "Enable on all volumes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_shortnamecreationsettings_shortnamecreationsetting_levels_1", + "displayName": "Disable on all volumes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_shortnamecreationsettings_shortnamecreationsetting_levels_2", + "displayName": "Enable / disable on a per volume basis", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_shortnamecreationsettings_shortnamecreationsetting_levels_3", + "displayName": "Disable on all data volumes", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation", + "displayName": "Selectively allow the evaluation of a symbolic link", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassl2l", + "displayName": "Local Link to Local Target (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassl2l_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassl2l_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassl2r", + "displayName": "Local Link to a Remote Target (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassl2r_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassl2r_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassr2l", + "displayName": "Remote Link to Local Target (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassr2l_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassr2l_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassr2r", + "displayName": "Remote Link to Remote Target (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassr2r_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_symlinkevaluation_symlinkclassr2r_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_txfdeprecatedfunctionality", + "displayName": "Enable / disable TXF deprecated features", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_filesys_txfdeprecatedfunctionality_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_filesys_txfdeprecatedfunctionality_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_folderredirection_localizexprelativepaths_2", + "displayName": "Use localized subfolder names when redirecting Start Menu and My Documents", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_folderredirection_localizexprelativepaths_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_folderredirection_localizexprelativepaths_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_folderredirection_primarycomputer_fr_2", + "displayName": "Redirect folders on primary computers only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_folderredirection_primarycomputer_fr_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_folderredirection_primarycomputer_fr_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_fthsvc_wdiscenarioexecutionpolicy", + "displayName": "Configure Scenario Execution Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_fthsvc_wdiscenarioexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_fthsvc_wdiscenarioexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_blockuserinputmethodsforsignin", + "displayName": "Disallow copying of user input methods to the system account for sign-in", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_blockuserinputmethodsforsignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_blockuserinputmethodsforsignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_customlocalesnoselect_2", + "displayName": "Disallow selection of Custom Locales", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_customlocalesnoselect_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_customlocalesnoselect_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_implicitdatacollectionoff_2", + "displayName": "Turn off automatic learning", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_implicitdatacollectionoff_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_implicitdatacollectionoff_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_localesystemrestrict", + "displayName": "Restrict system locales", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_localesystemrestrict_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_localesystemrestrict_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_localesystemrestrict_allowablesystemlocaletaglist", + "displayName": "System Locales (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_localeuserrestrict_2", + "displayName": "Restrict user locales", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_localeuserrestrict_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_localeuserrestrict_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_localeuserrestrict_2_allowableuserlocaletaglist", + "displayName": "User Locales (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage", + "displayName": "Restricts the UI language Windows uses for all logged users", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect", + "displayName": "Restrict users to the following language: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_en-us", + "displayName": "English", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_ja-jp", + "displayName": "Japanese", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_ko-kr", + "displayName": "Korean", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_de-de", + "displayName": "German", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_zh-cn", + "displayName": "Simplified Chinese", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_zh-tw", + "displayName": "Traditional Chinese (Taiwan)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_fr-fr", + "displayName": "French", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_es-es", + "displayName": "Spanish", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_it-it", + "displayName": "Italian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_sv-se", + "displayName": "Swedish", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_nl-nl", + "displayName": "Dutch", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_pt-br", + "displayName": "Portuguese (Brazil)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_fi-fi", + "displayName": "Finnish", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_nb-no", + "displayName": "Norwegian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_da-dk", + "displayName": "Danish", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_hu-hu", + "displayName": "Hungarian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_pl-pl", + "displayName": "Polish", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_ru-ru", + "displayName": "Russian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_cs-cz", + "displayName": "Czech", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_el-gr", + "displayName": "Greek", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_pt-pt", + "displayName": "Portuguese (Portugal)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_tr-tr", + "displayName": "Turkish", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_ar-sa", + "displayName": "Arabic", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_he-il", + "displayName": "Hebrew", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_sk-sk", + "displayName": "Slovak", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_sl-si", + "displayName": "Slovenian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_ro-ro", + "displayName": "Romanian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_hr-hr", + "displayName": "Croatian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_bg-bg", + "displayName": "Bulgarian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_et-ee", + "displayName": "Estonian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_lt-lt", + "displayName": "Lithuanian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_lv-lv", + "displayName": "Latvian", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_th-th", + "displayName": "Thai", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_zh-hk", + "displayName": "Traditional Chinese (Hong Kong)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_sr-latn-cs", + "displayName": "Serbian (Latin)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_lockmachineuilanguage_uilangselect_uk-ua", + "displayName": "Ukrainian", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_preventgeoidchange_2", + "displayName": "Disallow changing of geographic location", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_preventgeoidchange_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_preventgeoidchange_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_preventuseroverrides_2", + "displayName": "Disallow user override of locale settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_globalization_preventuseroverrides_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_globalization_preventuseroverrides_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_allowx-forestpolicy-and-rup", + "displayName": "Allow cross-forest user policy and roaming user profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_allowx-forestpolicy-and-rup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_allowx-forestpolicy-and-rup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_corpconnsyncwaittime", + "displayName": "Specify workplace connectivity wait time for policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_corpconnsyncwaittime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_corpconnsyncwaittime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_corpconnsyncwaittime_corpconnsyncwaittime_seconds", + "displayName": "Amount of time to wait (in seconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt", + "displayName": "Configure software Installation policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt_cse_nochanges1", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt_cse_nochanges1_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt_cse_nochanges1_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt_cse_slowlink1", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt_cse_slowlink1_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_appmgmt_cse_slowlink1_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota", + "displayName": "Configure disk quota policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_nobackground2", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_nobackground2_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_nobackground2_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_nochanges2", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_nochanges2_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_nochanges2_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_slowlink2", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_slowlink2_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_diskquota_cse_slowlink2_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery", + "displayName": "Configure EFS recovery policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_nobackground3", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_nobackground3_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_nobackground3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_nochanges3", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_nochanges3_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_nochanges3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_slowlink3", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_slowlink3_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_efsrecovery_cse_slowlink3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection", + "displayName": "Configure folder redirection policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection_cse_nochanges4", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection_cse_nochanges4_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection_cse_nochanges4_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection_cse_slowlink4", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection_cse_slowlink4_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_folderredirection_cse_slowlink4_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem", + "displayName": "Configure Internet Explorer Maintenance policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_nobackground5", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_nobackground5_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_nobackground5_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_nochanges5", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_nochanges5_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_nochanges5_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_slowlink5", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_slowlink5_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_iem_cse_slowlink5_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity", + "displayName": "Configure IP security policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_nobackground6", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_nobackground6_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_nobackground6_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_nochanges6", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_nochanges6_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_nochanges6_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_slowlink6", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_slowlink6_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_ipsecurity_cse_slowlink6_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry", + "displayName": "Configure registry policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry_cse_nobackground10", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry_cse_nobackground10_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry_cse_nobackground10_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry_cse_nochanges10", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry_cse_nochanges10_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_registry_cse_nochanges10_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts", + "displayName": "Configure scripts policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_nobackground7", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_nobackground7_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_nobackground7_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_nochanges7", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_nochanges7_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_nochanges7_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_slowlink7", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_slowlink7_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_scripts_cse_slowlink7_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security", + "displayName": "Configure security policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security_cse_nobackground11", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security_cse_nobackground11_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security_cse_nobackground11_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security_cse_nochanges11", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security_cse_nochanges11_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_security_cse_nochanges11_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired", + "displayName": "Configure wired policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_nobackground8", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_nobackground8_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_nobackground8_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_nochanges8", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_nochanges8_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_nochanges8_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_slowlink8", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_slowlink8_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wired_cse_slowlink8_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless", + "displayName": "Configure wireless policy processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_nobackground9", + "displayName": "Do not apply during periodic background processing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_nobackground9_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_nobackground9_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_nochanges9", + "displayName": "Process even if the Group Policy objects have not changed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_nochanges9_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_nochanges9_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_slowlink9", + "displayName": "Allow processing across a slow network connection (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_slowlink9_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_cse_wireless_cse_slowlink9_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_denyrsoptointeractiveuser_2", + "displayName": "Determine if interactive users can generate Resultant Set of Policy data", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_denyrsoptointeractiveuser_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_denyrsoptointeractiveuser_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disableaoacprocessing", + "displayName": "Turn off Group Policy Client Service AOAC optimization", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disableaoacprocessing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disableaoacprocessing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disablebackgroundpolicy", + "displayName": "Turn off background refresh of Group Policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disablebackgroundpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disablebackgroundpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disablelgpoprocessing", + "displayName": "Turn off Local Group Policy Objects processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disablelgpoprocessing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disablelgpoprocessing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disableusersfrommachgp", + "displayName": "Remove users' ability to invoke machine policy refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disableusersfrommachgp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_disableusersfrommachgp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablecdp", + "displayName": "Continue experiences on this device", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablecdp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablecdp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimization", + "displayName": "Configure Group Policy Caching", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimization_syncmodenodcthreshold1", + "displayName": "Timeout value: [number field] milliseconds (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimization_syncmodeslowlinkthreshold1", + "displayName": "Slow link value:[number field] milliseconds (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimizationonserversku", + "displayName": "Enable Group Policy Caching for Servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimizationonserversku_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimizationonserversku_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimizationonserversku_syncmodenodcthreshold1", + "displayName": "Timeout value: [number field] milliseconds (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablelogonoptimizationonserversku_syncmodeslowlinkthreshold1", + "displayName": "Slow link value:[number field] milliseconds (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablemmx", + "displayName": "Phone-PC linking on this device", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablemmx_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_enablemmx_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_fontmitigation", + "displayName": "Untrusted Font Blocking", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_fontmitigation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_fontmitigation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_fontmitigation_fontmitigation_dl", + "displayName": "Mitigation Options (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_fontmitigation_fontmitigation_dl_1000000000000", + "displayName": "Block untrusted fonts and log events", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_fontmitigation_fontmitigation_dl_2000000000000", + "displayName": "Do not block untrusted fonts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_fontmitigation_fontmitigation_dl_3000000000000", + "displayName": "Log events without blocking untrusted fonts", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_2", + "displayName": "Configure Group Policy slow link detection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_2_cse_3g_default_to_slowlink_computer", + "displayName": "Always treat WWAN connections as a slow link (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_2_cse_3g_default_to_slowlink_computer_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_2_cse_3g_default_to_slowlink_computer_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_2_transferrateop2", + "displayName": "Connection speed (Kbps): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrate", + "displayName": "Set Group Policy refresh interval for computers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrate_gprefreshrate1", + "displayName": "Minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrate_gprefreshrateoffset1", + "displayName": "Minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshratedc", + "displayName": "Set Group Policy refresh interval for domain controllers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshratedc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshratedc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshratedc_gprefreshrate2", + "displayName": "Minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshratedc_gprefreshrateoffset2", + "displayName": "Minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_logonscriptdelay", + "displayName": "Configure Logon Script Delay", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_logonscriptdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_logonscriptdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_logonscriptdelay_asyncscriptdelay1", + "displayName": "minute: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_onlyuselocaladminfiles", + "displayName": "Always use local ADM files for Group Policy Object Editor", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_onlyuselocaladminfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_onlyuselocaladminfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions", + "displayName": "Process Mitigation Options", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_processmitigationoptionslist", + "displayName": "Process Mitigation Options (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_processmitigationoptionslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_processmitigationoptionslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_resetdfsclientinfoduringrefreshpolicy", + "displayName": "Enable AD/DFS domain controller synchronization during policy refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_resetdfsclientinfoduringrefreshpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_resetdfsclientinfoduringrefreshpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_rsoplogging", + "displayName": "Turn off Resultant Set of Policy logging", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_rsoplogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_rsoplogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_slowlinkdefaultfordirectaccess", + "displayName": "Configure Direct Access connections as a fast network connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_slowlinkdefaultfordirectaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_slowlinkdefaultfordirectaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_slowlinkdefaulttoasync", + "displayName": "Change Group Policy processing to run asynchronously when a slow network connection is detected.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_slowlinkdefaulttoasync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_slowlinkdefaulttoasync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_syncwaittime", + "displayName": "Specify startup policy processing wait time", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_syncwaittime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_syncwaittime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_syncwaittime_syncwaittime_minutes", + "displayName": "Amount of time to wait (in seconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_userpolicymode", + "displayName": "Configure user Group Policy loopback processing mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_userpolicymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_userpolicymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_userpolicymode_userpolicymodeop", + "displayName": "Mode: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_userpolicymode_userpolicymodeop_1", + "displayName": "Merge", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_grouppolicy_userpolicymode_userpolicymodeop_2", + "displayName": "Replace", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_help_disablehhdep", + "displayName": "Turn off Data Execution Prevention for HTML Help Executible", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_help_disablehhdep_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_help_disablehhdep_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_help_helpqualifiedrootdir_comp", + "displayName": "Restrict potentially unsafe HTML Help functions to specified folders", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_help_helpqualifiedrootdir_comp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_help_helpqualifiedrootdir_comp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_help_helpqualifiedrootdir_comp_helpqualifiedrootdir_edit", + "displayName": "Enter folder names separated by semi-colons: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_help_restrictrunfromhelp_comp", + "displayName": "Restrict these programs from being launched from Help", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_help_restrictrunfromhelp_comp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_help_restrictrunfromhelp_comp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_help_restrictrunfromhelp_comp_restrictrunfromhelp_edit", + "displayName": "Enter executables separated by commas: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_helpandsupport_activehelp", + "displayName": "Turn off Active Help", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_helpandsupport_activehelp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_helpandsupport_activehelp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_hotspotauth_hotspotauth_enable", + "displayName": "Enable Hotspot Authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_hotspotauth_hotspotauth_enable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_hotspotauth_hotspotauth_enable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_ceipenable", + "displayName": "Turn off Windows Customer Experience Improvement Program", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_ceipenable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_ceipenable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_certmgr_disableautorootupdates", + "displayName": "Turn off Automatic Root Certificates Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_certmgr_disableautorootupdates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_certmgr_disableautorootupdates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_driversearchplaces_dontsearchwindowsupdate", + "displayName": "Turn off Windows Update device driver searching", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_driversearchplaces_dontsearchwindowsupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_driversearchplaces_dontsearchwindowsupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_eventviewer_disablelinks", + "displayName": "Turn off Event Viewer \"Events.asp\" links", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_eventviewer_disablelinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_eventviewer_disablelinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_hss_headlinespolicy", + "displayName": "Turn off Help and Support Center \"Did you know?\" content", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_hss_headlinespolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_hss_headlinespolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_hss_kbsearchpolicy", + "displayName": "Turn off Help and Support Center Microsoft Knowledge Base search", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_hss_kbsearchpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_hss_kbsearchpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_internetmanagement_restrictcommunication_2", + "displayName": "Restrict Internet communication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_internetmanagement_restrictcommunication_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_internetmanagement_restrictcommunication_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_nc_exitonisp", + "displayName": "Turn off Internet Connection Wizard if URL connection is referring to Microsoft.com", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_nc_exitonisp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_nc_exitonisp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_nc_noregistration", + "displayName": "Turn off Registration if URL connection is referring to Microsoft.com", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_nc_noregistration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_nc_noregistration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_pch_donotreport", + "displayName": "Turn off Windows Error Reporting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_pch_donotreport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_pch_donotreport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_removewindowsupdate_icm", + "displayName": "Turn off access to all Windows Update features", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_removewindowsupdate_icm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_removewindowsupdate_icm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_searchcompanion_disablefileupdates", + "displayName": "Turn off Search Companion content file updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_searchcompanion_disablefileupdates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_searchcompanion_disablefileupdates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_shellnouseinternetopenwith_2", + "displayName": "Turn off Internet File Association service", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_shellnouseinternetopenwith_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_shellnouseinternetopenwith_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_shellnousestoreopenwith_2", + "displayName": "Turn off access to the Store", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_shellnousestoreopenwith_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_shellnousestoreopenwith_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_shellremoveorderprints_2", + "displayName": "Turn off the \"Order Prints\" picture task", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_shellremoveorderprints_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_shellremoveorderprints_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_shellremovepublishtoweb_2", + "displayName": "Turn off the \"Publish to Web\" task for files and folders", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_shellremovepublishtoweb_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_shellremovepublishtoweb_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_winmsg_noinstrumentation_2", + "displayName": "Turn off the Windows Messenger Customer Experience Improvement Program", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_icm_winmsg_noinstrumentation_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_icm_winmsg_noinstrumentation_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iis_preventiisinstall", + "displayName": "Prevent IIS installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iis_preventiisinstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iis_preventiisinstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configureisnsservers", + "displayName": "Do not allow manual configuration of iSNS servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configureisnsservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configureisnsservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configuretargetportals", + "displayName": "Do not allow manual configuration of target portals", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configuretargetportals_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configuretargetportals_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configuretargets", + "displayName": "Do not allow manual configuration of discovered targets", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configuretargets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_configuretargets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_newstatictargets", + "displayName": "Do not allow adding new targets via manual configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_newstatictargets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsidiscovery_newstatictargets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsigeneral_changeiqnname", + "displayName": "Do not allow changes to initiator iqn name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsigeneral_changeiqnname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsigeneral_changeiqnname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsigeneral_restrictadditionallogins", + "displayName": "Do not allow additional session logins", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsigeneral_restrictadditionallogins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsigeneral_restrictadditionallogins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_changechapsecret", + "displayName": "Do not allow changes to initiator CHAP secret", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_changechapsecret_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_changechapsecret_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requireipsec", + "displayName": "Do not allow connections without IPSec", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requireipsec_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requireipsec_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requiremutualchap", + "displayName": "Do not allow sessions without mutual CHAP", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requiremutualchap_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requiremutualchap_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requireonewaychap", + "displayName": "Do not allow sessions without one way CHAP", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requireonewaychap_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_iscsi_iscsisecurity_requireonewaychap_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_cbacandarmor", + "displayName": "KDC support for claims, compound authentication and Kerberos armoring", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kdc_cbacandarmor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_cbacandarmor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_cbacandarmor_cbacandarmor_levels", + "displayName": "Claims, compound authentication for Dynamic Access Control and Kerberos armoring options: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kdc_cbacandarmor_cbacandarmor_levels_0", + "displayName": "Not supported", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_cbacandarmor_cbacandarmor_levels_1", + "displayName": "Supported", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_cbacandarmor_cbacandarmor_levels_2", + "displayName": "Always provide claims", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_cbacandarmor_cbacandarmor_levels_3", + "displayName": "Fail unarmored authentication requests", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_emitlili", + "displayName": "Provide information about previous logons to client computers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kdc_emitlili_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_emitlili_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_forestsearch", + "displayName": "Use forest search order", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kdc_forestsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_forestsearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_forestsearch_forestsearchlist", + "displayName": "Forests to Search (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_pkinitfreshness", + "displayName": "KDC support for PKInit Freshness Extension", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kdc_pkinitfreshness_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_pkinitfreshness_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_pkinitfreshness_pkinitfreshness_levels", + "displayName": "PKInit Freshness Extension options: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kdc_pkinitfreshness_pkinitfreshness_levels_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_pkinitfreshness_pkinitfreshness_levels_1", + "displayName": "Supported", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_pkinitfreshness_pkinitfreshness_levels_2", + "displayName": "Required", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_requestcompoundid", + "displayName": "Request compound authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kdc_requestcompoundid_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_requestcompoundid_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_ticketsizethreshold", + "displayName": "Warning for large Kerberos tickets", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kdc_ticketsizethreshold_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_ticketsizethreshold_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kdc_ticketsizethreshold_ticketsizethreshold", + "displayName": "Ticket Size Threshold (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_alwayssendcompoundid", + "displayName": "Always send compound authentication first", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_alwayssendcompoundid_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_alwayssendcompoundid_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_devicepkinitenabled", + "displayName": "Support device authentication using certificate", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_devicepkinitenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_devicepkinitenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_devicepkinitenabled_devicepkinitbehavior", + "displayName": "Device authentication behavior using certificate: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_devicepkinitenabled_devicepkinitbehavior_0", + "displayName": "Automatic", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_devicepkinitenabled_devicepkinitbehavior_1", + "displayName": "Force", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_hosttorealm", + "displayName": "Define host name-to-Kerberos realm mappings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_hosttorealm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_hosttorealm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_hosttorealm_hosttorealm", + "displayName": "Define host name-to-realm mappings: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_hosttorealm_hosttorealm_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_hosttorealm_hosttorealm_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxydisableserverrevocationcheck", + "displayName": "Disable revocation checking for the SSL certificate of KDC proxy servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxydisableserverrevocationcheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxydisableserverrevocationcheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxyserver", + "displayName": "Specify KDC proxy servers for Kerberos clients", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxyserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxyserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxyserver_kdcproxyserver", + "displayName": "Define KDC proxy servers settings: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxyserver_kdcproxyserver_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_kdcproxyserver_kdcproxyserver_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_mitrealms", + "displayName": "Define interoperable Kerberos V5 realm settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_mitrealms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_mitrealms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_mitrealms_mitrealms", + "displayName": "Define interoperable Kerberos V5 realm settings: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_mitrealms_mitrealms_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_mitrealms_mitrealms_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_serveracceptscompound", + "displayName": "Support compound authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_serveracceptscompound_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_serveracceptscompound_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_serveracceptscompound_compoundidenabled", + "displayName": "Support authorization with client device information: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_serveracceptscompound_compoundidenabled_0", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_serveracceptscompound_compoundidenabled_1", + "displayName": "Automatic", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_serveracceptscompound_compoundidenabled_2", + "displayName": "Always", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_stricttarget", + "displayName": "Require strict target SPN match on remote procedure calls", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_kerberos_stricttarget_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_kerberos_stricttarget_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_ciphersuiteorder", + "displayName": "Cipher suite order", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_ciphersuiteorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_ciphersuiteorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_ciphersuiteorder_multitext_ciphersuiteorder", + "displayName": "\r\nCipher suites:\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashpublication", + "displayName": "Hash Publication for BranchCache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashpublication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashpublication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashpublication_lbl_hashpublicationactioncombo", + "displayName": "Hash publication actions: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashpublication_lbl_hashpublicationactioncombo_0", + "displayName": "Allow hash publication only for shared folders on which BranchCache is enabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashpublication_lbl_hashpublicationactioncombo_1", + "displayName": "Disallow hash publication on all shared folders", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashpublication_lbl_hashpublicationactioncombo_2", + "displayName": "Allow hash publication for all shared folders", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashsupportversion", + "displayName": "Hash Version support for BranchCache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashsupportversion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashsupportversion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashsupportversion_lbl_hashversionsupportactioncombo", + "displayName": "Hash version supported: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashsupportversion_lbl_hashversionsupportactioncombo_1", + "displayName": "Supports V1 hash version only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashsupportversion_lbl_hashversionsupportactioncombo_2", + "displayName": "Supports V2 hash version only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_hashsupportversion_lbl_hashversionsupportactioncombo_3", + "displayName": "Supports V1 as well as V2 versions", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_honorciphersuiteorder", + "displayName": "Honor cipher suite order", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_honorciphersuiteorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanserver_pol_honorciphersuiteorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_ciphersuiteorder", + "displayName": "Cipher suite order", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_ciphersuiteorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_ciphersuiteorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_ciphersuiteorder_multitext_ciphersuiteorder", + "displayName": "\r\nCipher suites:\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_enablehandlecachingforcafiles", + "displayName": "Handle Caching on Continuous Availability Shares", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_enablehandlecachingforcafiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_enablehandlecachingforcafiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_enableofflinefilesforcashares", + "displayName": "Offline Files Availability on Continuous Availability Shares", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_enableofflinefilesforcashares_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_lanmanworkstation_pol_enableofflinefilesforcashares_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_leakdiagnostic_wdiscenarioexecutionpolicy", + "displayName": "Configure Scenario Execution Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_leakdiagnostic_wdiscenarioexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_leakdiagnostic_wdiscenarioexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio", + "displayName": "Turn on Mapper I/O (LLTDIO) driver", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_allowondomain", + "displayName": "Allow operation while in domain (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_allowondomain_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_allowondomain_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_allowonpublicnet", + "displayName": "Allow operation while in public network (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_allowonpublicnet_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_allowonpublicnet_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_prohibitonprivatenet", + "displayName": "Prohibit operation while in private network (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_prohibitonprivatenet_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablelltdio_lltd_enablelltdio_prohibitonprivatenet_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr", + "displayName": "Turn on Responder (RSPNDR) driver", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_allowondomain", + "displayName": "Allow operation while in domain (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_allowondomain_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_allowondomain_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_allowonpublicnet", + "displayName": "Allow operation while in public network (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_allowonpublicnet_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_allowonpublicnet_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_prohibitonprivatenet", + "displayName": "Prohibit operation while in private network (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_prohibitonprivatenet_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_linklayertopologydiscovery_lltd_enablerspndr_lltd_enablerspndr_prohibitonprivatenet_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_locationprovideradm_disablewindowslocationprovider_1", + "displayName": "Turn off Windows Location Provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_locationprovideradm_disablewindowslocationprovider_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_locationprovideradm_disablewindowslocationprovider_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_blockuserfromshowingaccountdetailsonsignin", + "displayName": "Block user from showing account details on sign-in", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_blockuserfromshowingaccountdetailsonsignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_blockuserfromshowingaccountdetailsonsignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_disableacrylicbackgroundonlogon", + "displayName": "Show clear logon background", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_disableacrylicbackgroundonlogon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_disableacrylicbackgroundonlogon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_disableexplorerrunlegacy_2", + "displayName": "Do not process the legacy run list", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_disableexplorerrunlegacy_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_disableexplorerrunlegacy_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_disableexplorerrunoncelegacy_2", + "displayName": "Do not process the run once list", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_disableexplorerrunoncelegacy_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_disableexplorerrunoncelegacy_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_disablestatusmessages", + "displayName": "Remove Boot / Shutdown / Logon / Logoff status messages", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_disablestatusmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_disablestatusmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_dontenumerateconnectedusers", + "displayName": "Do not enumerate connected users on domain-joined computers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_dontenumerateconnectedusers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_dontenumerateconnectedusers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_nowelcometips_2", + "displayName": "Do not display the Getting Started welcome screen at logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_nowelcometips_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_nowelcometips_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_run_2", + "displayName": "Run these programs at user logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_run_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_run_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_run_2_runlistbox2", + "displayName": "Items to run at logon (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_syncforegroundpolicy", + "displayName": "Always wait for the network at computer startup and logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_syncforegroundpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_syncforegroundpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_useoembackground", + "displayName": "Always use custom logon background", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_useoembackground_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_useoembackground_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_verbosestatus", + "displayName": "Display highly detailed status messages", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_logon_verbosestatus_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_logon_verbosestatus_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_allowfastservicestartup", + "displayName": "Allow antimalware service to startup with normal priority", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_allowfastservicestartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_allowfastservicestartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableantispywaredefender", + "displayName": "Turn off Microsoft Defender Antivirus", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableantispywaredefender_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableantispywaredefender_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableautoexclusions", + "displayName": "Turn off Auto Exclusions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableautoexclusions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableautoexclusions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableblockatfirstseen", + "displayName": "Configure the 'Block at First Sight' feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableblockatfirstseen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableblockatfirstseen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disablelocaladminmerge", + "displayName": "Configure local administrator merge behavior for lists", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disablelocaladminmerge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disablelocaladminmerge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disablerealtimemonitoring", + "displayName": "Turn off real-time protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disablerealtimemonitoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disablerealtimemonitoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableroutinelytakingaction", + "displayName": "Turn off routine remediation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableroutinelytakingaction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_disableroutinelytakingaction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_extensions", + "displayName": "Extension Exclusions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_extensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_extensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_extensions_exclusions_extensionslist", + "displayName": "Extension Exclusions (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_extensions_exclusions_extensionslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_extensions_exclusions_extensionslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_paths", + "displayName": "Path Exclusions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_paths_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_paths_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_paths_exclusions_pathslist", + "displayName": "Path Exclusions (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_paths_exclusions_pathslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_paths_exclusions_pathslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_processes", + "displayName": "Process Exclusions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_processes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_processes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_processes_exclusions_processeslist", + "displayName": "Process Exclusions (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_processes_exclusions_processeslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exclusions_processes_exclusions_processeslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_asronlyexclusions", + "displayName": "Exclude files and paths from Attack Surface Reduction Rules", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_asronlyexclusions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_asronlyexclusions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_asronlyexclusions_exploitguard_asr_asronlyexclusions", + "displayName": "Exclusions from ASR rules: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_asronlyexclusions_exploitguard_asr_asronlyexclusions_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_asronlyexclusions_exploitguard_asr_asronlyexclusions_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_rules", + "displayName": "Configure Attack Surface Reduction rules", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_rules_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_rules_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_rules_exploitguard_asr_rules", + "displayName": "Set the state for each ASR rule: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_rules_exploitguard_asr_rules_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_asr_rules_exploitguard_asr_rules_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_allowedapplications", + "displayName": "Configure allowed applications", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_allowedapplications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_allowedapplications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_allowedapplications_exploitguard_controlledfolderaccess_allowedapplications", + "displayName": "Enter the applications that should be trusted: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_allowedapplications_exploitguard_controlledfolderaccess_allowedapplications_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_allowedapplications_exploitguard_controlledfolderaccess_allowedapplications_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_protectedfolders", + "displayName": "Configure protected folders", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_protectedfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_protectedfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_protectedfolders_exploitguard_controlledfolderaccess_protectedfolders", + "displayName": "Enter the folders that should be guarded: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_protectedfolders_exploitguard_controlledfolderaccess_protectedfolders_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_exploitguard_controlledfolderaccess_protectedfolders_exploitguard_controlledfolderaccess_protectedfolders_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_mpengine_enablefilehashcomputation", + "displayName": "Enable file hash computation feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_mpengine_enablefilehashcomputation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_mpengine_enablefilehashcomputation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_disablesignatureretirement", + "displayName": "Turn on definition retirement", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_disablesignatureretirement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_disablesignatureretirement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_sku_differentiation_signature_set_guid", + "displayName": "Specify additional definition sets for network traffic inspection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_sku_differentiation_signature_set_guid_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_sku_differentiation_signature_set_guid_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_sku_differentiation_signature_set_guid_nis_consumers_ips_sku_differentiation_signature_set_guidlist", + "displayName": "Specify additional definition sets for network traffic inspection (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_sku_differentiation_signature_set_guid_nis_consumers_ips_sku_differentiation_signature_set_guidlist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_consumers_ips_sku_differentiation_signature_set_guid_nis_consumers_ips_sku_differentiation_signature_set_guidlist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_disableprotocolrecognition", + "displayName": "Turn on protocol recognition", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_disableprotocolrecognition_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_nis_disableprotocolrecognition_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxybypass", + "displayName": "Define addresses to bypass proxy server", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxybypass_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxybypass_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxybypass_proxybypass", + "displayName": "Define addresses to bypass proxy server (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxypacurl", + "displayName": "Define proxy auto-config (.pac) for connecting to the network", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxypacurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxypacurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxypacurl_proxypacurl", + "displayName": "Define proxy auto-config (.pac) for connecting to the network (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxyserver", + "displayName": "Define proxy server for connecting to the network", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxyserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxyserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_proxyserver_proxyserver", + "displayName": "Define proxy server for connecting to the network (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_quarantine_localsettingoverridepurgeitemsafterdelay", + "displayName": "Configure local setting override for the removal of items from Quarantine folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_quarantine_localsettingoverridepurgeitemsafterdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_quarantine_localsettingoverridepurgeitemsafterdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_quarantine_purgeitemsafterdelay", + "displayName": "Configure removal of items from Quarantine folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_quarantine_purgeitemsafterdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_quarantine_purgeitemsafterdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_quarantine_purgeitemsafterdelay_quarantine_purgeitemsafterdelay", + "displayName": "Configure removal of items from Quarantine folder (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_randomizescheduletasktimes", + "displayName": "Randomize scheduled task times", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_randomizescheduletasktimes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_randomizescheduletasktimes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablebehaviormonitoring", + "displayName": "Turn on behavior monitoring", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablebehaviormonitoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablebehaviormonitoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disableioavprotection", + "displayName": "Scan all downloaded files and attachments", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disableioavprotection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disableioavprotection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disableonaccessprotection", + "displayName": "Monitor file and program activity on your computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disableonaccessprotection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disableonaccessprotection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablerawwritenotification", + "displayName": "Turn on raw volume write notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablerawwritenotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablerawwritenotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablescanonrealtimeenable", + "displayName": "Turn on process scanning whenever real-time protection is enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablescanonrealtimeenable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_disablescanonrealtimeenable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_ioavmaxsize", + "displayName": "Define the maximum size of downloaded files and attachments to be scanned", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_ioavmaxsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_ioavmaxsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_ioavmaxsize_realtimeprotection_ioavmaxsize", + "displayName": "Define the maximum size of downloaded files and attachments to be scanned (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisablebehaviormonitoring", + "displayName": "Configure local setting override for turn on behavior monitoring", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisablebehaviormonitoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisablebehaviormonitoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisableioavprotection", + "displayName": "Configure local setting override for scanning all downloaded files and attachments", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisableioavprotection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisableioavprotection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisableonaccessprotection", + "displayName": "Configure local setting override for monitoring file and program activity on your computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisableonaccessprotection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisableonaccessprotection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisablerealtimemonitoring", + "displayName": "Configure local setting override to turn on real-time protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisablerealtimemonitoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverridedisablerealtimemonitoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverriderealtimescandirection", + "displayName": "Configure local setting override for monitoring for incoming and outgoing file activity", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverriderealtimescandirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_realtimeprotection_localsettingoverriderealtimescandirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_localsettingoverridescan_scheduletime", + "displayName": "Configure local setting override for the time of day to run a scheduled full scan to complete remediation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_localsettingoverridescan_scheduletime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_localsettingoverridescan_scheduletime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday", + "displayName": "Specify the day of the week to run a scheduled full scan to complete remediation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday", + "displayName": "Specify the day of the week to run a scheduled full scan to complete remediation (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_8", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_0", + "displayName": "Every Day", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_1", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_2", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_3", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_4", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_5", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_6", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduleday_remediation_scan_scheduleday_7", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduletime", + "displayName": "Specify the time of day to run a scheduled full scan to complete remediation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduletime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduletime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_remediation_scan_scheduletime_remediation_scan_scheduletime", + "displayName": "Specify the time of day to run a scheduled full scan to complete remediation (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_additionalactiontimeout", + "displayName": "Configure time out for detections requiring additional action", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_additionalactiontimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_additionalactiontimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_additionalactiontimeout_reporting_additionalactiontimeout", + "displayName": "Configure time out for detections requiring additional action (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_criticalfailuretimeout", + "displayName": "Configure time out for detections in critically failed state", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_criticalfailuretimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_criticalfailuretimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_criticalfailuretimeout_reporting_criticalfailuretimeout", + "displayName": "Configure time out for detections in critically failed state (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_disableenhancednotifications", + "displayName": "Turn off enhanced notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_disableenhancednotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_disableenhancednotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_disablegenericreports", + "displayName": "Configure Watson events", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_disablegenericreports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_disablegenericreports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_noncriticaltimeout", + "displayName": "Configure time out for detections in non-critical failed state", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_noncriticaltimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_noncriticaltimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_noncriticaltimeout_reporting_noncriticaltimeout", + "displayName": "Configure time out for detections in non-critical failed state (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_recentlycleanedtimeout", + "displayName": "Configure time out for detections in recently remediated state", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_recentlycleanedtimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_recentlycleanedtimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_recentlycleanedtimeout_reporting_recentlycleanedtimeout", + "displayName": "Configure time out for detections in recently remediated state (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_wpptracingcomponents", + "displayName": "Configure Windows software trace preprocessor components", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_wpptracingcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_wpptracingcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_wpptracingcomponents_reporting_wpptracingcomponents", + "displayName": "Configure Windows software trace preprocessor components (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_wpptracinglevel", + "displayName": "Configure WPP tracing level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_wpptracinglevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_wpptracinglevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_reporting_wpptracinglevel_reporting_wpptracinglevel", + "displayName": "Configure WPP tracing level (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_allowpause", + "displayName": "Allow users to pause scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_allowpause_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_allowpause_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_archivemaxdepth", + "displayName": "Specify the maximum depth to scan archive files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_archivemaxdepth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_archivemaxdepth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_archivemaxdepth_scan_archivemaxdepth", + "displayName": "Specify the maximum depth to scan archive files (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_archivemaxsize", + "displayName": "Specify the maximum size of archive files to be scanned", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_archivemaxsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_archivemaxsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_archivemaxsize_scan_archivemaxsize", + "displayName": "Specify the maximum size of archive files to be scanned (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablearchivescanning", + "displayName": "Scan archive files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablearchivescanning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablearchivescanning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableemailscanning", + "displayName": "Turn on e-mail scanning", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableemailscanning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableemailscanning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableheuristics", + "displayName": "Turn on heuristics", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableheuristics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableheuristics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablepackedexescanning", + "displayName": "Scan packed executables", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablepackedexescanning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablepackedexescanning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableremovabledrivescanning", + "displayName": "Scan removable drives", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableremovabledrivescanning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disableremovabledrivescanning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablereparsepointscanning", + "displayName": "Turn on reparse point scanning", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablereparsepointscanning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablereparsepointscanning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablerestorepoint", + "displayName": "Create a system restore point", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablerestorepoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablerestorepoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablescanningmappednetworkdrivesforfullscan", + "displayName": "Run full scan on mapped network drives", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablescanningmappednetworkdrivesforfullscan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablescanningmappednetworkdrivesforfullscan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablescanningnetworkfiles", + "displayName": "Scan network files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablescanningnetworkfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_disablescanningnetworkfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverrideavgcpuloadfactor", + "displayName": "Configure local setting override for maximum percentage of CPU utilization", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverrideavgcpuloadfactor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverrideavgcpuloadfactor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescanparameters", + "displayName": "Configure local setting override for the scan type to use for a scheduled scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescanparameters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescanparameters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescheduleday", + "displayName": "Configure local setting override for schedule scan day", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescheduleday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescheduleday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverrideschedulequickscantime", + "displayName": "Configure local setting override for scheduled quick scan time", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverrideschedulequickscantime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverrideschedulequickscantime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescheduletime", + "displayName": "Configure local setting override for scheduled scan time", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescheduletime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_localsettingoverridescheduletime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_lowcpupriority", + "displayName": "Configure low CPU priority for scheduled scans", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_lowcpupriority_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_lowcpupriority_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_missedscheduledscancountbeforecatchup", + "displayName": "Define the number of days after which a catch-up scan is forced", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_missedscheduledscancountbeforecatchup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_missedscheduledscancountbeforecatchup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_missedscheduledscancountbeforecatchup_scan_missedscheduledscancountbeforecatchup", + "displayName": "Define the number of scheduled scans that can be missed after which a catch-up scan is forced (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_purgeitemsafterdelay", + "displayName": "Turn on removal of items from scan history folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_purgeitemsafterdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_purgeitemsafterdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_purgeitemsafterdelay_scan_purgeitemsafterdelay", + "displayName": "Turn on removal of items from scan history folder (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_quickscaninterval", + "displayName": "Specify the interval to run quick scans per day", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_quickscaninterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_quickscaninterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_quickscaninterval_scan_quickscaninterval", + "displayName": "Specify the interval to run quick scans per day (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scanonlyifidle", + "displayName": "Start the scheduled scan only when computer is on but not in use", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scanonlyifidle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scanonlyifidle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday", + "displayName": "Specify the day of the week to run a scheduled scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday", + "displayName": "Specify the day of the week to run a scheduled scan (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_8", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_0", + "displayName": "Every Day", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_1", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_2", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_3", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_4", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_5", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_6", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduleday_scan_scheduleday_7", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduletime", + "displayName": "Specify the time of day to run a scheduled scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduletime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduletime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_scan_scheduletime_scan_scheduletime", + "displayName": "Specify the time of day to run a scheduled scan (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_servicekeepalive", + "displayName": "Allow antimalware service to remain running always", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_servicekeepalive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_servicekeepalive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_assignaturedue", + "displayName": "Define the number of days before spyware security intelligence is considered out of date", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_assignaturedue_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_assignaturedue_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_assignaturedue_signatureupdate_assignaturedue", + "displayName": "Define the number of days before spyware security intelligence is considered out of date (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_avsignaturedue", + "displayName": "Define the number of days before virus security intelligence is considered out of date", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_avsignaturedue_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_avsignaturedue_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_avsignaturedue_signatureupdate_avsignaturedue", + "displayName": "Define the number of days before virus security intelligence is considered out of date (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_definitionupdatefilesharessources", + "displayName": "Define file shares for downloading security intelligence updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_definitionupdatefilesharessources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_definitionupdatefilesharessources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_definitionupdatefilesharessources_signatureupdate_definitionupdatefilesharessources", + "displayName": "Define file shares for downloading security intelligence updates (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disablescanonupdate", + "displayName": "Turn on scan after security intelligence update", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disablescanonupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disablescanonupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disablescheduledsignatureupdateonbattery", + "displayName": "Allow security intelligence updates when running on battery power", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disablescheduledsignatureupdateonbattery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disablescheduledsignatureupdateonbattery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disableupdateonstartupwithoutengine", + "displayName": "Initiate security intelligence update on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disableupdateonstartupwithoutengine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_disableupdateonstartupwithoutengine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_fallbackorder", + "displayName": "Define the order of sources for downloading security intelligence updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_fallbackorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_fallbackorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_fallbackorder_signatureupdate_fallbackorder", + "displayName": "Define the order of sources for downloading security intelligence updates (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_forceupdatefrommu", + "displayName": "Allow security intelligence updates from Microsoft Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_forceupdatefrommu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_forceupdatefrommu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_realtimesignaturedelivery", + "displayName": "Allow real-time security intelligence updates based on reports to Microsoft MAPS", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_realtimesignaturedelivery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_realtimesignaturedelivery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday", + "displayName": "Specify the day of the week to check for security intelligence updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday", + "displayName": "Specify the day of the week to check for security intelligence updates (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_8", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_0", + "displayName": "Every Day", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_1", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_2", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_3", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_4", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_5", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_6", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduleday_signatureupdate_scheduleday_7", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduletime", + "displayName": "Specify the time to check for security intelligence updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduletime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduletime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_scheduletime_signatureupdate_scheduletime", + "displayName": "Specify the time to check for security intelligence updates (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_sharedsignatureslocation", + "displayName": "Define security intelligence location for VDI clients.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_sharedsignatureslocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_sharedsignatureslocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_sharedsignatureslocation_signatureupdate_sharedsignatureslocation", + "displayName": "Define file share for downloading security intelligence updates in virtual environments (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_signaturedisablenotification", + "displayName": "Allow notifications to disable security intelligence based reports to Microsoft MAPS", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_signaturedisablenotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_signaturedisablenotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_signatureupdatecatchupinterval", + "displayName": "Define the number of days after which a catch-up security intelligence update is required", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_signatureupdatecatchupinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_signatureupdatecatchupinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_signatureupdatecatchupinterval_signatureupdate_signatureupdatecatchupinterval", + "displayName": "Define the number of days after which a catch-up security intelligence update is required (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_updateonstartup", + "displayName": "Check for the latest virus and spyware security intelligence on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_updateonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_signatureupdate_updateonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynet_localsettingoverridespynetreporting", + "displayName": "Configure local setting override for reporting to Microsoft MAPS", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynet_localsettingoverridespynetreporting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynet_localsettingoverridespynetreporting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynetreporting", + "displayName": "Join Microsoft MAPS", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynetreporting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynetreporting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynetreporting_spynetreporting", + "displayName": "Join Microsoft MAPS (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynetreporting_spynetreporting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynetreporting_spynetreporting_1", + "displayName": "Basic MAPS", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_spynetreporting_spynetreporting_2", + "displayName": "Advanced MAPS", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_threats_threatiddefaultaction", + "displayName": "Specify threats upon which default action should not be taken when detected", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_threats_threatiddefaultaction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_threats_threatiddefaultaction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_threats_threatiddefaultaction_threats_threatiddefaultactionlist", + "displayName": "Specify threats upon which default action should not be taken when detected (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_threats_threatiddefaultaction_threats_threatiddefaultactionlist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_threats_threatiddefaultaction_threats_threatiddefaultactionlist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_customdefaultactiontoaststring", + "displayName": "Display additional text to clients when they need to perform an action", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_customdefaultactiontoaststring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_customdefaultactiontoaststring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_customdefaultactiontoaststring_ux_configuration_customdefaultactiontoaststring", + "displayName": "Display additional text to clients when they need to perform an action (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_notification_suppress", + "displayName": "Suppress all notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_notification_suppress_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_notification_suppress_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_suppressrebootnotification", + "displayName": "Suppresses reboot notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_suppressrebootnotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_suppressrebootnotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_uilockdown", + "displayName": "Enable headless UI mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_uilockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_microsoftdefenderantivirus_ux_configuration_uilockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mobilepcmobilitycenter_mobilitycenterenable_2", + "displayName": "Turn off Windows Mobility Center", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mobilepcmobilitycenter_mobilitycenterenable_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mobilepcmobilitycenter_mobilitycenterenable_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mobilepcpresentationsettings_presentationsettingsenable_2", + "displayName": "Turn off Windows presentation settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mobilepcpresentationsettings_presentationsettingsenable_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mobilepcpresentationsettings_presentationsettingsenable_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msapolicy_microsoftaccount_disableuserauth", + "displayName": "Block all consumer Microsoft account user authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msapolicy_microsoftaccount_disableuserauth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msapolicy_microsoftaccount_disableuserauth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msched_activationboundarypolicy", + "displayName": "Automatic Maintenance Activation Boundary", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msched_activationboundarypolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msched_activationboundarypolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msched_activationboundarypolicy_activationboundary", + "displayName": "Regular maintenance activation boundary (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msched_randomdelaypolicy", + "displayName": "Automatic Maintenance Random Delay", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msched_randomdelaypolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msched_randomdelaypolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msched_randomdelaypolicy_randomdelay", + "displayName": "Regular maintenance random delay (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdtsupportprovider", + "displayName": "Microsoft Support Diagnostic Tool: Turn on MSDT interactive communication with support provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdtsupportprovider_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdtsupportprovider_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdttooldownloadpolicy", + "displayName": "Microsoft Support Diagnostic Tool: Restrict tool download", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdttooldownloadpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdttooldownloadpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdttooldownloadpolicy_msdttooldownloadpolicylevel", + "displayName": "Tool downloads allowed (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdttooldownloadpolicy_msdttooldownloadpolicylevel_1", + "displayName": "Remote troubleshooting only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msdt_msdttooldownloadpolicy_msdttooldownloadpolicylevel_2", + "displayName": "Local and remote troubleshooting", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msdt_wdiscenarioexecutionpolicy", + "displayName": "Microsoft Support Diagnostic Tool: Configure execution level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msdt_wdiscenarioexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msdt_wdiscenarioexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownbrowse", + "displayName": "Allow users to browse for source while elevated", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownbrowse_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownbrowse_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownmedia", + "displayName": "Allow users to use media source while elevated", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownmedia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownmedia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownpatch", + "displayName": "Allow users to patch elevated products", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownpatch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_allowlockdownpatch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableautomaticapplicationshutdown", + "displayName": "Prohibit use of Restart Manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disableautomaticapplicationshutdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableautomaticapplicationshutdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableautomaticapplicationshutdown_disableautomaticapplicationshutdown", + "displayName": "Prohibit Usage of Restart Manager (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disableautomaticapplicationshutdown_disableautomaticapplicationshutdown_0", + "displayName": "Restart Manager On", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableautomaticapplicationshutdown_disableautomaticapplicationshutdown_1", + "displayName": "Restart Manager Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableautomaticapplicationshutdown_disableautomaticapplicationshutdown_2", + "displayName": "Restart Manager Off for Legacy App Setup", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablebrowse", + "displayName": "Remove browse dialog box for new source", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disablebrowse_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablebrowse_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableflyweightpatching", + "displayName": "Prohibit flyweight patching", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disableflyweightpatching_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableflyweightpatching_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableflyweightpatching_disableflyweightpatching", + "displayName": "Prohibit Flyweight Patching (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disableflyweightpatching_disableflyweightpatching_1", + "displayName": "Patch Optimization Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableflyweightpatching_disableflyweightpatching_0", + "displayName": "Patch Optimization On", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableloggingfrompackage", + "displayName": "Turn off logging via package settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disableloggingfrompackage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableloggingfrompackage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableloggingfrompackage_disableloggingfrompackage", + "displayName": "Disable logging via package settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disableloggingfrompackage_disableloggingfrompackage_1", + "displayName": "Disable logging via package settings off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disableloggingfrompackage_disableloggingfrompackage_0", + "displayName": "Disable logging via package settings on", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablemsi", + "displayName": "Turn off Windows Installer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disablemsi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablemsi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablemsi_disablemsi", + "displayName": "Disable Windows Installer (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disablemsi_disablemsi_2", + "displayName": "Always", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablemsi_disablemsi_1", + "displayName": "For non-managed applications only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablemsi_disablemsi_0", + "displayName": "Never", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablepatch", + "displayName": "Prevent users from using Windows Installer to install updates and upgrades", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disablepatch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablepatch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablerollback_2", + "displayName": "Prohibit rollback", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disablerollback_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablerollback_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablesharedcomponent", + "displayName": "Turn off shared components", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_disablesharedcomponent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_disablesharedcomponent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableluapatching", + "displayName": "Prohibit non-administrators from applying vendor signed updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableluapatching_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableluapatching_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disablepatchuninstall", + "displayName": "Prohibit removal of updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disablepatchuninstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disablepatchuninstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disablesrcheckpoints", + "displayName": "Turn off creation of System Restore checkpoints", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disablesrcheckpoints_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disablesrcheckpoints_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableuserinstalls", + "displayName": "Prohibit User Installs", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableuserinstalls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableuserinstalls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableuserinstalls_msi_disableuserinstallsbox", + "displayName": "User Install Behavior: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableuserinstalls_msi_disableuserinstallsbox_0", + "displayName": "Allow User Installs", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_disableuserinstalls_msi_disableuserinstallsbox_1", + "displayName": "Hide User Installs", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_enforceupgradecomponentrules", + "displayName": "Enforce upgrade component rules", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_enforceupgradecomponentrules_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_enforceupgradecomponentrules_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_maxpatchcachesize", + "displayName": "Control maximum size of baseline file cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_maxpatchcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_maxpatchcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msi_maxpatchcachesize_msi_maxpatchcachesize", + "displayName": "Baseline file cache maximum size (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msidisableembeddedui", + "displayName": "Prevent embedded UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msidisableembeddedui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msidisableembeddedui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msilogging", + "displayName": "Specify the types of events Windows Installer records in its transaction log", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_msilogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msilogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_msilogging_msilogging", + "displayName": "Logging (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_safeforscripting", + "displayName": "Prevent Internet Explorer security prompt for Windows Installer scripts", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_safeforscripting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_safeforscripting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_transformssecure", + "displayName": "Save copies of transform files in a secure location on workstation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msi_transformssecure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msi_transformssecure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msifilerecovery_wdiscenarioexecutionpolicy", + "displayName": "Configure MSI Corrupted File Recovery behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msifilerecovery_wdiscenarioexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msifilerecovery_wdiscenarioexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_msifilerecovery_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_msifilerecovery_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel_1", + "displayName": "Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msifilerecovery_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel_2", + "displayName": "Prompt for Resolution", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_msifilerecovery_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel_3", + "displayName": "Silent", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoadminlogon", + "displayName": "MSS: (AutoAdminLogon) Enable Automatic Logon (not recommended)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoadminlogon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoadminlogon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoreboot", + "displayName": "MSS: (AutoReboot) Allow Windows to automatically restart after a system crash (recommended except for highly secure environments)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoreboot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoreboot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoshareserver", + "displayName": "MSS: (AutoShareServer) Enable Administrative Shares (recommended except for highly secure environments)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoshareserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autoshareserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autosharewks", + "displayName": "MSS: (AutoShareWks) Enable Administrative Shares (recommended except for highly secure environments)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autosharewks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_autosharewks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_disablesavepassword", + "displayName": "MSS: (DisableSavePassword) Prevent the dial-up passsword from being saved (recommended)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_disablesavepassword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_disablesavepassword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_enabledeadgwdetect", + "displayName": "MSS: (EnableDeadGWDetect) Allow automatic detection of dead network gateways (could lead to DoS)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_enabledeadgwdetect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_enabledeadgwdetect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_hidefrombrowselist", + "displayName": "MSS: (Hidden) Hide Computer From the Browse List (not recommended except for highly secure environments)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_hidefrombrowselist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_hidefrombrowselist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime", + "displayName": "MSS: (KeepAliveTime) How often keep-alive packets are sent in milliseconds", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_keepalivetime", + "displayName": "KeepAliveTime (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_keepalivetime_150000", + "displayName": "150000 or 2.5 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_keepalivetime_300000", + "displayName": "300000 or 5 minutes (recommended) ", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_keepalivetime_600000", + "displayName": "600000 or 10 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_keepalivetime_1200000", + "displayName": "1200000 or 20 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_keepalivetime_2400000", + "displayName": "2400000 or 40 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_keepalivetime_3600000", + "displayName": "3600000 or 1 hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_keepalivetime_keepalivetime_7200000", + "displayName": "7200000 or 2 hours (default value)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_nodefaultexempt", + "displayName": "MSS: (NoDefaultExempt) Configure IPSec exemptions for various types of network traffic.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_nodefaultexempt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_nodefaultexempt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_nodefaultexempt_nodefaultexempt", + "displayName": "NoDefaultExempt (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_nodefaultexempt_nodefaultexempt_0", + "displayName": "Allow all exemptions.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_nodefaultexempt_nodefaultexempt_1", + "displayName": "Multicast, broadcast, & ISAKMP exempt.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_nodefaultexempt_nodefaultexempt_2", + "displayName": "RSVP, Kerberos, and ISAKMP are exempt.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_nodefaultexempt_nodefaultexempt_3", + "displayName": "Only ISAKMP is exempt.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_ntfsdisable8dot3namecreation", + "displayName": "MSS: (NtfsDisable8dot3NameCreation) Enable the computer to stop generating 8.3 style filenames", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_ntfsdisable8dot3namecreation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_ntfsdisable8dot3namecreation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_ntfsdisable8dot3namecreation_ntfsdisable8dot3namecreation", + "displayName": "NtfsDisable8dot3NameCreation (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_ntfsdisable8dot3namecreation_ntfsdisable8dot3namecreation_0", + "displayName": "Enable 8Dot3 Creation on all Volumes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_ntfsdisable8dot3namecreation_ntfsdisable8dot3namecreation_1", + "displayName": "Disable 8Dot3 Creation on all Volumes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_ntfsdisable8dot3namecreation_ntfsdisable8dot3namecreation_2", + "displayName": "Set 8dot3 name creation per volume using FSUTIL", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_ntfsdisable8dot3namecreation_ntfsdisable8dot3namecreation_3", + "displayName": "Disable 8Dot3 name creation on all volumes except system volume", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_performrouterdiscovery", + "displayName": "MSS: (PerformRouterDiscovery) Allow IRDP to detect and configure Default Gateway addresses (could lead to DoS)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_performrouterdiscovery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_performrouterdiscovery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_safedllsearchmode", + "displayName": "MSS: (SafeDllSearchMode) Enable Safe DLL search mode (recommended)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_safedllsearchmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_safedllsearchmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_screensavergraceperiod", + "displayName": "MSS: (ScreenSaverGracePeriod) The time in seconds before the screen saver grace period expires (0 recommended)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_screensavergraceperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_screensavergraceperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_screensavergraceperiod_screensavergraceperiod", + "displayName": "ScreenSaverGracePeriod (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_synattackprotect", + "displayName": "MSS: (SynAttackProtect) Syn attack protection level (protects against DoS)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_synattackprotect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_synattackprotect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_synattackprotect_synattackprotect", + "displayName": "SynAttackProtect (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_synattackprotect_synattackprotect_0", + "displayName": "No additional protection, use default settings", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_synattackprotect_synattackprotect_1", + "displayName": "Connections time out sooner if a SYN attack is detected", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxconnectresponseretransmissions", + "displayName": "MSS: (TcpMaxConnectResponseRetransmissions) SYN-ACK retransmissions when a connection request is not acknowledged", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxconnectresponseretransmissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxconnectresponseretransmissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxconnectresponseretransmissions_tcpmaxconnectresponseretransmissions", + "displayName": "TcpMaxConnectResponseRetransmissions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxconnectresponseretransmissions_tcpmaxconnectresponseretransmissions_0", + "displayName": "No retransmission, half-open connections dropped after 3 seconds", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxconnectresponseretransmissions_tcpmaxconnectresponseretransmissions_1", + "displayName": "3 seconds, half-open connections dropped after 9 seconds", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxconnectresponseretransmissions_tcpmaxconnectresponseretransmissions_2", + "displayName": "3 & 6 seconds, half-open connections dropped after 21 seconds", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxconnectresponseretransmissions_tcpmaxconnectresponseretransmissions_3", + "displayName": "3, 6, & 9 seconds, half-open connections dropped after 45 seconds", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxdataretransmissions", + "displayName": "MSS: (TcpMaxDataRetransmissions) How many times unacknowledged data is retransmitted (3 recommended, 5 is default)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxdataretransmissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxdataretransmissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxdataretransmissions_tcpmaxdataretransmissions", + "displayName": "TcpMaxDataRetransmissions (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxdataretransmissionsipv6", + "displayName": "MSS: (TcpMaxDataRetransmissions IPv6) How many times unacknowledged data is retransmitted (3 recommended, 5 is default)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxdataretransmissionsipv6_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxdataretransmissionsipv6_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_tcpmaxdataretransmissionsipv6_tcpmaxdataretransmissions", + "displayName": "TcpMaxDataRetransmissions (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel", + "displayName": "MSS: (WarningLevel) Percentage threshold for the security event log at which the system will generate a warning", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel_warninglevel", + "displayName": "WarningLevel (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel_warninglevel_50", + "displayName": "50%", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel_warninglevel_60", + "displayName": "60%", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel_warninglevel_70", + "displayName": "70%", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel_warninglevel_80", + "displayName": "80%", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_mss-legacy_pol_mss_warninglevel_warninglevel_90", + "displayName": "90%", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_corporateresources", + "displayName": "Corporate Resources", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_nca_corporateresources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_corporateresources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_corporateresources_corporateresources_control", + "displayName": "Corporate Resources (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_customcommands", + "displayName": "Custom Commands", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_nca_customcommands_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_customcommands_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_customcommands_customcommands_control", + "displayName": "CustomCommands (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_dtes", + "displayName": "IPsec Tunnel Endpoints", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_nca_dtes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_dtes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_dtes_dtes_control", + "displayName": "DTEs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_friendlyname", + "displayName": "Friendly Name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_nca_friendlyname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_friendlyname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_friendlyname_friendlyname_control", + "displayName": "Friendly Name (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_localnameson", + "displayName": "Prefer Local Names Allowed", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_nca_localnameson_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_localnameson_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_passivemode", + "displayName": "DirectAccess Passive Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_nca_passivemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_passivemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_showui", + "displayName": "User Interface", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_nca_showui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_showui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_supportemail", + "displayName": "Support Email Address", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_nca_supportemail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_supportemail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_nca_supportemail_supportemail_control", + "displayName": "Support Email (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpdnsprobecontent", + "displayName": "Specify corporate DNS probe host address", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpdnsprobecontent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpdnsprobecontent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpdnsprobecontent_ncsi_corpdnsprobecontentbox", + "displayName": "Corporate DNS Probe Address: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpdnsprobehost", + "displayName": "Specify corporate DNS probe host name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpdnsprobehost_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpdnsprobehost_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpdnsprobehost_ncsi_corpdnsprobehostbox", + "displayName": "Corporate DNS Probe Hostname: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpsiteprefixes", + "displayName": "Specify corporate site prefix list", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpsiteprefixes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpsiteprefixes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpsiteprefixes_ncsi_corpsiteprefixesbox", + "displayName": "Corporate Site Prefix List: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpwebprobeurl", + "displayName": "Specify corporate Website probe URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpwebprobeurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpwebprobeurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_corpwebprobeurl_ncsi_corpwebprobeurlbox", + "displayName": "Corporate Website Probe URL: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_domainlocationdeterminationurl", + "displayName": "Specify domain location determination URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_domainlocationdeterminationurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_domainlocationdeterminationurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_domainlocationdeterminationurl_ncsi_domainlocationdeterminationurlbox", + "displayName": "Corporate Domain Location Determination URL: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_globaldns", + "displayName": "Specify global DNS", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_globaldns_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_globaldns_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_globaldns_ncsi_useglobaldns_checkbox", + "displayName": "Use global DNS (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_globaldns_ncsi_useglobaldns_checkbox_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_globaldns_ncsi_useglobaldns_checkbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_passivepolling", + "displayName": "Specify passive polling", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_passivepolling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_passivepolling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_passivepolling_ncsi_disablepassivepolling_checkbox", + "displayName": "Disable passive polling (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_passivepolling_ncsi_disablepassivepolling_checkbox_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_ncsi_ncsi_passivepolling_ncsi_disablepassivepolling_checkbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_addresslookuponpingbehavior", + "displayName": "Specify address lookup behavior for DC locator ping", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_addresslookuponpingbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_addresslookuponpingbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_addresslookuponpingbehavior_netlogon_addresslookuponpingbehaviorlabel", + "displayName": "Address lookup behavior: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_addresstypereturned", + "displayName": "Return domain controller address type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_addresstypereturned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_addresstypereturned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allowdnssuffixsearch", + "displayName": "Use DNS name resolution when a single-label domain name is used, by appending different registered DNS suffixes, if the AllowSingleLabelDnsDomain setting is not enabled.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allowdnssuffixsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allowdnssuffixsearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allownt4crypto", + "displayName": "Allow cryptography algorithms compatible with Windows NT 4.0", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allownt4crypto_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allownt4crypto_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allowsinglelabeldnsdomain", + "displayName": "Use DNS name resolution with a single-label domain name instead of NetBIOS name resolution to locate the DC", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allowsinglelabeldnsdomain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_allowsinglelabeldnsdomain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_autositecoverage", + "displayName": "Use automated site coverage by the DC Locator DNS SRV Records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_autositecoverage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_autositecoverage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_avoidfallbacknetbiosdiscovery", + "displayName": "Do not use NetBIOS-based discovery for domain controller location when DNS-based discovery fails", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_avoidfallbacknetbiosdiscovery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_avoidfallbacknetbiosdiscovery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_avoidpdconwan", + "displayName": "Contact PDC on logon failure", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_avoidpdconwan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_avoidpdconwan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretryinitialperiod", + "displayName": "Use initial DC discovery retry setting for background callers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretryinitialperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretryinitialperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretryinitialperiod_netlogon_backgroundretryinitialperiodlabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretrymaximumperiod", + "displayName": "Use maximum DC discovery retry interval setting for background callers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretrymaximumperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretrymaximumperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretrymaximumperiod_netlogon_backgroundretrymaximumperiodlabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretryquittime", + "displayName": "Use final DC discovery retry setting for background callers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretryquittime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretryquittime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundretryquittime_netlogon_backgroundretryquittimelabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundsuccessfulrefreshperiod", + "displayName": "Use positive periodic DC cache refresh for background callers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundsuccessfulrefreshperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundsuccessfulrefreshperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_backgroundsuccessfulrefreshperiod_netlogon_backgroundsuccessfulrefreshperiodlabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_debugflag", + "displayName": "Specify log file debug output level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_debugflag_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_debugflag_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_debugflag_netlogon_debugflaglabel", + "displayName": "Level: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsavoidregisterrecords", + "displayName": "Specify DC Locator DNS records not registered by the DCs", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsavoidregisterrecords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsavoidregisterrecords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsavoidregisterrecords_netlogon_dnsavoidregisterrecordslabel", + "displayName": "Mnemonics: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsrefreshinterval", + "displayName": "Specify Refresh Interval of the DC Locator DNS records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsrefreshinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsrefreshinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsrefreshinterval_netlogon_dnsrefreshintervallabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnssrvrecorduselowercasehostnames", + "displayName": "Use lowercase DNS host names when registering domain controller SRV records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnssrvrecorduselowercasehostnames_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnssrvrecorduselowercasehostnames_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsttl", + "displayName": "Set TTL in the DC Locator DNS Records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsttl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsttl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_dnsttl_netlogon_dnsttllabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_expecteddialupdelay", + "displayName": "Specify expected dial-up delay on logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_expecteddialupdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_expecteddialupdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_expecteddialupdelay_netlogon_expecteddialupdelaylabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_forcerediscoveryinterval", + "displayName": "Force Rediscovery Interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_forcerediscoveryinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_forcerediscoveryinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_forcerediscoveryinterval_netlogon_forcerediscoveryintervallabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_gcsitecoverage", + "displayName": "Specify sites covered by the GC Locator DNS SRV Records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_gcsitecoverage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_gcsitecoverage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_gcsitecoverage_netlogon_gcsitecoveragelabel", + "displayName": "Sites: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ignoreincomingmailslotmessages", + "displayName": "Do not process incoming mailslot messages used for domain controller location based on NetBIOS domain names", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ignoreincomingmailslotmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ignoreincomingmailslotmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ldapsrvpriority", + "displayName": "Set Priority in the DC Locator DNS SRV records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ldapsrvpriority_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ldapsrvpriority_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ldapsrvpriority_netlogon_ldapsrvprioritylabel", + "displayName": "Priority: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ldapsrvweight", + "displayName": "Set Weight in the DC Locator DNS SRV records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ldapsrvweight_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ldapsrvweight_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ldapsrvweight_netlogon_ldapsrvweightlabel", + "displayName": "Weight: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_maximumlogfilesize", + "displayName": "Specify maximum log file size", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_maximumlogfilesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_maximumlogfilesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_maximumlogfilesize_netlogon_maximumlogfilesizelabel", + "displayName": "Bytes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ndncsitecoverage", + "displayName": "Specify sites covered by the application directory partition DC Locator DNS SRV records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ndncsitecoverage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ndncsitecoverage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_ndncsitecoverage_netlogon_ndncsitecoveragelabel", + "displayName": "Sites: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_negativecacheperiod", + "displayName": "Specify negative DC Discovery cache setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_negativecacheperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_negativecacheperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_negativecacheperiod_netlogon_negativecacheperiodlabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_netlogonsharecompatibilitymode", + "displayName": "Set Netlogon share compatibility", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_netlogonsharecompatibilitymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_netlogonsharecompatibilitymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_nonbackgroundsuccessfulrefreshperiod", + "displayName": "Specify positive periodic DC Cache refresh for non-background callers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_nonbackgroundsuccessfulrefreshperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_nonbackgroundsuccessfulrefreshperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_nonbackgroundsuccessfulrefreshperiod_netlogon_nonbackgroundsuccessfulrefreshperiodlabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_pingurgencymode", + "displayName": "Use urgent mode when pinging domain controllers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_pingurgencymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_pingurgencymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_pingurgencymode_netlogon_pingurgencymodelabel", + "displayName": "Ping urgency mode: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_scavengeinterval", + "displayName": "Set scavenge interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_scavengeinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_scavengeinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_scavengeinterval_netlogon_scavengeintervallabel", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sitecoverage", + "displayName": "Specify sites covered by the DC Locator DNS SRV records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sitecoverage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sitecoverage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sitecoverage_netlogon_sitecoveragelabel", + "displayName": "Sites: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sitename", + "displayName": "Specify site name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sitename_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sitename_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sitename_netlogon_sitenamelabel", + "displayName": "Site: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sysvolsharecompatibilitymode", + "displayName": "Set SYSVOL share compatibility", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sysvolsharecompatibilitymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_sysvolsharecompatibilitymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_trynextclosestsite", + "displayName": "Try Next Closest Site", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_trynextclosestsite_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_trynextclosestsite_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_usedynamicdns", + "displayName": "Specify dynamic registration of the DC Locator DNS Records", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_usedynamicdns_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_netlogon_netlogon_usedynamicdns_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_donotshowlocalonlyicon", + "displayName": "Do not show the \"local access only\" network icon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_donotshowlocalonlyicon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_donotshowlocalonlyicon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_forcetunneling", + "displayName": "Route all traffic through the internal network", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_forcetunneling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_forcetunneling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_forcetunneling_stateselect", + "displayName": "Select from the following states: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_forcetunneling_stateselect_enabled", + "displayName": "Enabled State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_forcetunneling_stateselect_disabled", + "displayName": "Disabled State", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_personalfirewallconfig", + "displayName": "Prohibit use of Internet Connection Firewall on your DNS domain network", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_personalfirewallconfig_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_personalfirewallconfig_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_showsharedaccessui", + "displayName": "Prohibit use of Internet Connection Sharing on your DNS domain network", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_showsharedaccessui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_showsharedaccessui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_stddomainusersetlocation", + "displayName": "Require domain users to elevate when setting a network's location", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_stddomainusersetlocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_networkconnections_nc_stddomainusersetlocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_alwayspinsubfolders", + "displayName": "Subfolders always available offline", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_alwayspinsubfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_alwayspinsubfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_2", + "displayName": "Specify administratively assigned Offline Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_2_lbl_assignedofflinefileslist", + "displayName": "Files and Folders: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_2_lbl_assignedofflinefileslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_2_lbl_assignedofflinefileslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings", + "displayName": "Configure Background Sync", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_lbl_backgroundsyncblockoutperiodduration", + "displayName": "Blockout Duration (minutes) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_lbl_backgroundsyncblockoutperiodstarttime", + "displayName": "Blockout Start Time (HHMM) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_lbl_backgroundsyncdefaultsynctime", + "displayName": "Sync Interval (minutes) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_lbl_backgroundsyncignoreblockouttime", + "displayName": "Maximum Allowed Time Without A Sync (minutes) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_lbl_backgroundsyncinforcedoffline", + "displayName": "Enable Background Sync for shares in user selected \"Work Offline\" mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_lbl_backgroundsyncinforcedoffline_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_lbl_backgroundsyncinforcedoffline_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_backgroundsyncsettings_lbl_backgroundsyncvariance", + "displayName": "Sync Variance (minutes) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_cachesize", + "displayName": "Limit disk space used by Offline Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_cachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_cachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_cachesize_lbl_autocachesizespin", + "displayName": "Size of auto-cached files: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_cachesize_lbl_totalcachesizespin", + "displayName": "Total size of offline files: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_2", + "displayName": "Non-default server disconnect actions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_2_lbl_customgoofflineactionslist", + "displayName": "Customize actions: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_2_lbl_customgoofflineactionslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_2_lbl_customgoofflineactionslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_defcachesize", + "displayName": "Default cache size", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_defcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_defcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_defcachesize_lbl_defcachesizespin", + "displayName": "Default cache size: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_enabled", + "displayName": "Allow or Disallow use of the Offline Files feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_encryptofflinefiles", + "displayName": "Encrypt the Offline Files cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_encryptofflinefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_encryptofflinefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_eventlogginglevel_2", + "displayName": "Event logging level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_eventlogginglevel_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_eventlogginglevel_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_eventlogginglevel_2_lbl_eventlogginglevelspin", + "displayName": "Enter [0-3]: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_exclusionlistsettings", + "displayName": "Enable file screens", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_exclusionlistsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_exclusionlistsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_exclusionlistsettings_lbl_exclusionlistsettingslist", + "displayName": "Extensions: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_extexclusionlist", + "displayName": "Files not cached", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_extexclusionlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_extexclusionlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_extexclusionlist_lbl_extexclusionlistedit", + "displayName": "Extensions: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_2", + "displayName": "Action on server disconnect", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_2_lbl_goofflineactioncombo", + "displayName": "Action: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_2_lbl_goofflineactioncombo_0", + "displayName": "Work offline", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_2_lbl_goofflineactioncombo_1", + "displayName": "Never go offline", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nocacheviewer_2", + "displayName": "Prevent use of Offline Files folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nocacheviewer_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nocacheviewer_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_noconfigcache_2", + "displayName": "Prohibit user configuration of Offline Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_noconfigcache_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_noconfigcache_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nomakeavailableoffline_2", + "displayName": "Remove \"Make Available Offline\" command", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nomakeavailableoffline_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nomakeavailableoffline_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_2", + "displayName": "Remove \"Make Available Offline\" for these files and folders", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_2_lbl_nopinfileslist", + "displayName": "Files and Folders: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_2_lbl_nopinfileslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_2_lbl_nopinfileslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_noreminders_2", + "displayName": "Turn off reminder balloons", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_noreminders_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_noreminders_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_onlinecachingsettings", + "displayName": "Enable Transparent Caching", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_onlinecachingsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_onlinecachingsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_onlinecachingsettings_lbl_onlinecachingsettingslist", + "displayName": "Enter network latency value in milliseconds (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_purgeatlogoff", + "displayName": "At logoff, delete local copy of user’s offline files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_purgeatlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_purgeatlogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_purgeatlogoff_lbl_purgeonlyautocachedfiles", + "displayName": "Delete only the temporary offline files. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_purgeatlogoff_lbl_purgeonlyautocachedfiles_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_purgeatlogoff_lbl_purgeonlyautocachedfiles_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_quickadimpin", + "displayName": "Turn on economical application of administratively assigned Offline Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_quickadimpin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_quickadimpin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_reminderfreq_2", + "displayName": "Reminder balloon frequency", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_reminderfreq_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_reminderfreq_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_reminderfreq_2_lbl_reminderfreqspin", + "displayName": "Minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_reminderinittimeout_2", + "displayName": "Initial reminder balloon lifetime", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_reminderinittimeout_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_reminderinittimeout_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_reminderinittimeout_2_lbl_reminderinittimeoutspin", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_remindertimeout_2", + "displayName": "Reminder balloon lifetime", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_remindertimeout_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_remindertimeout_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_remindertimeout_2_lbl_remindertimeoutspin", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinksettings", + "displayName": "Configure slow-link mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinksettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinksettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinksettings_lbl_slowlinksettingslist", + "displayName": "UNC Paths: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinksettings_lbl_slowlinksettingslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinksettings_lbl_slowlinksettingslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinkspeed", + "displayName": "Configure Slow link speed", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinkspeed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinkspeed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_slowlinkspeed_lbl_slowlinkspeedspin", + "displayName": "Value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogoff_2", + "displayName": "Synchronize all offline files before logging off", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogoff_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogoff_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogon_2", + "displayName": "Synchronize all offline files when logging on", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogon_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogon_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_2", + "displayName": "Synchronize offline files before suspend", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_2_lbl_syncatsuspendcombo", + "displayName": "Action: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_2_lbl_syncatsuspendcombo_0", + "displayName": "Quick", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_2_lbl_syncatsuspendcombo_1", + "displayName": "Full", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_synconcostednetwork", + "displayName": "Enable file synchronization on costed networks", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_synconcostednetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_synconcostednetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_workofflinedisabled_2", + "displayName": "Remove \"Work offline\" command", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_workofflinedisabled_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_offlinefiles_pol_workofflinedisabled_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectblockeddriverspolicy", + "displayName": "Notify blocked drivers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectblockeddriverspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectblockeddriverspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomcomponentfailurespolicy", + "displayName": "Detect application failures caused by deprecated COM objects", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomcomponentfailurespolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomcomponentfailurespolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomcomponentfailurespolicy_detectdeprecatedcomcomponentfailureslevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomcomponentfailurespolicy_detectdeprecatedcomcomponentfailureslevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomcomponentfailurespolicy_detectdeprecatedcomcomponentfailureslevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomponentfailurespolicy", + "displayName": "Detect application failures caused by deprecated Windows DLLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomponentfailurespolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomponentfailurespolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomponentfailurespolicy_detectdeprecatedcomponentfailureslevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomponentfailurespolicy_detectdeprecatedcomponentfailureslevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectdeprecatedcomponentfailurespolicy_detectdeprecatedcomponentfailureslevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectinstallfailurespolicy", + "displayName": "Detect application install failures", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectinstallfailurespolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectinstallfailurespolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectundetectedinstallerspolicy", + "displayName": "Detect application installers that need to be run as administrator", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectundetectedinstallerspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectundetectedinstallerspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectundetectedinstallerspolicy_detectundetectedinstallerslevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectundetectedinstallerspolicy_detectundetectedinstallerslevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectundetectedinstallerspolicy_detectundetectedinstallerslevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectupdatefailurespolicy", + "displayName": "Detect applications unable to launch installers under UAC", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectupdatefailurespolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectupdatefailurespolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectupdatefailurespolicy_detectupdatefailureslevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_detectupdatefailurespolicy_detectupdatefailureslevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_detectupdatefailurespolicy_detectupdatefailureslevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_disablepcauipolicy", + "displayName": "Detect compatibility issues for applications and drivers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pca_disablepcauipolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pca_disablepcauipolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache", + "displayName": "Turn on BranchCache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_distributed", + "displayName": "Set BranchCache Distributed Cache mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_distributed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_distributed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hosted", + "displayName": "Set BranchCache Hosted Cache mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hosted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hosted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hosted_wbc_cache_textbox", + "displayName": "Type the name of the hosted cache server (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hostedcachediscovery", + "displayName": "Enable Automatic Hosted Cache Discovery by Service Connection Point", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hostedcachediscovery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hostedcachediscovery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hostedmultipleservers", + "displayName": "Configure Hosted Cache Servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hostedmultipleservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hostedmultipleservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_hostedmultipleservers_wbc_multipleservers_listbox", + "displayName": "\r\nHosted cache servers\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_smb", + "displayName": "Configure BranchCache for network files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_smb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_smb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_enablewindowsbranchcache_smb_wbc_smblatency_decimaltextbox", + "displayName": "\r\nType the maximum round trip network latency (milliseconds) after which caching begins\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setcachepercent", + "displayName": "Set percentage of disk space used for client computer cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setcachepercent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setcachepercent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setcachepercent_wbc_cache_size_percent_dctxtbox", + "displayName": "\r\nSpecify the percentage of total disk space allocated for the cache\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdatacacheentrymaxage", + "displayName": "Set age for segments in the data cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdatacacheentrymaxage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdatacacheentrymaxage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdatacacheentrymaxage_wbc_cache_maxage_dctxtbox", + "displayName": "\r\nSpecify the age in days for which segments in the data cache are valid\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdowngrading", + "displayName": "Configure Client BranchCache Version Support", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdowngrading_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdowngrading_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdowngrading_downgrading_version", + "displayName": "Select from the following versions: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdowngrading_downgrading_version_1", + "displayName": "Windows Vista with BITS 4.0 installed, Windows 7, or Windows Server 2008 R2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_peertopeercaching_setdowngrading_downgrading_version_2", + "displayName": "Windows 8", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pentraining_pentrainingoff_2", + "displayName": "Turn off Tablet PC Pen Training", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pentraining_pentrainingoff_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pentraining_pentrainingoff_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_1", + "displayName": "Configure Scenario Execution Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_1_wdiscenarioexecutionpolicylevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_1_wdiscenarioexecutionpolicylevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_1_wdiscenarioexecutionpolicylevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_2", + "displayName": "Configure Scenario Execution Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_2_wdiscenarioexecutionpolicylevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_2_wdiscenarioexecutionpolicylevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_2_wdiscenarioexecutionpolicylevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_3", + "displayName": "Configure Scenario Execution Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_3_wdiscenarioexecutionpolicylevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_3_wdiscenarioexecutionpolicylevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_3_wdiscenarioexecutionpolicylevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_4", + "displayName": "Configure Scenario Execution Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_4_wdiscenarioexecutionpolicylevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_4_wdiscenarioexecutionpolicylevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_performancediagnostics_wdiscenarioexecutionpolicy_4_wdiscenarioexecutionpolicylevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_acconnectivityinstandby_2", + "displayName": "Allow network connectivity during connected-standby (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_acconnectivityinstandby_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_acconnectivityinstandby_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_accriticalsleeptransitionsdisable_2", + "displayName": "Turn on the ability for applications to prevent sleep transitions (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_accriticalsleeptransitionsdisable_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_accriticalsleeptransitionsdisable_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_acstartmenubuttonaction_2", + "displayName": "Select the Start menu Power button action (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_acstartmenubuttonaction_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_acstartmenubuttonaction_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_acstartmenubuttonaction_2_selectacstartmenubuttonaction", + "displayName": "User Interface Sleep Button Action (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_acstartmenubuttonaction_2_selectacstartmenubuttonaction_0", + "displayName": "Sleep", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_acstartmenubuttonaction_2_selectacstartmenubuttonaction_1", + "displayName": "Hibernate", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_acstartmenubuttonaction_2_selectacstartmenubuttonaction_2", + "displayName": "Shut down", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystempowerrequestac", + "displayName": "Allow applications to prevent automatic sleep (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystempowerrequestac_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystempowerrequestac_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystempowerrequestdc", + "displayName": "Allow applications to prevent automatic sleep (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystempowerrequestdc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystempowerrequestdc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystemsleepwithremotefilesopenac", + "displayName": "Allow automatic sleep with Open Network Files (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystemsleepwithremotefilesopenac_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystemsleepwithremotefilesopenac_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystemsleepwithremotefilesopendc", + "displayName": "Allow automatic sleep with Open Network Files (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystemsleepwithremotefilesopendc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_allowsystemsleepwithremotefilesopendc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_customactiveschemeoverride_2", + "displayName": "Specify a custom active power plan", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_customactiveschemeoverride_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_customactiveschemeoverride_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_customactiveschemeoverride_2_customactiveschemeoverrideenter", + "displayName": "Custom Active Power Plan (GUID): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction0_2", + "displayName": "Critical battery notification action", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction0_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction0_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction0_2_selectdcbatterydischargeaction0", + "displayName": "Critical Battery Notification Action (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction0_2_selectdcbatterydischargeaction0_0", + "displayName": "Take no action", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction0_2_selectdcbatterydischargeaction0_1", + "displayName": "Sleep", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction0_2_selectdcbatterydischargeaction0_2", + "displayName": "Hibernate", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction0_2_selectdcbatterydischargeaction0_3", + "displayName": "Shut down", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction1_2", + "displayName": "Low battery notification action", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction1_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction1_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction1_2_selectdcbatterydischargeaction1", + "displayName": "Low Battery Notification Action (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction1_2_selectdcbatterydischargeaction1_0", + "displayName": "Take no action", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction1_2_selectdcbatterydischargeaction1_1", + "displayName": "Sleep", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction1_2_selectdcbatterydischargeaction1_2", + "displayName": "Hibernate", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargeaction1_2_selectdcbatterydischargeaction1_3", + "displayName": "Shut down", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel0_2", + "displayName": "Critical battery notification level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel0_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel0_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel0_2_enterdcbatterydischargelevel0", + "displayName": "Critical Battery Notification Level (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel1_2", + "displayName": "Low battery notification level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel1_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel1_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel1_2_enterdcbatterydischargelevel1", + "displayName": "Low Battery Notification Level (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel1uinotification_2", + "displayName": "Turn off low battery user notification", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel1uinotification_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcbatterydischargelevel1uinotification_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcconnectivityinstandby_2", + "displayName": "Allow network connectivity during connected-standby (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcconnectivityinstandby_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcconnectivityinstandby_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dccriticalsleeptransitionsdisable_2", + "displayName": "Turn on the ability for applications to prevent sleep transitions (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dccriticalsleeptransitionsdisable_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dccriticalsleeptransitionsdisable_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcstartmenubuttonaction_2", + "displayName": "Select the Start menu Power button action (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcstartmenubuttonaction_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcstartmenubuttonaction_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcstartmenubuttonaction_2_selectdcstartmenubuttonaction", + "displayName": "User Interface Sleep Button Action (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dcstartmenubuttonaction_2_selectdcstartmenubuttonaction_0", + "displayName": "Sleep", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcstartmenubuttonaction_2_selectdcstartmenubuttonaction_1", + "displayName": "Hibernate", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dcstartmenubuttonaction_2_selectdcstartmenubuttonaction_2", + "displayName": "Shut down", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_diskacpowerdowntimeout_2", + "displayName": "Turn Off the hard disk (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_diskacpowerdowntimeout_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_diskacpowerdowntimeout_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_diskacpowerdowntimeout_2_enterdiskacpowerdowntimeout", + "displayName": "Turn Off the Hard Disk (seconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_diskdcpowerdowntimeout_2", + "displayName": "Turn Off the hard disk (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_diskdcpowerdowntimeout_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_diskdcpowerdowntimeout_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_diskdcpowerdowntimeout_2_enterdiskdcpowerdowntimeout", + "displayName": "Turn Off the Hard Disk (seconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dont_poweroff_aftershutdown", + "displayName": "Do not turn off system power after a Windows system shutdown has occurred.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_dont_poweroff_aftershutdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_dont_poweroff_aftershutdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_enabledesktopslideshowac", + "displayName": "Turn on desktop background slideshow (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_enabledesktopslideshowac_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_enabledesktopslideshowac_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_enabledesktopslideshowdc", + "displayName": "Turn on desktop background slideshow (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_enabledesktopslideshowdc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_enabledesktopslideshowdc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_inboxactiveschemeoverride_2", + "displayName": "Select an active power plan", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_inboxactiveschemeoverride_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_inboxactiveschemeoverride_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_inboxactiveschemeoverride_2_inboxactiveschemeoverrideenter", + "displayName": "Active Power Plan: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_inboxactiveschemeoverride_2_inboxactiveschemeoverrideenter_381b4222-f694-41f0-9685-ff5bb260df2e", + "displayName": "Automatic (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_inboxactiveschemeoverride_2_inboxactiveschemeoverrideenter_a1841308-3541-4fab-bc81-f71556f20b4a", + "displayName": "Power Saver", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_inboxactiveschemeoverride_2_inboxactiveschemeoverrideenter_8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c", + "displayName": "High Performance", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_powerthrottlingturnoff", + "displayName": "Turn off Power Throttling", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_powerthrottlingturnoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_powerthrottlingturnoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_reservebatterynotificationlevel", + "displayName": "Reserve battery notification level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_power_reservebatterynotificationlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_power_reservebatterynotificationlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_power_reservebatterynotificationlevel_enterreservebatterynotificationlevel", + "displayName": "Reserve Battery Notification Level (percent): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablemodulelogging", + "displayName": "Turn on Module Logging", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablemodulelogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablemodulelogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablemodulelogging_listbox_modulenames", + "displayName": "Module Names (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts", + "displayName": "Turn on Script Execution", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_executionpolicy", + "displayName": "Execution Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_executionpolicy_allsigned", + "displayName": "Allow only signed scripts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_executionpolicy_remotesigned", + "displayName": "Allow local scripts and remote signed scripts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_executionpolicy_unrestricted", + "displayName": "Allow all scripts", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting", + "displayName": "Turn on PowerShell Transcription", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_enableinvocationheader", + "displayName": "Include invocation headers: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_enableinvocationheader_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_enableinvocationheader_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_outputdirectory", + "displayName": "Transcript output directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enableupdatehelpdefaultsourcepath", + "displayName": "Set the default source path for Update-Help", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enableupdatehelpdefaultsourcepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enableupdatehelpdefaultsourcepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_powershellexecutionpolicy_enableupdatehelpdefaultsourcepath_sourcepathforupdatehelp", + "displayName": "Default Source Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablebackuprestore_2", + "displayName": "Prevent restoring previous versions from backups", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablebackuprestore_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablebackuprestore_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablelocalpage_2", + "displayName": "Hide previous versions list for local files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablelocalpage_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablelocalpage_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablelocalrestore_2", + "displayName": "Prevent restoring local previous versions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablelocalrestore_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disablelocalrestore_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disableremotepage_2", + "displayName": "Hide previous versions list for remote files", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disableremotepage_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disableremotepage_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disableremoterestore_2", + "displayName": "Prevent restoring remote previous versions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disableremoterestore_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_disableremoterestore_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_hidebackupentries_2", + "displayName": "Hide previous versions of files on backup location", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_previousversions_hidebackupentries_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_previousversions_hidebackupentries_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_allowwebprinting", + "displayName": "Activate Internet printing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_allowwebprinting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_allowwebprinting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_applicationdriverisolation", + "displayName": "Isolate print drivers from applications", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_applicationdriverisolation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_applicationdriverisolation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_customizedsupporturl", + "displayName": "Custom support URL in the Printers folder's left pane", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_customizedsupporturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_customizedsupporturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_customizedsupporturl_customizedsupporturl_link", + "displayName": "URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_domainprinters", + "displayName": "Add Printer wizard - Network scan page (Managed network)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_domainprinters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_domainprinters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_domainprinters_adprinters", + "displayName": "Number of directory printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_domainprinters_bluetoothprinters", + "displayName": "Number of Bluetooth printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_domainprinters_ipprinters", + "displayName": "Number of TCP/IP printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_domainprinters_shareprinters", + "displayName": "Number of shared printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_domainprinters_wsdprinters", + "displayName": "Number of Web Services Printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_donotinstallcompatibledriverfromwindowsupdate", + "displayName": "Extend Point and Print connection to search Windows Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_donotinstallcompatibledriverfromwindowsupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_donotinstallcompatibledriverfromwindowsupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_emfdespooling", + "displayName": "Always render print jobs on the server", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_emfdespooling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_emfdespooling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_forcesoftwarerasterization", + "displayName": "Always rasterize content to be printed using a software rasterizer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_forcesoftwarerasterization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_forcesoftwarerasterization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_kmprintersareblocked", + "displayName": "Disallow installation of printers using kernel-mode drivers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_kmprintersareblocked_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_kmprintersareblocked_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_mxdwuselegacyoutputformatmsxps", + "displayName": "Change Microsoft XPS Document Writer (MXDW) default output format to the legacy Microsoft XPS format (*.xps)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_mxdwuselegacyoutputformatmsxps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_mxdwuselegacyoutputformatmsxps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_nondomainprinters", + "displayName": "Add Printer wizard - Network scan page (Unmanaged network)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_nondomainprinters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_nondomainprinters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_nondomainprinters_bluetoothprinters", + "displayName": "Number of Bluetooth printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_nondomainprinters_ipprinters", + "displayName": "Number of TCP/IP printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_nondomainprinters_shareprinters", + "displayName": "Number of shared printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_nondomainprinters_wsdprinters", + "displayName": "Number of Web Services Printers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_packagepointandprintonly_win7", + "displayName": "Only use Package Point and print", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_packagepointandprintonly_win7_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_packagepointandprintonly_win7_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_packagepointandprintserverlist_win7", + "displayName": "Package Point and print - Approved servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_packagepointandprintserverlist_win7_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_packagepointandprintserverlist_win7_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_packagepointandprintserverlist_win7_packagepointandprintserverlist_edit", + "displayName": "Enter fully qualified server names (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_physicallocation", + "displayName": "Computer location", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_physicallocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_physicallocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_physicallocation_physicallocation_name", + "displayName": "Location (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_physicallocationsupport", + "displayName": "Pre-populate printer search location text", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_physicallocationsupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_physicallocationsupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_printdriverisolationexecutionpolicy", + "displayName": "Execute print drivers in isolated processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_printdriverisolationexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_printdriverisolationexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_printdriverisolationoverridecompat", + "displayName": "Override print driver execution compatibility setting reported by print driver", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_printdriverisolationoverridecompat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_printdriverisolationoverridecompat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_printerserverthread", + "displayName": "Printer browsing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_printerserverthread_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_printerserverthread_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_showjobtitleineventlogs", + "displayName": "Allow job name in event logs", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_showjobtitleineventlogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_showjobtitleineventlogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_v4driverdisallowprinterextension", + "displayName": "Do not allow v4 printer drivers to show printer extensions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing_v4driverdisallowprinterextension_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing_v4driverdisallowprinterextension_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_autopublishing", + "displayName": "Automatically publish new printers in Active Directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_autopublishing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_autopublishing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_immortalprintqueue", + "displayName": "Allow pruning of published printers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_immortalprintqueue_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_immortalprintqueue_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_prunedownlevel", + "displayName": "Prune printers that are not automatically republished", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_prunedownlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_prunedownlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_prunedownlevel_prunedownleveltitle", + "displayName": "Prune non-republishing printers: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_prunedownlevel_prunedownleveltitle_0", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_prunedownlevel_prunedownleveltitle_1", + "displayName": "Only if Print Server is found", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_prunedownlevel_prunedownleveltitle_2", + "displayName": "Whenever printer is not found", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval", + "displayName": "Directory pruning interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle", + "displayName": "Interval: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_0", + "displayName": "Continuous", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_10", + "displayName": "10 Minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_30", + "displayName": "30 Minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_60", + "displayName": "1 Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_240", + "displayName": "4 Hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_480", + "displayName": "8 Hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_720", + "displayName": "12 Hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_1440", + "displayName": "1 Day", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_2880", + "displayName": "2 Days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_4320", + "displayName": "3 Days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_5760", + "displayName": "4 Days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_7200", + "displayName": "5 Days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_8640", + "displayName": "6 Days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_10080", + "displayName": "1 Week", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_20160", + "displayName": "2 Weeks", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_30240", + "displayName": "3 Weeks", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_40320", + "displayName": "4 Weeks", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_50400", + "displayName": "5 Weeks", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_60480", + "displayName": "6 Weeks", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_70560", + "displayName": "7 Weeks", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruninginterval_pruningintervaltitle_4294967295", + "displayName": "Infinite", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority", + "displayName": "Directory pruning priority", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority_prioritylevel", + "displayName": "Priority level: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority_prioritylevel_4294967294", + "displayName": "Lowest", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority_prioritylevel_4294967295", + "displayName": "Below Normal", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority_prioritylevel_0", + "displayName": "Normal", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority_prioritylevel_1", + "displayName": "Above Normal", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningpriority_prioritylevel_2", + "displayName": "Highest", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries", + "displayName": "Directory pruning retry", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_pruningretriestitle", + "displayName": "Retries: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_pruningretriestitle_0", + "displayName": "No Retry", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_pruningretriestitle_1", + "displayName": "1 Retry", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_pruningretriestitle_2", + "displayName": "2 Retries", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_pruningretriestitle_3", + "displayName": "3 Retries", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_pruningretriestitle_4", + "displayName": "4 Retries", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_pruningretriestitle_5", + "displayName": "5 Retries", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretries_pruningretriestitle_6", + "displayName": "6 Retries", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretrylog", + "displayName": "Log directory pruning retry events", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretrylog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_pruningretrylog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_registerspoolerremoterpcendpoint", + "displayName": "Allow Print Spooler to accept client connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_registerspoolerremoterpcendpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_registerspoolerremoterpcendpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate", + "displayName": "Check published state", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_verifypublishedstatetitle", + "displayName": "Published State Check Interval: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_verifypublishedstatetitle_30", + "displayName": "30 Minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_verifypublishedstatetitle_60", + "displayName": "1 Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_verifypublishedstatetitle_240", + "displayName": "4 Hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_verifypublishedstatetitle_480", + "displayName": "8 Hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_verifypublishedstatetitle_720", + "displayName": "12 Hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_verifypublishedstatetitle_1440", + "displayName": "1 Day", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_printing2_verifypublishedstate_verifypublishedstatetitle_4294967295", + "displayName": "Never", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_pushtoinstall_disablepushtoinstall", + "displayName": "Turn off Push To Install service", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_pushtoinstall_disablepushtoinstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_pushtoinstall_disablepushtoinstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosmaxoutstandingsends", + "displayName": "Limit outstanding packets", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosmaxoutstandingsends_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosmaxoutstandingsends_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosmaxoutstandingsends_qosmaxoutstandingsends_box", + "displayName": "Number of packets: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosnonbesteffortlimit", + "displayName": "Limit reservable bandwidth", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosnonbesteffortlimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosnonbesteffortlimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosnonbesteffortlimit_qosnonbesteffortlimit_box", + "displayName": "Bandwidth limit (%): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_c", + "displayName": "Best effort service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_c_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_c_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_c_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_nc", + "displayName": "Best effort service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_nc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_nc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_nc_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_pv", + "displayName": "Best effort service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_pv_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_pv_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypebesteffort_pv_qospriorityvalue", + "displayName": "Priority value (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_c", + "displayName": "Controlled load service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_c_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_c_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_c_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_nc", + "displayName": "Controlled load service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_nc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_nc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_nc_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_pv", + "displayName": "Controlled load service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_pv_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_pv_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypecontrolledload_pv_qospriorityvalue", + "displayName": "Priority value (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_c", + "displayName": "Guaranteed service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_c_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_c_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_c_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_nc", + "displayName": "Guaranteed service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_nc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_nc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_nc_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_pv", + "displayName": "Guaranteed service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_pv_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_pv_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypeguaranteed_pv_qospriorityvalue", + "displayName": "Priority value (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_c", + "displayName": "Network control service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_c_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_c_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_c_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_nc", + "displayName": "Network control service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_nc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_nc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_nc_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_pv", + "displayName": "Network control service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_pv_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_pv_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenetworkcontrol_pv_qospriorityvalue", + "displayName": "Priority value (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenonconforming", + "displayName": "Non-conforming packets", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenonconforming_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenonconforming_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypenonconforming_qospriorityvalue", + "displayName": "Priority value (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_c", + "displayName": "Qualitative service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_c_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_c_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_c_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_nc", + "displayName": "Qualitative service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_nc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_nc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_nc_qosdscpvalue", + "displayName": "DSCP value: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_pv", + "displayName": "Qualitative service type", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_pv_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_pv_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qosservicetypequalitative_pv_qospriorityvalue", + "displayName": "Priority value (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qostimerresolution", + "displayName": "Set timer resolution", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_qos_qostimerresolution_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qostimerresolution_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_qos_qostimerresolution_qostimerresolution_box", + "displayName": "Timer units (in microseconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_radar_wdiscenarioexecutionpolicy", + "displayName": "Configure Scenario Execution Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_radar_wdiscenarioexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_radar_wdiscenarioexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_radar_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_radar_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_radar_wdiscenarioexecutionpolicy_wdiscenarioexecutionpolicylevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_ee_enablepersistenttimestamp", + "displayName": "Enable Persistent Time Stamp", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_reliability_ee_enablepersistenttimestamp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_ee_enablepersistenttimestamp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_ee_enablepersistenttimestamp_ee_enablepersistenttimestamp_desc4", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_pch_reportshutdownevents", + "displayName": "Report unplanned shutdown events", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_reliability_pch_reportshutdownevents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_pch_reportshutdownevents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdowneventtrackerstatefile", + "displayName": "Activate Shutdown Event Tracker System State Data feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdowneventtrackerstatefile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdowneventtrackerstatefile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdownreason", + "displayName": "Display Shutdown Event Tracker", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdownreason_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdownreason_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdownreason_shutdownreason_box", + "displayName": "Shutdown Event Tracker should be displayed: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdownreason_shutdownreason_box_1", + "displayName": "Always", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdownreason_shutdownreason_box_2", + "displayName": "Workstation Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_reliability_shutdownreason_shutdownreason_box_3", + "displayName": "Server Only", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_encryptedticketonly", + "displayName": "Allow only Windows Vista or later connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_encryptedticketonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_encryptedticketonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_optimize_bandwidth", + "displayName": "Turn on bandwidth optimization", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_optimize_bandwidth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_optimize_bandwidth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_optimize_bandwidth_ra_optimize_bandwidth_list", + "displayName": "Optimize settings for reduced bandwidth: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_optimize_bandwidth_ra_optimize_bandwidth_list_14", + "displayName": "No optimization", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_optimize_bandwidth_ra_optimize_bandwidth_list_12", + "displayName": "No full window drag", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_optimize_bandwidth_ra_optimize_bandwidth_list_8", + "displayName": "Turn off background", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_remoteassistance_ra_optimize_bandwidth_ra_optimize_bandwidth_list_0", + "displayName": "Full optimization", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_accessrights_reboottime_2", + "displayName": "Set time (in seconds) to force reboot", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_accessrights_reboottime_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_accessrights_reboottime_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_accessrights_reboottime_2_accessrights_reboottime_seconds", + "displayName": "Time (in seconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyexecute_access_2", + "displayName": "CD and DVD: Deny execute access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyexecute_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyexecute_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyread_access_2", + "displayName": "CD and DVD: Deny read access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyread_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyread_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denywrite_access_2", + "displayName": "CD and DVD: Deny write access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denywrite_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denywrite_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_customclasses_denyread_access_2", + "displayName": "Custom Classes: Deny read access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_customclasses_denyread_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_customclasses_denyread_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_customclasses_denyread_access_2_customclasses_list", + "displayName": "GUID for custom removable storage class: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_customclasses_denywrite_access_2", + "displayName": "Custom Classes: Deny write access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_customclasses_denywrite_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_customclasses_denywrite_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_customclasses_denywrite_access_2_customclasses_list", + "displayName": "GUID for custom removable storage class: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyexecute_access_2", + "displayName": "Floppy Drives: Deny execute access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyexecute_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyexecute_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyread_access_2", + "displayName": "Floppy Drives: Deny read access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyread_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyread_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denywrite_access_2", + "displayName": "Floppy Drives: Deny write access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denywrite_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_floppydrives_denywrite_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removable_remote_allow_access", + "displayName": "All Removable Storage: Allow direct access in remote sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removable_remote_allow_access_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removable_remote_allow_access_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyexecute_access_2", + "displayName": "Removable Disks: Deny execute access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyexecute_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyexecute_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyread_access_2", + "displayName": "Removable Disks: Deny read access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyread_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyread_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removablestorageclasses_denyall_access_2", + "displayName": "All Removable Storage classes: Deny all access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removablestorageclasses_denyall_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_removablestorageclasses_denyall_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyexecute_access_2", + "displayName": "Tape Drives: Deny execute access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyexecute_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyexecute_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyread_access_2", + "displayName": "Tape Drives: Deny read access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyread_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyread_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denywrite_access_2", + "displayName": "Tape Drives: Deny write access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denywrite_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_tapedrives_denywrite_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_wpddevices_denyread_access_2", + "displayName": "WPD Devices: Deny read access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_wpddevices_denyread_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_wpddevices_denyread_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_wpddevices_denywrite_access_2", + "displayName": "WPD Devices: Deny write access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_wpddevices_denywrite_access_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_removablestorage_wpddevices_denywrite_access_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation", + "displayName": "Propagate extended error information", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation_rpcextendederrorinformationlist", + "displayName": "Propagation of extended error information: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation_rpcextendederrorinformationlist_0", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation_rpcextendederrorinformationlist_1", + "displayName": "On with Exceptions", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation_rpcextendederrorinformationlist_2", + "displayName": "Off with Exceptions", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation_rpcextendederrorinformationlist_3", + "displayName": "On", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcextendederrorinformation_rpcexterrorexceptions", + "displayName": "Extended Error Information Exceptions: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcignoredelegationfailure", + "displayName": "Ignore Delegation Failure", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcignoredelegationfailure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcignoredelegationfailure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcignoredelegationfailure_rpcignoredelegationfailurelist", + "displayName": "Ignoring Delegation Failure: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcignoredelegationfailure_rpcignoredelegationfailurelist_0", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcignoredelegationfailure_rpcignoredelegationfailurelist_1", + "displayName": "On", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcminimumhttpconnectiontimeout", + "displayName": "Set Minimum Idle Connection Timeout for RPC/HTTP connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcminimumhttpconnectiontimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcminimumhttpconnectiontimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcminimumhttpconnectiontimeout_rpcminimumhttpconnectiontimeoutvalue", + "displayName": "Minimum Idle Connection Timeout (in seconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation", + "displayName": "Maintain RPC Troubleshooting State Information", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation_rpcstateinformationlist", + "displayName": "RPC Runtime state information to maintain: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation_rpcstateinformationlist_0", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation_rpcstateinformationlist_1", + "displayName": "Auto1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation_rpcstateinformationlist_2", + "displayName": "Auto2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation_rpcstateinformationlist_3", + "displayName": "Server", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_rpc_rpcstateinformation_rpcstateinformationlist_4", + "displayName": "Full", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sam_samngckeyrocavalidation", + "displayName": "Configure validation of ROCA-vulnerable WHfB keys during authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sam_samngckeyrocavalidation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sam_samngckeyrocavalidation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sam_samngckeyrocavalidation_samngckeyrocavalidation_settings", + "displayName": "Options for handling ROCA-vulnerable WHfB keys: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sam_samngckeyrocavalidation_samngckeyrocavalidation_settings_0", + "displayName": "Ignore ROCA-vulnerable WHfB keys", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sam_samngckeyrocavalidation_samngckeyrocavalidation_settings_1", + "displayName": "Audit ROCA-vulnerable WHfB keys on use", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sam_samngckeyrocavalidation_samngckeyrocavalidation_settings_2", + "displayName": "Block ROCA-vulnerable WHfB keys on use", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_allow_logon_script_netbiosdisabled", + "displayName": "Allow logon scripts when NetBIOS or WINS is disabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_scripts_allow_logon_script_netbiosdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_allow_logon_script_netbiosdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_maxgposcriptwaitpolicy", + "displayName": "Specify maximum wait time for Group Policy scripts", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_scripts_maxgposcriptwaitpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_maxgposcriptwaitpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_maxgposcriptwaitpolicy_maxgposcriptwait", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_computer_ps_scripts_first", + "displayName": "Run Windows PowerShell scripts first at computer startup, shutdown", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_computer_ps_scripts_first_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_computer_ps_scripts_first_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_logon_script_sync_2", + "displayName": "Run logon scripts synchronously", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_logon_script_sync_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_logon_script_sync_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_shutdown_script_visible", + "displayName": "Display instructions in shutdown scripts as they run", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_shutdown_script_visible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_shutdown_script_visible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_startup_script_sync", + "displayName": "Run startup scripts asynchronously", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_startup_script_sync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_startup_script_sync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_startup_script_visible", + "displayName": "Display instructions in startup scripts as they run", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_startup_script_visible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_startup_script_visible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_user_ps_scripts_first", + "displayName": "Run Windows PowerShell scripts first at user logon, logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_user_ps_scripts_first_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_scripts_run_user_ps_scripts_first_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_betterwhenconnected", + "displayName": "Troubleshooting: Allow users to access online troubleshooting content on Microsoft servers from the Troubleshooting Control Panel (via the Windows Online Troubleshooting Service - WOTS)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_betterwhenconnected_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_betterwhenconnected_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_scripteddiagnosticsexecutionpolicy", + "displayName": "Troubleshooting: Allow users to access and run Troubleshooting Wizards", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_scripteddiagnosticsexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_scripteddiagnosticsexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_scripteddiagnosticssecuritypolicy", + "displayName": "Configure Security Policy for Scripted Diagnostics", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_scripteddiagnosticssecuritypolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiageng_scripteddiagnosticssecuritypolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiagschd_scheduleddiagnosticsexecutionpolicy", + "displayName": "Configure Scheduled Maintenance Behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sdiagschd_scheduleddiagnosticsexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiagschd_scheduleddiagnosticsexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiagschd_scheduleddiagnosticsexecutionpolicy_scheduleddiagnosticsexecutionpolicylevel", + "displayName": "Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sdiagschd_scheduleddiagnosticsexecutionpolicy_scheduleddiagnosticsexecutionpolicylevel_1", + "displayName": "Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sdiagschd_scheduleddiagnosticsexecutionpolicy_scheduleddiagnosticsexecutionpolicylevel_2", + "displayName": "Regular", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_securitycenter_securitycenter_securitycenterindomain", + "displayName": "Turn on Security Center (Domain PCs only)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_securitycenter_securitycenter_securitycenterindomain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_securitycenter_securitycenter_securitycenterindomain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sensors_disablelocationscripting_2", + "displayName": "Turn off location scripting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sensors_disablelocationscripting_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sensors_disablelocationscripting_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sensors_disablesensors_2", + "displayName": "Turn off sensors", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sensors_disablesensors_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sensors_disablesensors_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_do_not_display_manage_your_server_page", + "displayName": "Do not display Manage Your Server page at logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_servermanager_do_not_display_manage_your_server_page_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_do_not_display_manage_your_server_page_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_donotlaunchinitialconfigurationtasks", + "displayName": "Do not display Initial Configuration Tasks window automatically at logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_servermanager_donotlaunchinitialconfigurationtasks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_donotlaunchinitialconfigurationtasks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_donotlaunchservermanager", + "displayName": "Do not display Server Manager automatically at logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_servermanager_donotlaunchservermanager_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_donotlaunchservermanager_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_servermanagerautorefreshrate", + "displayName": "Configure the refresh interval for Server Manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_servermanager_servermanagerautorefreshrate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_servermanagerautorefreshrate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_servermanager_servermanagerautorefreshrate_refreshrate", + "displayName": "Minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing", + "displayName": "Specify settings for optional component installation and component repair", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_checkbox_neverusewu", + "displayName": "Never attempt to download payload from Windows Update (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_checkbox_neverusewu_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_checkbox_neverusewu_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_checkbox_sidestepwsus", + "displayName": "Download repair content and optional features directly from Windows Update instead of Windows Server Update Services (WSUS) (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_checkbox_sidestepwsus_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_checkbox_sidestepwsus_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_servicing_servicing_localsourcepath_textbox", + "displayName": "Alternate source file path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableapplicationsettingsync", + "displayName": "Do not sync app settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableapplicationsettingsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableapplicationsettingsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableapplicationsettingsync_checkbox_useroverride", + "displayName": "Allow users to turn \"app settings\" syncing on. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableapplicationsettingsync_checkbox_useroverride_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableapplicationsettingsync_checkbox_useroverride_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableappsyncsettingsync", + "displayName": "Do not sync Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableappsyncsettingsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableappsyncsettingsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableappsyncsettingsync_checkbox_useroverride", + "displayName": "Allow users to turn \"AppSync\" syncing on. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableappsyncsettingsync_checkbox_useroverride_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disableappsyncsettingsync_checkbox_useroverride_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablecredentialssettingsync", + "displayName": "Do not sync passwords", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablecredentialssettingsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablecredentialssettingsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablecredentialssettingsync_checkbox_useroverride", + "displayName": "Allow users to turn \"passwords\" syncing on. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablecredentialssettingsync_checkbox_useroverride_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablecredentialssettingsync_checkbox_useroverride_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disabledesktopthemesettingsync", + "displayName": "Do not sync desktop personalization", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disabledesktopthemesettingsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disabledesktopthemesettingsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disabledesktopthemesettingsync_checkbox_useroverride", + "displayName": "Allow users to turn \"desktop personalization\" syncing on. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disabledesktopthemesettingsync_checkbox_useroverride_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disabledesktopthemesettingsync_checkbox_useroverride_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablepersonalizationsettingsync", + "displayName": "Do not sync personalize", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablepersonalizationsettingsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablepersonalizationsettingsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablepersonalizationsettingsync_checkbox_useroverride", + "displayName": "Allow users to turn \"personalize\" syncing on. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablepersonalizationsettingsync_checkbox_useroverride_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablepersonalizationsettingsync_checkbox_useroverride_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesettingsync", + "displayName": "Do not sync", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesettingsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesettingsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesettingsync_checkbox_useroverride", + "displayName": "Allow users to turn syncing on. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesettingsync_checkbox_useroverride_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesettingsync_checkbox_useroverride_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablestartlayoutsettingsync", + "displayName": "Do not sync start settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablestartlayoutsettingsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablestartlayoutsettingsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablestartlayoutsettingsync_checkbox_useroverride", + "displayName": "Allow users to turn \"start layout\" syncing on. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablestartlayoutsettingsync_checkbox_useroverride_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablestartlayoutsettingsync_checkbox_useroverride_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesynconpaidnetwork", + "displayName": "Do not sync on metered connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesynconpaidnetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablesynconpaidnetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablewindowssettingsync", + "displayName": "Do not sync other Windows settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablewindowssettingsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablewindowssettingsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablewindowssettingsync_checkbox_useroverride", + "displayName": "Allow users to turn \"other Windows settings\" syncing on. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablewindowssettingsync_checkbox_useroverride_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_settingsync_disablewindowssettingsync_checkbox_useroverride_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_sharing_disablehomegroup", + "displayName": "Prevent the computer from joining a homegroup", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_sharing_disablehomegroup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_sharing_disablehomegroup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowcertificateswithnoeku", + "displayName": "Allow certificates with no extended key usage certificate attribute", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowcertificateswithnoeku_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowcertificateswithnoeku_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowintegratedunblock", + "displayName": "Allow Integrated Unblock screen to be displayed at the time of logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowintegratedunblock_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowintegratedunblock_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowsignatureonlykeys", + "displayName": "Allow signature keys valid for Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowsignatureonlykeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowsignatureonlykeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowtimeinvalidcertificates", + "displayName": "Allow time invalid certificates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowtimeinvalidcertificates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_allowtimeinvalidcertificates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certpropenabledstring", + "displayName": "Turn on certificate propagation from smart card", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certpropenabledstring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certpropenabledstring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootcleanupstring", + "displayName": "Configure root certificate clean up", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootcleanupstring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootcleanupstring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootcleanupstring_rootcertcleanupoption_levels", + "displayName": "Root certificate clean up options (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootcleanupstring_rootcertcleanupoption_levels_0", + "displayName": "No cleanup", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootcleanupstring_rootcertcleanupoption_levels_1", + "displayName": "Clean up certificates on smart card removal", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootcleanupstring_rootcertcleanupoption_levels_2", + "displayName": "Clean up certificates on log off", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootenabledstring", + "displayName": "Turn on root certificate propagation from smart card", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootenabledstring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_certproprootenabledstring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_disallowplaintextpin", + "displayName": "Prevent plaintext PINs from being returned by Credential Manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_disallowplaintextpin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_disallowplaintextpin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_enumerateecccerts", + "displayName": "Allow ECC certificates to be used for logon and authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_enumerateecccerts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_enumerateecccerts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_filterduplicatecerts", + "displayName": "Filter duplicate logon certificates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_filterduplicatecerts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_filterduplicatecerts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_forcereadingallcertificates", + "displayName": "Force the reading of all certificates from the smart card", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_forcereadingallcertificates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_forcereadingallcertificates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_integratedunblockpromptstring", + "displayName": "Display string when smart card is blocked", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_integratedunblockpromptstring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_integratedunblockpromptstring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_integratedunblockpromptstring_integratedunblockpromptstring", + "displayName": "Display string when smart card is blocked (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_reversesubject", + "displayName": "Reverse the subject name stored in a certificate when displaying", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_reversesubject_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_reversesubject_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_scpnpenabled", + "displayName": "Turn on Smart Card Plug and Play service", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_scpnpenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_scpnpenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_scpnpnotification", + "displayName": "Notify user of successful smart card driver installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_scpnpnotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_scpnpnotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_x509hintsneeded", + "displayName": "Allow user name hint", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_smartcard_x509hintsneeded_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_smartcard_x509hintsneeded_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_communities", + "displayName": "Specify communities", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_communities_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_communities_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_communities_snmp_communitieslistbox", + "displayName": "Communities (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_permittedmanagers", + "displayName": "Specify permitted managers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_permittedmanagers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_permittedmanagers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_permittedmanagers_snmp_permittedmanagerslistbox", + "displayName": "Permitted managers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_traps_public", + "displayName": "Specify traps for public community", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_traps_public_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_traps_public_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_snmp_snmp_traps_public_snmp_traps_publiclistbox", + "displayName": "Trap configuration (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_soundrec_soundrec_diableapplication_titletext_2", + "displayName": "Do not allow Sound Recorder to run", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_soundrec_soundrec_diableapplication_titletext_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_soundrec_soundrec_diableapplication_titletext_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration", + "displayName": "Customize message for Access Denied errors", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_additonalemailtotext", + "displayName": "Additional recipients: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_allowemailrequestscheck", + "displayName": "Enable users to request assistance (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_allowemailrequestscheck_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_allowemailrequestscheck_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_emailmessagetext", + "displayName": "\r\nAdd the following text to the end of the email:\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_errormessagetext", + "displayName": "\r\nDisplay the following message to users who are denied access:\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_generatelogcheck", + "displayName": "Log emails in Application and Services event log (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_generatelogcheck_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_generatelogcheck_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_includedeviceclaimscheck", + "displayName": "Include device claims (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_includedeviceclaimscheck_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_includedeviceclaimscheck_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_includeuserclaimscheck", + "displayName": "Include user claims (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_includeuserclaimscheck_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_includeuserclaimscheck_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_putadminontocheck", + "displayName": "File server administrator (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_putadminontocheck_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_putadminontocheck_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_putdataownerontocheck", + "displayName": "Folder owner (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_putdataownerontocheck_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_accessdeniedconfiguration_putdataownerontocheck_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_centralclassificationlist", + "displayName": "File Classification Infrastructure: Specify classification properties list", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_centralclassificationlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_centralclassificationlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_centralclassificationlist_centralclassificationlisttextelement", + "displayName": "Classification properties list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_enablemanualux", + "displayName": "File Classification Infrastructure: Display Classification tab in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_enablemanualux_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_enablemanualux_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_enableshellaccesscheck", + "displayName": "Enable access-denied assistance on client for all file types", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_srmfci_enableshellaccesscheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_srmfci_enableshellaccesscheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_hidepoweroptions", + "displayName": "Remove and prevent access to the Shut Down, Restart, Sleep, and Hibernate commands", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_startmenu_hidepoweroptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_hidepoweroptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist", + "displayName": "Remove All Programs list from the Start menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown", + "displayName": "Choose one of the following actions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown_0", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown_3", + "displayName": "Collapse", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown_2", + "displayName": "Collapse and disable setting", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown_1", + "displayName": "Remove and disable setting", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_norun", + "displayName": "Remove Run menu from Start Menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_startmenu_norun_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_norun_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nosettaskbar", + "displayName": "Prevent changes to Taskbar and Start Menu Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nosettaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nosettaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_notraycontextmenu", + "displayName": "Remove access to the context menus for the taskbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_startmenu_notraycontextmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_notraycontextmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nouninstallfromstart", + "displayName": "Prevent users from uninstalling applications from Start", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nouninstallfromstart_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_nouninstallfromstart_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_startpinappswheninstalled", + "displayName": "Pin Apps to Start when installed", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_startmenu_startpinappswheninstalled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_startpinappswheninstalled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_startmenu_startpinappswheninstalled_startpinappswheninstalled_name", + "displayName": "Add AppIDs to the list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_systemrestore_sr_disableconfig", + "displayName": "Turn off Configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_systemrestore_sr_disableconfig_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_systemrestore_sr_disableconfig_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_autocomplete_2", + "displayName": "Turn off AutoComplete integration with Input Panel", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_autocomplete_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_autocomplete_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_edgetarget_2", + "displayName": "Prevent Input Panel tab from appearing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_edgetarget_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_edgetarget_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptarget_2", + "displayName": "For tablet pen input, don’t show the Input Panel icon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptarget_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptarget_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptouchtarget_2", + "displayName": "For touch input, don’t show the Input Panel icon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptouchtarget_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptouchtarget_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2", + "displayName": "Turn off password security in Input Panel", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2_passwordsecurity", + "displayName": "Turn off password security in Input Panel (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2_passwordsecurity_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2_passwordsecurity_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2_passwordsecurity_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2_passwordsecurity_4", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_2_passwordsecurity_5", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_prediction_2", + "displayName": "Disable text prediction", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_prediction_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_prediction_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_rarechar_2", + "displayName": "Include rarely used Chinese, Kanji, or Hanja characters", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_rarechar_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_rarechar_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_2", + "displayName": "Turn off tolerant and Z-shaped scratch-out gestures", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_2_scratchout", + "displayName": "Turn off tolerant and Z-shaped scratch-out gestures (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_2_scratchout_1", + "displayName": "All", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_2_scratchout_2", + "displayName": "Tolerant", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_2_scratchout_3", + "displayName": "None", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disableinkball_2", + "displayName": "Do not allow Inkball to run", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disableinkball_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disableinkball_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablejournal_2", + "displayName": "Do not allow Windows Journal to be run", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablejournal_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablejournal_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablenotewriterprinting_2", + "displayName": "Do not allow printing to Journal Note Writer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablenotewriterprinting_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablenotewriterprinting_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablesnippingtool_2", + "displayName": "Do not allow Snipping Tool to run", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablesnippingtool_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_disablesnippingtool_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventbackescmapping_2", + "displayName": "Prevent Back-ESC mapping", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventbackescmapping_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventbackescmapping_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventflicks_2", + "displayName": "Prevent flicks", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventflicks_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventflicks_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventflickslearningmode_2", + "displayName": "Prevent Flicks Learning Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventflickslearningmode_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventflickslearningmode_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventlaunchapp_2", + "displayName": "Prevent launch an application", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventlaunchapp_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventlaunchapp_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventpressandhold_2", + "displayName": "Prevent press and hold", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventpressandhold_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_preventpressandhold_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_turnoffbuttons_2", + "displayName": "Turn off hardware buttons", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_turnoffbuttons_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_turnoffbuttons_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_turnofffeedback_2", + "displayName": "Turn off pen feedback", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_turnofffeedback_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tabletshell_turnofffeedback_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_taskbar_taskbarnopinnedlist", + "displayName": "Remove pinned programs from the Taskbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_taskbar_taskbarnopinnedlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_taskbar_taskbarnopinnedlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_router_name", + "displayName": "Set 6to4 Relay Name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_router_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_router_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_router_name_resolution_interval", + "displayName": "Set 6to4 Relay Name Resolution Interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_router_name_resolution_interval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_router_name_resolution_interval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_router_name_resolution_interval_routernameresolutionintervalbox", + "displayName": "Minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_router_name_routernamebox", + "displayName": "Enter a router or relay name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_state", + "displayName": "Set 6to4 State", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_state_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_state_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_state_stateselect", + "displayName": "Select from the following states: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_state_stateselect_default", + "displayName": "Default State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_state_stateselect_enabled", + "displayName": "Enabled State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_6to4_state_stateselect_disabled", + "displayName": "Disabled State", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_ip_stateless_autoconfiguration_limits_state", + "displayName": "Set IP Stateless Autoconfiguration Limits State", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_ip_stateless_autoconfiguration_limits_state_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_ip_stateless_autoconfiguration_limits_state_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_iphttps_clientstate", + "displayName": "Set IP-HTTPS State", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_iphttps_clientstate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_iphttps_clientstate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_iphttps_clientstate_iphttpsclienturlbox", + "displayName": "Enter the IPHTTPS Url: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_iphttps_clientstate_stateselect", + "displayName": "Select Interface state from the following options: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_iphttps_clientstate_stateselect_0", + "displayName": "Default State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_iphttps_clientstate_stateselect_2", + "displayName": "Enabled State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_iphttps_clientstate_stateselect_3", + "displayName": "Disabled State", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_router_name", + "displayName": "Set ISATAP Router Name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_router_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_router_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_router_name_routernamebox", + "displayName": "Enter a router or relay name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_state", + "displayName": "Set ISATAP State", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_state_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_state_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_state_stateselect", + "displayName": "Select from the following states: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_state_stateselect_default", + "displayName": "Default State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_state_stateselect_enabled", + "displayName": "Enabled State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_isatap_state_stateselect_disabled", + "displayName": "Disabled State", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_client_port", + "displayName": "Set Teredo Client Port", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_client_port_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_client_port_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_client_port_teredoclientportbox", + "displayName": "\r\nThe setting allows you to customize the Teredo client port\r\nThe range is 0 to 65535. Default (recommended) is 0 which is to let the local system pick the port.\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_default_qualified", + "displayName": "Set Teredo Default Qualified", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_default_qualified_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_default_qualified_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_default_qualified_stateselect", + "displayName": "Select from the following states: (Device)", + "options": { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_default_qualified_stateselect_enabled", + "displayName": "Enabled State", + "description": null + } + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_refresh_rate", + "displayName": "Set Teredo Refresh Rate", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_refresh_rate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_refresh_rate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_refresh_rate_teredorefreshratebox", + "displayName": "Seconds: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_server_name", + "displayName": "Set Teredo Server Name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_server_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_server_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_server_name_teredoservernamebox", + "displayName": "Enter a Teredo server name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_state", + "displayName": "Set Teredo State", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_state_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_state_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_state_stateselect", + "displayName": "Select from the following states: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_state_stateselect_default", + "displayName": "Default State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_state_stateselect_disabled", + "displayName": "Disabled State", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_state_stateselect_client", + "displayName": "Client", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_teredo_state_stateselect_enterprise client", + "displayName": "Enterprise Client", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_windows_scaling_heuristics_state", + "displayName": "Set Window Scaling Heuristics State", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tcpip_windows_scaling_heuristics_state_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tcpip_windows_scaling_heuristics_state_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_auto_reconnect", + "displayName": "Automatic reconnection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_auto_reconnect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_auto_reconnect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_camera_redirection", + "displayName": "Do not allow video capture redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_camera_redirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_camera_redirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_certificate_template_policy", + "displayName": "Server authentication certificate template", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_certificate_template_policy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_certificate_template_policy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_certificate_template_policy_ts_certificate_template_name", + "displayName": "Certificate Template Name (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_signed_files_2", + "displayName": "Allow .rdp files from valid publishers and user's default .rdp settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_signed_files_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_signed_files_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_unsigned_files_2", + "displayName": "Allow .rdp files from unknown publishers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_unsigned_files_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_unsigned_files_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio", + "displayName": "Allow audio and video playback redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_capture", + "displayName": "Allow audio recording redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_capture_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_capture_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_quality", + "displayName": "Limit audio playback quality", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_quality_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_quality_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_quality_ts_audio_quality_level", + "displayName": "Audio Quality (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_quality_ts_audio_quality_level_1", + "displayName": "Dynamic", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_quality_ts_audio_quality_level_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_audio_quality_ts_audio_quality_level_7", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_clipboard", + "displayName": "Do not allow Clipboard redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_clipboard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_clipboard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_com", + "displayName": "Do not allow COM port redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_com_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_com_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_default_m", + "displayName": "Do not set default client printer to be default printer in a session", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_default_m_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_default_m_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_disable_hardware_mode", + "displayName": "Do not allow hardware accelerated decoding", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_disable_hardware_mode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_disable_hardware_mode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_lpt", + "displayName": "Do not allow LPT port redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_lpt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_lpt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_pnp", + "displayName": "Do not allow supported Plug and Play device redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_pnp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_pnp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_printer", + "displayName": "Do not allow client printer redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_printer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_printer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_trusted_certificate_thumbprints_1", + "displayName": "Specify SHA1 thumbprints of certificates representing trusted .rdp publishers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_trusted_certificate_thumbprints_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_trusted_certificate_thumbprints_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_trusted_certificate_thumbprints_1_trusted_certificate_thumbprints", + "displayName": "Comma-separated list of SHA1 trusted certificate thumbprints: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_turn_off_udp", + "displayName": "Turn Off UDP On Client", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_turn_off_udp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_client_turn_off_udp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth", + "displayName": "Limit maximum color depth", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth_ts_color_depth", + "displayName": "Color Depth (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth_ts_color_depth_999", + "displayName": "Client Compatible", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth_ts_color_depth_2", + "displayName": "15 bit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth_ts_color_depth_3", + "displayName": "16 bit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth_ts_color_depth_4", + "displayName": "24 bit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_colordepth_ts_color_depth_5", + "displayName": "32 bit", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_delete_roaming_user_profiles", + "displayName": "Limit the size of the entire roaming user profile cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_delete_roaming_user_profiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_delete_roaming_user_profiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_delete_roaming_user_profiles_ts_profile_directory_monitoring_interval", + "displayName": "Monitoring interval (minutes): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_delete_roaming_user_profiles_ts_profile_directory_quota", + "displayName": "Maximum cache size (GBs): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_disable_remote_desktop_wallpaper", + "displayName": "Enforce Removal of Remote Desktop Wallpaper", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_disable_remote_desktop_wallpaper_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_disable_remote_desktop_wallpaper_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_dx_use_full_hwgpu", + "displayName": "Use hardware graphics adapters for all Remote Desktop Services sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_dx_use_full_hwgpu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_dx_use_full_hwgpu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_easy_print", + "displayName": "Use Remote Desktop Easy Print printer driver first", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_easy_print_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_easy_print_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_enablevirtualgraphics", + "displayName": "Configure RemoteFX", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_enablevirtualgraphics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_enablevirtualgraphics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_fallbackprintdrivertype", + "displayName": "Specify RD Session Host server fallback printer driver behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_fallbackprintdrivertype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_fallbackprintdrivertype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_fallbackprintdrivertype_ts_fallback_options", + "displayName": "When attempting to find a suitable driver: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_fallbackprintdrivertype_ts_fallback_options_1", + "displayName": "Do nothing if one is not found.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_fallbackprintdrivertype_ts_fallback_options_2", + "displayName": "Default to PCL if one is not found.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_fallbackprintdrivertype_ts_fallback_options_3", + "displayName": "Default to PS if one is not found.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_fallbackprintdrivertype_ts_fallback_options_4", + "displayName": "Show both PCL and PS if one is not found.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_forcible_logoff", + "displayName": "Deny logoff of an administrator logged in to the console session", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_forcible_logoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_forcible_logoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_join_session_directory", + "displayName": "Join RD Connection Broker", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_join_session_directory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_join_session_directory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_keep_alive", + "displayName": "Configure keep-alive connection interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_keep_alive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_keep_alive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_keep_alive_ts_keep_alive_interval", + "displayName": "Keep-Alive interval: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_secgroup", + "displayName": "License server security group", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_secgroup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_secgroup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_servers", + "displayName": "Use the specified Remote Desktop license servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_servers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_servers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_servers_ts_license_edit", + "displayName": "License servers to use: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_tooltip", + "displayName": "Hide notifications about RD Licensing problems that affect the RD Session Host server", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_tooltip_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_license_tooltip_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_licensing_mode", + "displayName": "Set the Remote Desktop licensing mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_licensing_mode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_licensing_mode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_licensing_mode_ts_licensing_name", + "displayName": "Specify the licensing mode for the RD Session Host server. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_licensing_mode_ts_licensing_name_2", + "displayName": "Per Device", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_licensing_mode_ts_licensing_name_4", + "displayName": "Per User", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_licensing_mode_ts_licensing_name_6", + "displayName": "AAD Per User", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_max_con_policy", + "displayName": "Limit number of connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_max_con_policy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_max_con_policy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_max_con_policy_ts_maximum_connections_allowed", + "displayName": "RD Maximum Connections allowed (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxdisplayres", + "displayName": "Limit maximum display resolution", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxdisplayres_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxdisplayres_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxdisplayres_ts_displayres_height", + "displayName": "Height (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxdisplayres_ts_displayres_width", + "displayName": "Width (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxmonitor", + "displayName": "Limit number of monitors", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxmonitor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxmonitor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_maxmonitor_ts_max_monitor", + "displayName": "Maximum Monitors (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_nodisconnectmenu", + "displayName": "Remove \"Disconnect\" option from Shut Down dialog", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_nodisconnectmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_nodisconnectmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_nosecuritymenu", + "displayName": "Remove Windows Security item from Start menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_nosecuritymenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_nosecuritymenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_preventlicenseupgrade", + "displayName": "Prevent license upgrade", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_preventlicenseupgrade_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_preventlicenseupgrade_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_promt_creds_client_comp", + "displayName": "Prompt for credentials on the client computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_promt_creds_client_comp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_promt_creds_client_comp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_rdsappx_waitforregistration", + "displayName": "Suspend user sign-in to complete app registration", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_rdsappx_waitforregistration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_rdsappx_waitforregistration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2", + "displayName": "Set rules for remote control of Remote Desktop Services user sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2_ts_remotecontrol_levels", + "displayName": "Options: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2_ts_remotecontrol_levels_0", + "displayName": "No remote control allowed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2_ts_remotecontrol_levels_1", + "displayName": "Full Control with user's permission", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2_ts_remotecontrol_levels_2", + "displayName": "Full Control without user's permission", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2_ts_remotecontrol_levels_3", + "displayName": "View Session with user's permission", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_2_ts_remotecontrol_levels_4", + "displayName": "View Session without user's permission", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics", + "displayName": "Optimize visual experience when using RemoteFX", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_ts_remotedesktopvirtualgraphics_screencapturerate", + "displayName": "Screen capture rate (frames per second): (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_ts_remotedesktopvirtualgraphics_screencapturerate_1", + "displayName": "Highest (best quality)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_ts_remotedesktopvirtualgraphics_screencapturerate_2", + "displayName": "Medium (default)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_ts_remotedesktopvirtualgraphics_screencapturerate_3", + "displayName": "Lowest", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_ts_remotedesktopvirtualgraphics_screenimagequality", + "displayName": "Screen Image Quality: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_ts_remotedesktopvirtualgraphics_screenimagequality_1", + "displayName": "Highest (best quality)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_ts_remotedesktopvirtualgraphics_screenimagequality_2", + "displayName": "Medium (default)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_remotedesktopvirtualgraphics_ts_remotedesktopvirtualgraphics_screenimagequality_3", + "displayName": "Lowest", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_clustname", + "displayName": "Configure RD Connection Broker farm name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_clustname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_clustname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_clustname_ts_sd_clustname", + "displayName": "Configure RD Connection Broker farm name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_expose_address", + "displayName": "Use IP Address Redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_expose_address_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_expose_address_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_loc", + "displayName": "Configure RD Connection Broker server name", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_loc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_loc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sd_loc_ts_sd_loc", + "displayName": "Configure RD Connection Broker server name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy", + "displayName": "Require use of specific security layer for remote (RDP) connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_ts_security_layer", + "displayName": "Security Layer (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_ts_security_layer_0", + "displayName": "RDP", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_ts_security_layer_1", + "displayName": "Negotiate", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_security_layer_policy_ts_security_layer_2", + "displayName": "SSL", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_network_detect", + "displayName": "Select network detection on the server", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_network_detect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_network_detect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_network_detect_ts_select_network_detect_level", + "displayName": "Select Network Detect Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_network_detect_ts_select_network_detect_level_0", + "displayName": "Use both Connect Time Detect and Continuous Network Detect", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_network_detect_ts_select_network_detect_level_1", + "displayName": "Turn off Connect Time Detect", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_network_detect_ts_select_network_detect_level_2", + "displayName": "Turn off Continuous Network Detect", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_network_detect_ts_select_network_detect_level_3", + "displayName": "Turn off Connect Time Detect and Continuous Network Detect", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_transport", + "displayName": "Select RDP transport protocols", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_transport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_transport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_transport_ts_select_transport_type", + "displayName": "Select Transport Type (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_transport_ts_select_transport_type_0", + "displayName": "Use both UDP and TCP", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_transport_ts_select_transport_type_1", + "displayName": "Use only TCP", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_select_transport_ts_select_transport_type_2", + "displayName": "Use either UDP or TCP", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_advanced_remotefx_remoteapp", + "displayName": "Use advanced RemoteFX graphics for RemoteApp", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_advanced_remotefx_remoteapp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_advanced_remotefx_remoteapp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_auth", + "displayName": "Configure server authentication for client", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_auth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_auth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_auth_ts_server_auth_level", + "displayName": "Authentication setting: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_auth_ts_server_auth_level_0", + "displayName": "Always connect, even if authentication fails", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_auth_ts_server_auth_level_2", + "displayName": "Warn me if authentication fails", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_auth_ts_server_auth_level_1", + "displayName": "Do not connect if authentication fails", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_avc_hw_encode_preferred", + "displayName": "Configure H.264/AVC hardware encoding for Remote Desktop Connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_avc_hw_encode_preferred_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_avc_hw_encode_preferred_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_avc444_mode_preferred", + "displayName": "Prioritize H.264/AVC 444 graphics mode for Remote Desktop Connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_avc444_mode_preferred_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_avc444_mode_preferred_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_compressor", + "displayName": "Configure compression for RemoteFX data", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_compressor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_compressor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_compressor_ts_compressor_levels", + "displayName": "RDP compression algorithm: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_compressor_ts_compressor_levels_1", + "displayName": "Optimized to use less memory", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_compressor_ts_compressor_levels_3", + "displayName": "Optimized to use less network bandwidth", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_compressor_ts_compressor_levels_2", + "displayName": "Balances memory and network bandwidth", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_compressor_ts_compressor_levels_0", + "displayName": "Do not use an RDP compression algorithm", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_image_quality", + "displayName": "Configure image quality for RemoteFX Adaptive Graphics", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_image_quality_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_image_quality_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_image_quality_ts_server_image_quality_levels", + "displayName": "Image quality: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_image_quality_ts_server_image_quality_levels_1", + "displayName": "Lossless", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_image_quality_ts_server_image_quality_levels_2", + "displayName": "High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_image_quality_ts_server_image_quality_levels_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_image_quality_ts_server_image_quality_levels_4", + "displayName": "Low", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_legacy_rfx", + "displayName": "Enable RemoteFX encoding for RemoteFX clients designed for Windows Server 2008 R2 SP1", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_legacy_rfx_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_legacy_rfx_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_profile", + "displayName": "Configure RemoteFX Adaptive Graphics", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_profile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_profile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_profile_ts_server_profile_levels", + "displayName": "RDP experience: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_profile_ts_server_profile_levels_2", + "displayName": "Let the system choose experience for network condition", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_profile_ts_server_profile_levels_1", + "displayName": "Optimize for server scalability", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_profile_ts_server_profile_levels_3", + "displayName": "Optimize for minimum bandwidth usage", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_visexp", + "displayName": "Optimize visual experience for Remote Desktop Service Sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_visexp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_visexp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_visexp_ts_visexp_settings", + "displayName": "Visual experience: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_visexp_ts_visexp_settings_1", + "displayName": "Rich multimedia", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_visexp_ts_visexp_settings_2", + "displayName": "Text", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_wddm_graphics_driver", + "displayName": "Use WDDM graphics display driver for Remote Desktop Connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_wddm_graphics_driver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_server_wddm_graphics_driver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_session_end_on_limit_2", + "displayName": "End session when time limits are reached", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_session_end_on_limit_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_session_end_on_limit_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2", + "displayName": "Set time limit for disconnected sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected", + "displayName": "End a disconnected session (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_0", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_60000", + "displayName": "1 minute", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_300000", + "displayName": "5 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_600000", + "displayName": "10 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_900000", + "displayName": "15 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_1800000", + "displayName": "30 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_3600000", + "displayName": "1 hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_7200000", + "displayName": "2 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_10800000", + "displayName": "3 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_21600000", + "displayName": "6 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_28800000", + "displayName": "8 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_43200000", + "displayName": "12 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_57600000", + "displayName": "16 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_64800000", + "displayName": "18 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_86400000", + "displayName": "1 day", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_172800000", + "displayName": "2 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_259200000", + "displayName": "3 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_345600000", + "displayName": "4 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_2_ts_sessions_enddisconnected_432000000", + "displayName": "5 days", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2", + "displayName": "Set time limit for active but idle Remote Desktop Services sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext", + "displayName": "Idle session limit: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_0", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_60000", + "displayName": "1 minute", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_300000", + "displayName": "5 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_600000", + "displayName": "10 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_900000", + "displayName": "15 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_1800000", + "displayName": "30 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_3600000", + "displayName": "1 hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_7200000", + "displayName": "2 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_10800000", + "displayName": "3 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_21600000", + "displayName": "6 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_28800000", + "displayName": "8 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_43200000", + "displayName": "12 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_57600000", + "displayName": "16 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_64800000", + "displayName": "18 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_86400000", + "displayName": "1 day", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_172800000", + "displayName": "2 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_259200000", + "displayName": "3 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_345600000", + "displayName": "4 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_2_ts_sessions_idlelimittext_432000000", + "displayName": "5 days", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2", + "displayName": "Set time limit for active Remote Desktop Services sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit", + "displayName": "Active session limit : (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_0", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_60000", + "displayName": "1 minute", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_300000", + "displayName": "5 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_600000", + "displayName": "10 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_900000", + "displayName": "15 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_1800000", + "displayName": "30 minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_3600000", + "displayName": "1 hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_7200000", + "displayName": "2 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_10800000", + "displayName": "3 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_21600000", + "displayName": "6 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_28800000", + "displayName": "8 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_43200000", + "displayName": "12 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_57600000", + "displayName": "16 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_64800000", + "displayName": "18 hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_86400000", + "displayName": "1 day", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_172800000", + "displayName": "2 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_259200000", + "displayName": "3 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_345600000", + "displayName": "4 days", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_2_ts_sessions_activelimit_432000000", + "displayName": "5 days", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_single_session", + "displayName": "Restrict Remote Desktop Services users to a single Remote Desktop Services session", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_single_session_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_single_session_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_smart_card", + "displayName": "Do not allow smart card device redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_smart_card_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_smart_card_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_start_program_2", + "displayName": "Start a program on connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_start_program_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_start_program_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_start_program_2_ts_program_name", + "displayName": "Program path and file name (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_start_program_2_ts_workdir", + "displayName": "Working Directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_temp_delete", + "displayName": "Do not delete temp folders upon exit", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_temp_delete_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_temp_delete_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_temp_per_session", + "displayName": "Do not use temporary folders per session", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_temp_per_session_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_temp_per_session_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_time_zone", + "displayName": "Allow time zone redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_time_zone_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_time_zone_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_tscc_permissions_policy", + "displayName": "Do not allow local administrators to customize permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_tscc_permissions_policy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_tscc_permissions_policy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_turnoff_singleapp", + "displayName": "Always show desktop on connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_turnoff_singleapp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_turnoff_singleapp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_usb_redirection_disable", + "displayName": "Allow RDP redirection of other supported RemoteFX USB devices from this computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_usb_redirection_disable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_usb_redirection_disable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_usb_redirection_disable_usbaccessright", + "displayName": "RemoteFX USB Redirection Access Rights (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_usb_redirection_disable_usbaccessright_1", + "displayName": "Adminstrators Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_usb_redirection_disable_usbaccessright_2", + "displayName": "Adminstrators and Users", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_authentication_policy", + "displayName": "Require user authentication for remote connections by using Network Level Authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_authentication_policy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_authentication_policy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home", + "displayName": "Set Remote Desktop Services User Home Directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter", + "displayName": "Drive Letter (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_g:", + "displayName": "G:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_h:", + "displayName": "H:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_i:", + "displayName": "I:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_j:", + "displayName": "J:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_k:", + "displayName": "K:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_l:", + "displayName": "L:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_m:", + "displayName": "M:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_n:", + "displayName": "N:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_o:", + "displayName": "O:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_p:", + "displayName": "P:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_q:", + "displayName": "Q:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_r:", + "displayName": "R:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_s:", + "displayName": "S:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_t:", + "displayName": "T:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_u:", + "displayName": "U:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_v:", + "displayName": "V:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_w:", + "displayName": "W:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_x:", + "displayName": "X:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_y:", + "displayName": "Y:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_drive_letter_z:", + "displayName": "Z:", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_home_dir", + "displayName": "Home Dir Root Path: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_user_home_location", + "displayName": "Location: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_user_home_location_1", + "displayName": "On the Network", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_home_ts_user_home_location_0", + "displayName": "On the Local machine", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_mandatory_profiles", + "displayName": "Use mandatory profiles on the RD Session Host server", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_mandatory_profiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_mandatory_profiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_profiles", + "displayName": "Set path for Remote Desktop Services Roaming User Profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_profiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_profiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_terminalserver_ts_user_profiles_ts_profile_path", + "displayName": "Profile path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_touchinput_panningeverywhereoff_2", + "displayName": "Turn off Touch Panning", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_touchinput_panningeverywhereoff_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_touchinput_panningeverywhereoff_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_touchinput_touchinputoff_2", + "displayName": "Turn off Tablet PC touch input", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_touchinput_touchinputoff_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_touchinput_touchinputoff_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_blockedcommandslist_name", + "displayName": "Configure the list of blocked TPM commands", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_blockedcommandslist_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_blockedcommandslist_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_blockedcommandslist_name_blockedcommandslist_ordinals2", + "displayName": "The list of blocked TPM commands: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_cleartpmifnotready_name", + "displayName": "Configure the system to clear the TPM if it is not in a ready state.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_cleartpmifnotready_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_cleartpmifnotready_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_ignoredefaultlist_name", + "displayName": "Ignore the default list of blocked TPM commands", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_ignoredefaultlist_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_ignoredefaultlist_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_ignorelocallist_name", + "displayName": "Ignore the local list of blocked TPM commands", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_ignorelocallist_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_ignorelocallist_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_optintodsha_name", + "displayName": "Enable Device Health Attestation Monitoring and Reporting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_optintodsha_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_optintodsha_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_osmanagedauth_name", + "displayName": "Configure the level of TPM owner authorization information available to the operating system", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_osmanagedauth_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_osmanagedauth_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_osmanagedauth_name_selectosmanagedauthlevel", + "displayName": "Operating system managed TPM authentication level: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_osmanagedauth_name_selectosmanagedauthlevel_4", + "displayName": "Full", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_osmanagedauth_name_selectosmanagedauthlevel_2", + "displayName": "Delegated", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_osmanagedauth_name_selectosmanagedauthlevel_0", + "displayName": "None", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailureduration_name", + "displayName": "Standard User Lockout Duration", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailureduration_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailureduration_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailureduration_name_dxt_standarduserauthorizationfailureduration_name", + "displayName": "Duration for counting TPM authorization failures (minutes): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailureindividualthreshold_name", + "displayName": "Standard User Individual Lockout Threshold", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailureindividualthreshold_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailureindividualthreshold_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailureindividualthreshold_name_dxt_standarduserauthorizationfailureindividualthreshold_name", + "displayName": "Maximum number of authorization failures per duration: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailuretotalthreshold_name", + "displayName": "Standard User Total Lockout Threshold", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailuretotalthreshold_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailuretotalthreshold_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_standarduserauthorizationfailuretotalthreshold_name_dxt_standarduserauthorizationfailuretotalthreshold_name", + "displayName": "Maximum number of authorization failures per duration: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_uselegacydap_name", + "displayName": "Configure the system to use legacy Dictionary Attack Prevention Parameters setting for TPM 2.0.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_tpm_uselegacydap_name_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_tpm_uselegacydap_name_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_calculator", + "displayName": "Calculator", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_calculator_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_calculator_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod", + "displayName": "Configure Sync Method", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_settingsimportnotification_delay", + "displayName": "Notification delay (in seconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_settingsimportnotification_enable", + "displayName": "Enable notification (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_settingsimportnotification_enable_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_settingsimportnotification_enable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_syncmethodconfiguration_list", + "displayName": "Sync Method: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_syncmethodconfiguration_list_syncprovider", + "displayName": "SyncProvider", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_syncmethodconfiguration_list_none", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_syncmethodconfiguration_list_external", + "displayName": "External", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configurevdi", + "displayName": "VDI Configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configurevdi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configurevdi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_configurevdi_vdicollectionname", + "displayName": "VDI Collection Name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_contactitdescription", + "displayName": "Contact IT Link Text", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_contactitdescription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_contactitdescription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_contactitdescription_contactitdescription", + "displayName": "Contact IT Link Text (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_contactiturl", + "displayName": "Contact IT URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_contactiturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_contactiturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_contactiturl_contactiturl", + "displayName": "Contact IT URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewin8sync", + "displayName": "Do not synchronize Windows Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewin8sync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewin8sync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings", + "displayName": "Synchronize Windows settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_desktopsettings", + "displayName": "Desktop settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_desktopsettings_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_desktopsettings_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_easeofaccesssettings", + "displayName": "Ease of access (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_easeofaccesssettings_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_easeofaccesssettings_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_networkprinters", + "displayName": "Network Printers (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_networkprinters_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_networkprinters_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_roamingcredentialsettings", + "displayName": "Roaming Credentials (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_roamingcredentialsettings_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_roamingcredentialsettings_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_themesettings", + "displayName": "Themes (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_themesettings_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_themesettings_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_enableuev", + "displayName": "Enable UEV", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_enableuev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_enableuev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_enableuev_registerinboxtemplates", + "displayName": "Auto-register inbox templates (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_enableuev_registerinboxtemplates_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_enableuev_registerinboxtemplates_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_finance", + "displayName": "Finance", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_finance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_finance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_firstusenotificationenabled", + "displayName": "First Use Notification", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_firstusenotificationenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_firstusenotificationenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_games", + "displayName": "Games", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_games_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_games_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer10", + "displayName": "Internet Explorer 10", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer11", + "displayName": "Internet Explorer 11", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer8", + "displayName": "Internet Explorer 8", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer8_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer8_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer9", + "displayName": "Internet Explorer 9", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer9_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer9_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorercommon", + "displayName": "Internet Explorer Common Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorercommon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorercommon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_maps", + "displayName": "Maps", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_maps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_maps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_maxpackagesizeinbytes", + "displayName": "Settings package size warning threshold", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_maxpackagesizeinbytes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_maxpackagesizeinbytes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_maxpackagesizeinbytes_maxpackagesizeinbytes", + "displayName": "Package size threshold (in bytes): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010access", + "displayName": "Microsoft Access 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010access_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010access_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010common", + "displayName": "Microsoft Office 2010 Common Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010common_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010common_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010excel", + "displayName": "Microsoft Excel 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010excel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010excel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010infopath", + "displayName": "Microsoft InfoPath 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010infopath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010infopath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010lync", + "displayName": "Microsoft Lync 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010lync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010lync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010onenote", + "displayName": "Microsoft OneNote 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010onenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010onenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010outlook", + "displayName": "Microsoft Outlook 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010outlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010outlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010powerpoint", + "displayName": "Microsoft PowerPoint 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010powerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010powerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010project", + "displayName": "Microsoft Project 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010project_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010project_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010publisher", + "displayName": "Microsoft Publisher 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010publisher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010publisher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointdesigner", + "displayName": "Microsoft SharePoint Designer 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointdesigner_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointdesigner_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointworkspace", + "displayName": "Microsoft SharePoint Workspace 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointworkspace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointworkspace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010visio", + "displayName": "Microsoft Visio 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010visio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010visio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010word", + "displayName": "Microsoft Word 2010", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010word_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010word_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013access", + "displayName": "Microsoft Access 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013access_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013access_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013accessbackup", + "displayName": "Access 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013accessbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013accessbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013common", + "displayName": "Microsoft Office 2013 Common Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013common_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013common_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013commonbackup", + "displayName": "Common 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013commonbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013commonbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excel", + "displayName": "Microsoft Excel 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excelbackup", + "displayName": "Excel 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excelbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excelbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopath", + "displayName": "Microsoft InfoPath 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopathbackup", + "displayName": "InfoPath 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopathbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopathbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lync", + "displayName": "Microsoft Lync 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lyncbackup", + "displayName": "Lync 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lyncbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lyncbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onedriveforbusiness", + "displayName": "Microsoft OneDrive for Business 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onedriveforbusiness_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onedriveforbusiness_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenote", + "displayName": "Microsoft OneNote 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenotebackup", + "displayName": "OneNote 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenotebackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenotebackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlook", + "displayName": "Microsoft Outlook 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlookbackup", + "displayName": "Outlook 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlookbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlookbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpoint", + "displayName": "Microsoft PowerPoint 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpointbackup", + "displayName": "PowerPoint 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpointbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpointbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013project", + "displayName": "Microsoft Project 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013project_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013project_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013projectbackup", + "displayName": "Project 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013projectbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013projectbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisher", + "displayName": "Microsoft Publisher 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisherbackup", + "displayName": "Publisher 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisherbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisherbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesigner", + "displayName": "Microsoft SharePoint Designer 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesigner_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesigner_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesignerbackup", + "displayName": "SharePoint Designer 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesignerbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesignerbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013uploadcenter", + "displayName": "Microsoft Office 2013 Upload Center", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013uploadcenter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013uploadcenter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visio", + "displayName": "Microsoft Visio 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visiobackup", + "displayName": "Visio 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visiobackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visiobackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013word", + "displayName": "Microsoft Word 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013word_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013word_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013wordbackup", + "displayName": "Word 2013 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013wordbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013wordbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016access", + "displayName": "Microsoft Access 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016access_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016access_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016accessbackup", + "displayName": "Access 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016accessbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016accessbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016common", + "displayName": "Microsoft Office 2016 Common Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016common_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016common_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016commonbackup", + "displayName": "Common 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016commonbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016commonbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excel", + "displayName": "Microsoft Excel 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excelbackup", + "displayName": "Excel 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excelbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excelbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lync", + "displayName": "Microsoft Lync 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lyncbackup", + "displayName": "Lync 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lyncbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lyncbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onedriveforbusiness", + "displayName": "Microsoft OneDrive for Business 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onedriveforbusiness_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onedriveforbusiness_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenote", + "displayName": "Microsoft OneNote 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenotebackup", + "displayName": "OneNote 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenotebackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenotebackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlook", + "displayName": "Microsoft Outlook 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlookbackup", + "displayName": "Outlook 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlookbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlookbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpoint", + "displayName": "Microsoft PowerPoint 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpointbackup", + "displayName": "PowerPoint 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpointbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpointbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016project", + "displayName": "Microsoft Project 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016project_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016project_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016projectbackup", + "displayName": "Project 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016projectbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016projectbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisher", + "displayName": "Microsoft Publisher 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisherbackup", + "displayName": "Publisher 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisherbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisherbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016uploadcenter", + "displayName": "Microsoft Office 2016 Upload Center", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016uploadcenter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016uploadcenter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visio", + "displayName": "Microsoft Visio 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visiobackup", + "displayName": "Visio 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visiobackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visiobackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016word", + "displayName": "Microsoft Word 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016word_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016word_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016wordbackup", + "displayName": "Word 2016 backup only", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016wordbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016wordbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2013", + "displayName": "Microsoft Office 365 Access 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2016", + "displayName": "Microsoft Office 365 Access 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2013", + "displayName": "Microsoft Office 365 Common 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2016", + "displayName": "Microsoft Office 365 Common 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2013", + "displayName": "Microsoft Office 365 Excel 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2016", + "displayName": "Microsoft Office 365 Excel 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365infopath2013", + "displayName": "Microsoft Office 365 InfoPath 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365infopath2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365infopath2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2013", + "displayName": "Microsoft Office 365 Lync 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2016", + "displayName": "Microsoft Office 365 Lync 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2013", + "displayName": "Microsoft Office 365 OneNote 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2016", + "displayName": "Microsoft Office 365 OneNote 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2013", + "displayName": "Microsoft Office 365 Outlook 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2016", + "displayName": "Microsoft Office 365 Outlook 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2013", + "displayName": "Microsoft Office 365 PowerPoint 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2016", + "displayName": "Microsoft Office 365 PowerPoint 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2013", + "displayName": "Microsoft Office 365 Project 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2016", + "displayName": "Microsoft Office 365 Project 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2013", + "displayName": "Microsoft Office 365 Publisher 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2016", + "displayName": "Microsoft Office 365 Publisher 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365sharepointdesigner2013", + "displayName": "Microsoft Office 365 SharePoint Designer 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365sharepointdesigner2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365sharepointdesigner2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2013", + "displayName": "Microsoft Office 365 Visio 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2016", + "displayName": "Microsoft Office 365 Visio 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2013", + "displayName": "Microsoft Office 365 Word 2013", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2016", + "displayName": "Microsoft Office 365 Word 2016", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_music", + "displayName": "Music", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_music_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_music_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_news", + "displayName": "News", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_news_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_news_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_notepad", + "displayName": "Notepad", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_notepad_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_notepad_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_reader", + "displayName": "Reader", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_reader_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_reader_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_repositorytimeout", + "displayName": "Synchronization timeout", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_repositorytimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_repositorytimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_repositorytimeout_repositorytimeout", + "displayName": "Synchronization timeout (in milliseconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingsstoragepath", + "displayName": "Settings storage path", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingsstoragepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingsstoragepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingsstoragepath_settingsstoragepath", + "displayName": "Settings storage path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingstemplatecatalogpath", + "displayName": "Settings template catalog path", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingstemplatecatalogpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingstemplatecatalogpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingstemplatecatalogpath_overridemstemplates", + "displayName": "Replace the default Microsoft templates (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingstemplatecatalogpath_overridemstemplates_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingstemplatecatalogpath_overridemstemplates_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_settingstemplatecatalogpath_settingstemplatecatalogpath", + "displayName": "Settings template catalog path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_sports", + "displayName": "Sports", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_sports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_sports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncenabled", + "displayName": "Use User Experience Virtualization (UE-V)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetwork", + "displayName": "Sync settings over metered connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetworkwhenroaming", + "displayName": "Sync settings over metered connections even when roaming", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetworkwhenroaming_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetworkwhenroaming_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncproviderpingenabled", + "displayName": "Ping the settings storage location before sync", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncproviderpingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncproviderpingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncunlistedwindows8apps", + "displayName": "Sync Unlisted Windows Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncunlistedwindows8apps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_syncunlistedwindows8apps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_travel", + "displayName": "Travel", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_travel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_travel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_trayiconenabled", + "displayName": "Tray Icon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_trayiconenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_trayiconenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_video", + "displayName": "Video", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_video_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_video_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_weather", + "displayName": "Weather", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_weather_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_weather_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_wordpad", + "displayName": "WordPad", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_wordpad_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userexperiencevirtualization_wordpad_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_cleanupprofiles", + "displayName": "Delete user profiles older than a specified number of days on system restart", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_cleanupprofiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_cleanupprofiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_cleanupprofiles_cleanupprofiles_days", + "displayName": "Delete user profiles older than (days) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_dontforceunloadhive", + "displayName": "Do not forcefully unload the users registry at user logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_dontforceunloadhive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_dontforceunloadhive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_leaveappmgmtdata", + "displayName": "Leave Windows Installer and Group Policy Software Installation Data", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_leaveappmgmtdata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_leaveappmgmtdata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_profileerroraction", + "displayName": "Do not log users on with temporary profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_profileerroraction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_profileerroraction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_slowlinktimeout", + "displayName": "Control slow network connection timeout for user profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_slowlinktimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_slowlinktimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_slowlinktimeout_slowlinkwaitinterval", + "displayName": "Time (milliseconds) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_slowlinktimeout_transferrateop", + "displayName": "Connection speed (Kbps): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home", + "displayName": "Set user home folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter", + "displayName": "Drive letter (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_g:", + "displayName": "G:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_h:", + "displayName": "H:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_i:", + "displayName": "I:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_j:", + "displayName": "J:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_k:", + "displayName": "K:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_l:", + "displayName": "L:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_m:", + "displayName": "M:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_n:", + "displayName": "N:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_o:", + "displayName": "O:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_p:", + "displayName": "P:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_q:", + "displayName": "Q:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_r:", + "displayName": "R:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_s:", + "displayName": "S:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_t:", + "displayName": "T:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_u:", + "displayName": "U:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_v:", + "displayName": "V:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_w:", + "displayName": "W:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_x:", + "displayName": "X:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_y:", + "displayName": "Y:", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_drive_letter_z:", + "displayName": "Z:", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_home_path", + "displayName": "Path: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_user_home_location", + "displayName": "Location: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_user_home_location_1", + "displayName": "On the network", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_user_home_user_home_location_0", + "displayName": "On the local computer", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_userinfoaccessaction", + "displayName": "User management of sharing user name, account picture, and domain information with apps (not desktop apps)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_userinfoaccessaction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_userinfoaccessaction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_userinfoaccessaction_allowuserinfoaccess", + "displayName": "Action: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_userinfoaccessaction_allowuserinfoaccess_1", + "displayName": "Always on", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_userprofiles_userinfoaccessaction_allowuserinfoaccess_2", + "displayName": "Always off", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config", + "displayName": "Global Configuration Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_announceflags", + "displayName": "AnnounceFlags (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_chaindisable", + "displayName": "ChainDisable (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_chainentrytimeout", + "displayName": "ChainEntryTimeout (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_chainloggingrate", + "displayName": "ChainLoggingRate (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_chainmaxentries", + "displayName": "ChainMaxEntries (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_chainmaxhostentries", + "displayName": "ChainMaxHostEntries (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_clockadjustmentauditlimit", + "displayName": "ClockAdjustmentAuditLimit (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_clockholdoverperiod", + "displayName": "ClockHoldoverPeriod (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_eventlogflags", + "displayName": "EventLogFlags (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_frequencycorrectrate", + "displayName": "FrequencyCorrectRate (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_holdperiod", + "displayName": "HoldPeriod (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_largephaseoffset", + "displayName": "LargePhaseOffset (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_localclockdispersion", + "displayName": "LocalClockDispersion (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_maxallowedphaseoffset", + "displayName": "MaxAllowedPhaseOffset (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_maxnegphasecorrection", + "displayName": "MaxNegPhaseCorrection (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_maxpollinterval", + "displayName": "MaxPollInterval (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_maxposphasecorrection", + "displayName": "MaxPosPhaseCorrection (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_minpollinterval", + "displayName": "MinPollInterval (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_phasecorrectrate", + "displayName": "PhaseCorrectRate (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_polladjustfactor", + "displayName": "PollAdjustFactor (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_requiresecuretimesyncrequests", + "displayName": "RequireSecureTimeSyncRequests (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_spikewatchperiod", + "displayName": "SpikeWatchPeriod (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_updateinterval", + "displayName": "UpdateInterval (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_config_w32time_utilizessltimedata", + "displayName": "UtilizeSslTimeData (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient", + "displayName": "Configure Windows NTP Client", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_crosssitesyncflags", + "displayName": "CrossSiteSyncFlags (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_ntpclienteventlogflags", + "displayName": "EventLogFlags (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_ntpserver", + "displayName": "NtpServer (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_resolvepeerbackoffmaxtimes", + "displayName": "ResolvePeerBackoffMaxTimes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_resolvepeerbackoffminutes", + "displayName": "ResolvePeerBackoffMinutes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_specialpollinterval", + "displayName": "SpecialPollInterval (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_type", + "displayName": "Type (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_type_nosync", + "displayName": "NoSync", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_type_ntp", + "displayName": "NTP", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_type_nt5ds", + "displayName": "NT5DS", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_configure_ntpclient_w32time_type_allsync", + "displayName": "AllSync", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_enable_ntpclient", + "displayName": "Enable Windows NTP Client", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_enable_ntpclient_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_enable_ntpclient_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_enable_ntpserver", + "displayName": "Enable Windows NTP Server", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_enable_ntpserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_w32time_w32time_policy_enable_ntpserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_disablepowermanagement", + "displayName": "Disable power management in connected standby mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_disablepowermanagement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_disablepowermanagement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_enablesoftdisconnect", + "displayName": "Enable Windows to soft-disconnect a computer from a network", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_enablesoftdisconnect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_enablesoftdisconnect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_minimizeconnections", + "displayName": "Minimize the number of simultaneous connections to the Internet or a Windows Domain", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_minimizeconnections_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_minimizeconnections_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_minimizeconnections_wcm_minimizeconnections_options", + "displayName": "Minimize Policy Options (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_minimizeconnections_wcm_minimizeconnections_options_0", + "displayName": "0 = Allow simultaneous connections", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_minimizeconnections_wcm_minimizeconnections_options_1", + "displayName": "1 = Minimize simultaneous connections", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_minimizeconnections_wcm_minimizeconnections_options_2", + "displayName": "2 = Stay connected to cellular", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wcm_wcm_minimizeconnections_wcm_minimizeconnections_options_3", + "displayName": "3 = Prevent Wi-Fi when on Ethernet", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenariodatasizelimitpolicy", + "displayName": "Diagnostics: Configure scenario retention", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenariodatasizelimitpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenariodatasizelimitpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenariodatasizelimitpolicy_wdidpsscenariodatasizelimitpolicyvalue", + "displayName": "Scenario data size limit (in MB) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenarioexecutionpolicy", + "displayName": "Diagnostics: Configure scenario execution level", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenarioexecutionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenarioexecutionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenarioexecutionpolicy_wdidpsscenarioexecutionpolicylevel", + "displayName": "Scenario Execution Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenarioexecutionpolicy_wdidpsscenarioexecutionpolicylevel_1", + "displayName": "Detection and Troubleshooting Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wdi_wdidpsscenarioexecutionpolicy_wdidpsscenarioexecutionpolicylevel_2", + "displayName": "Detection, Troubleshooting and Resolution", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wincal_turnoffwincal_2", + "displayName": "Turn off Windows Calendar", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wincal_turnoffwincal_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wincal_turnoffwincal_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowscolorsystem_prohibitchanginginstalledprofilelist_2", + "displayName": "Prohibit installing or uninstalling color profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowscolorsystem_prohibitchanginginstalledprofilelist_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowscolorsystem_prohibitchanginginstalledprofilelist_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_disablewcnui_2", + "displayName": "Prohibit access of the Windows Connect Now wizards", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_disablewcnui_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_disablewcnui_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar", + "displayName": "Configuration of wireless settings using Windows Connect Now", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableflashconfig", + "displayName": "Turn off ability to configure using a USB Flash Drive (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableflashconfig_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableflashconfig_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableinband802dot11", + "displayName": "Turn off ability to configure using WCN over In-band 802.11 WLAN (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableinband802dot11_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableinband802dot11_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableupnp", + "displayName": "Turn off ability to configure using WCN over Ethernet (UPnP) (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableupnp_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disableupnp_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disablewpd", + "displayName": "Turn off ability to configure Windows Portable Device (WPD) (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disablewpd_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_disablewpd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_enableregistrar_maxwcndevicenumber", + "displayName": "Maximum number of WCN devices allowed: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_higher_precedence_registrar", + "displayName": "Higher precedence medium for devices discovered by multiple media: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_higher_precedence_registrar_1", + "displayName": "WCN over Ethernet (UPnP)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsconnectnow_wcn_enableregistrar_wcn_higher_precedence_registrar_2", + "displayName": "WCN over In-band 802.11 WLAN", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_checksamesourceandtargetforfranddfs", + "displayName": "Verify old and new Folder Redirection targets point to the same share before redirecting", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_checksamesourceandtargetforfranddfs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_checksamesourceandtargetforfranddfs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_defaultlibrarieslocation", + "displayName": "Location where all default Library definition files for users/machines reside.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_defaultlibrarieslocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_defaultlibrarieslocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_defaultlibrarieslocation_defaultlibrarieslocation", + "displayName": "Default Libraries definition location (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_disablebinddirectlytopropertysetstorage", + "displayName": "Disable binding directly to IPropertySetStorage without intermediate layers.", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_disablebinddirectlytopropertysetstorage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_disablebinddirectlytopropertysetstorage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enableshellshortcuticonremotepath", + "displayName": "Allow the use of remote paths in file shortcut icons", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enableshellshortcuticonremotepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enableshellshortcuticonremotepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enablesmartscreen", + "displayName": "Configure Windows Defender SmartScreen", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enablesmartscreen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enablesmartscreen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enablesmartscreen_enablesmartscreendropdown", + "displayName": "Pick one of the following settings: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enablesmartscreen_enablesmartscreendropdown_block", + "displayName": "Warn and prevent bypass", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_enablesmartscreen_enablesmartscreendropdown_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized", + "displayName": "Start File Explorer with ribbon minimized", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown", + "displayName": "Pick one of the following settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown_1", + "displayName": "Always open new File Explorer windows with the ribbon minimized.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown_2", + "displayName": "Never open new File Explorer windows with the ribbon minimized.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown_3", + "displayName": "Minimize the ribbon when File Explorer is opened the first time.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown_4", + "displayName": "Display the full ribbon when File Explorer is opened the first time.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internet", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internetlockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internetlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internetlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranet", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranetlockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranetlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranetlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachine", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachinelockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachinelockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachinelockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restricted", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restricted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restricted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restrictedlockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restrictedlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restrictedlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trusted", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trusted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trusted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trustedlockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trustedlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trustedlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internet", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internetlockdown", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internetlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internetlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranet", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranetlockdown", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranetlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranetlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachine", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachinelockdown", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachinelockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachinelockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restricted", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restricted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restricted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restrictedlockdown", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restrictedlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restrictedlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trusted", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trusted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trusted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trustedlockdown", + "displayName": "Allow OpenSearch queries in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trustedlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trustedlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_nonewappalert", + "displayName": "Do not show the 'new application installed' notification", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_nonewappalert_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_nonewappalert_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_nostrcmplogical", + "displayName": "Turn off numerical sorting in File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_nostrcmplogical_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_nostrcmplogical_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_shellprotocolprotectedmodetitle_2", + "displayName": "Turn off shell protocol protected mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_shellprotocolprotectedmodetitle_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_shellprotocolprotectedmodetitle_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_showhibernateoption", + "displayName": "Show hibernate in the power options menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_showhibernateoption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_showhibernateoption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_showsleepoption", + "displayName": "Show sleep in the power options menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_showsleepoption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsexplorer_showsleepoption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpdllcachedir", + "displayName": "Specify Windows File Protection cache location (Windows Insiders only)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpdllcachedir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpdllcachedir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpdllcachedir_wfpdllcachedirbox", + "displayName": "Cache file path: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpquota", + "displayName": "Limit Windows File Protection cache size (Windows Insiders only)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpquota_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpquota_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpquota_wfpquota_size", + "displayName": "Cache size (in MB) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpscan", + "displayName": "Set Windows File Protection scanning (Windows Insiders only)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpscan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpscan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpscan_wfpscanlist", + "displayName": "Scanning frequency: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpscan_wfpscanlist_0", + "displayName": "Do not scan during startup", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpscan_wfpscanlist_1", + "displayName": "Scan during startup", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpshowprogress", + "displayName": "Hide the file scan progress window (Windows Insiders only)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpshowprogress_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsfileprotection_wfpshowprogress_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediadrm_disableonline", + "displayName": "Prevent Windows Media DRM Internet Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsmediadrm_disableonline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediadrm_disableonline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_disableautoupdate", + "displayName": "Prevent Automatic Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_disableautoupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_disableautoupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_disablesetupfirstuseconfiguration", + "displayName": "Do Not Show First Use Dialog Boxes", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_disablesetupfirstuseconfiguration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_disablesetupfirstuseconfiguration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_dontuseframeinterpolation", + "displayName": "Prevent Video Smoothing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_dontuseframeinterpolation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_dontuseframeinterpolation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventlibrarysharing", + "displayName": "Prevent Media Sharing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventlibrarysharing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventlibrarysharing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventquicklaunchshortcut", + "displayName": "Prevent Quick Launch Toolbar Shortcut Creation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventquicklaunchshortcut_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventquicklaunchshortcut_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventwmpdesktopshortcut", + "displayName": "Prevent Desktop Shortcut Creation", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventwmpdesktopshortcut_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsmediaplayer_preventwmpdesktopshortcut_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsremotemanagement_disallowkerberos_1", + "displayName": "Disallow Kerberos authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsremotemanagement_disallowkerberos_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsremotemanagement_disallowkerberos_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsremotemanagement_disallowkerberos_2", + "displayName": "Disallow Kerberos authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsremotemanagement_disallowkerberos_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsremotemanagement_disallowkerberos_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_disableautodownloadwin8", + "displayName": "Turn off Automatic Download of updates on Win8 machines", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_disableautodownloadwin8_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_disableautodownloadwin8_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_disableosupgrade_2", + "displayName": "Turn off the offer to update to the latest version of Windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_disableosupgrade_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_disableosupgrade_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_removewindowsstore_2", + "displayName": "Turn off the Store application", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_removewindowsstore_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_windowsstore_removewindowsstore_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wininit_disablenamedpipeshutdownpolicydescription", + "displayName": "Turn off legacy remote shutdown interface", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wininit_disablenamedpipeshutdownpolicydescription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wininit_disablenamedpipeshutdownpolicydescription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wininit_hiberboot", + "displayName": "Require use of fast startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wininit_hiberboot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wininit_hiberboot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wininit_shutdowntimeouthungsessionsdescription", + "displayName": "Timeout for hung logon sessions during shutdown", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wininit_shutdowntimeouthungsessionsdescription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wininit_shutdowntimeouthungsessionsdescription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wininit_shutdowntimeouthungsessionsdescription_shutdownsessiontimeout_time", + "displayName": "Hung session timeout in Minutes: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_displaylastlogoninfodescription", + "displayName": "Display information about previous logons during user logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_winlogon_displaylastlogoninfodescription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_displaylastlogoninfodescription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_reportcachedlogonpolicydescription", + "displayName": "Report when logon server was not available during user logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_winlogon_reportcachedlogonpolicydescription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_reportcachedlogonpolicydescription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_softwaresasgeneration", + "displayName": "Disable or enable software Secure Attention Sequence", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_winlogon_softwaresasgeneration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_softwaresasgeneration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_softwaresasgeneration_softwaresasgenerationdescription", + "displayName": "Set which software is allowed to generate the Secure Attention Sequence (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_winlogon_softwaresasgeneration_softwaresasgenerationdescription_0", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_softwaresasgeneration_softwaresasgenerationdescription_1", + "displayName": "Services", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_softwaresasgeneration_softwaresasgenerationdescription_2", + "displayName": "Ease of Access applications", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_winlogon_softwaresasgeneration_softwaresasgenerationdescription_3", + "displayName": "Services and Ease of Access applications", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_winsrv_allowblockingappsatshutdown", + "displayName": "Turn off automatic termination of applications that block or cancel shutdown", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_winsrv_allowblockingappsatshutdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_winsrv_allowblockingappsatshutdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setcost", + "displayName": "Set Cost", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setcost_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setcost_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setcost_cost_dropdownlist", + "displayName": "Please select a wlan connection cost value to set: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setcost_cost_dropdownlist_1", + "displayName": "Unrestricted", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setcost_cost_dropdownlist_2", + "displayName": "Fixed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setcost_cost_dropdownlist_3", + "displayName": "Variable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setpinenforced", + "displayName": "Require PIN pairing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setpinenforced_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setpinenforced_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setpinpreferred", + "displayName": "Prefer PIN pairing", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setpinpreferred_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_wlansvc_setpinpreferred_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_admx_workfoldersclient_pol_machineenableworkfolders", + "displayName": "Force automatic setup for all users", + "options": [ + { + "id": "device_vendor_msft_policy_config_admx_workfoldersclient_pol_machineenableworkfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_admx_workfoldersclient_pol_machineenableworkfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationcontrol_built_in_controls", + "displayName": "App Control for Business Built In Controls", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_applicationcontrol_built_in_controls_enable_app_control", + "displayName": "Enable App Control for Business policy to trust Windows components and Store apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationcontrol_built_in_controls_enable_app_control_0", + "displayName": "Enforce", + "description": "Enforce" + }, + { + "id": "device_vendor_msft_policy_config_applicationcontrol_built_in_controls_enable_app_control_1", + "displayName": "Audit only", + "description": "Audit only" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationcontrol_built_in_controls_trust_apps", + "displayName": "Select additional rules for trusting apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationcontrol_built_in_controls_trust_apps_0", + "displayName": "Trust apps with good reputation", + "description": "Trust app with good reputation" + }, + { + "id": "device_vendor_msft_policy_config_applicationcontrol_built_in_controls_trust_apps_1", + "displayName": "Trust apps from managed installers", + "description": "Trust apps from managed installers" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationcontrol_policies_{policyguid}_policiesoptions", + "displayName": "Configuration settings format", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationcontrol_configure_xml_selected", + "displayName": "Enter xml data", + "description": "Enter xml data" + }, + { + "id": "device_vendor_msft_policy_config_applicationcontrol_built_in_controls_selected", + "displayName": "Use built-in controls", + "description": "Use built-in controls" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationcontrol_policies_{policyguid}_xml", + "displayName": "App Control for Business policy", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_applicationdefaults_defaultassociationsconfiguration", + "displayName": "Default Associations Configuration", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_applicationdefaults_enableappurihandlers", + "displayName": "Enable App Uri Handlers", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationdefaults_enableappurihandlers_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_applicationdefaults_enableappurihandlers_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowalltrustedapps", + "displayName": "Allow All Trusted Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowalltrustedapps_0", + "displayName": "Explicit deny.", + "description": "Explicit deny." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowalltrustedapps_1", + "displayName": "Explicit allow unlock.", + "description": "Explicit allow unlock." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowalltrustedapps_65535", + "displayName": "Not configured.", + "description": "Not configured." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowappstoreautoupdate", + "displayName": "Allow apps from the Microsoft app store to auto update", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowappstoreautoupdate_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowappstoreautoupdate_1", + "displayName": "Allowed.", + "description": "Allowed." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowappstoreautoupdate_2", + "displayName": "Not configured.", + "description": "Not configured." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowdeveloperunlock", + "displayName": "Allow Developer Unlock", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowdeveloperunlock_0", + "displayName": "Explicit deny.", + "description": "Explicit deny." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowdeveloperunlock_1", + "displayName": "Explicit allow unlock.", + "description": "Explicit allow unlock." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowdeveloperunlock_65535", + "displayName": "Not configured.", + "description": "Not configured." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowgamedvr", + "displayName": "Allow Game DVR", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowgamedvr_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowgamedvr_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowshareduserappdata", + "displayName": "Allow Shared User App Data", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowshareduserappdata_0", + "displayName": "Block", + "description": "Prevented/not allowed, but Microsoft Edge downloads book files to a per-user folder for each user." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_allowshareduserappdata_1", + "displayName": "Allow", + "description": "Allowed. Microsoft Edge downloads book files into a shared folder. For this policy to work correctly, you must also enable the Allow a Windows app to share application data between users group policy. Also, the users must be signed in with a school or work account." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_blocknonadminuserinstall", + "displayName": "Block Non Admin User Install", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_blocknonadminuserinstall_0", + "displayName": "Block", + "description": "Disabled. All users will be able to initiate installation of Windows app packages." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_blocknonadminuserinstall_1", + "displayName": "Allow", + "description": "Enabled. Non-administrator users will not be able to initiate installation of Windows app packages." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_disablestoreoriginatedapps", + "displayName": "Disable Store Originated Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_disablestoreoriginatedapps_0", + "displayName": "Disabled", + "description": "Enable launch of apps." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_disablestoreoriginatedapps_1", + "displayName": "Enabled", + "description": "Disable launch of apps." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_launchappafterlogon", + "displayName": "Launch App After Log On", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_msiallowusercontroloverinstall", + "displayName": "MSI Allow User Control Over Install", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_msiallowusercontroloverinstall_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_msiallowusercontroloverinstall_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_msialwaysinstallwithelevatedprivileges", + "displayName": "MSI Always Install With Elevated Privileges", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_msialwaysinstallwithelevatedprivileges_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_msialwaysinstallwithelevatedprivileges_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_requireprivatestoreonly", + "displayName": "Require Private Store Only", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_requireprivatestoreonly_0", + "displayName": "Allow both public and Private store.", + "description": "Allow both public and Private store." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_requireprivatestoreonly_1", + "displayName": "Only Private store is enabled.", + "description": "Only Private store is enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_restrictappdatatosystemvolume", + "displayName": "Restrict App Data To System Volume", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_restrictappdatatosystemvolume_0", + "displayName": "Disabled", + "description": "Not restricted." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_restrictappdatatosystemvolume_1", + "displayName": "Enabled", + "description": "Restricted." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_restrictapptosystemvolume", + "displayName": "Restrict App To System Volume", + "options": [ + { + "id": "device_vendor_msft_policy_config_applicationmanagement_restrictapptosystemvolume_0", + "displayName": "Disabled", + "description": "Not restricted." + }, + { + "id": "device_vendor_msft_policy_config_applicationmanagement_restrictapptosystemvolume_1", + "displayName": "Enabled", + "description": "Restricted." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appruntime_allowmicrosoftaccountstobeoptional", + "displayName": "Allow Microsoft accounts to be optional", + "options": [ + { + "id": "device_vendor_msft_policy_config_appruntime_allowmicrosoftaccountstobeoptional_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appruntime_allowmicrosoftaccountstobeoptional_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowappvclient", + "displayName": "Enable App-V Client", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowappvclient_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowappvclient_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowdynamicvirtualization", + "displayName": "Enable Dynamic Virtualization", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowdynamicvirtualization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowdynamicvirtualization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpackagecleanup", + "displayName": "Enable automatic cleanup of unused appv packages", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpackagecleanup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpackagecleanup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpackagescripts", + "displayName": "Enable Package Scripts", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpackagescripts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpackagescripts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpublishingrefreshux", + "displayName": "Enable Publishing Refresh UX", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpublishingrefreshux_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowpublishingrefreshux_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver", + "displayName": "Reporting Server", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver_data_block_size", + "displayName": "Data Block Size", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver_data_cache_limit", + "displayName": "Data Cache Limit", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver_interval", + "displayName": "Repeat reporting for every (days)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver_random_delay", + "displayName": "Delay reporting for the random minutes", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver_reporting_server_url_prompt", + "displayName": "Reporting Server URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowreportingserver_start_time", + "displayName": "Reporting Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowroamingfileexclusions", + "displayName": "Roaming File Exclusions", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowroamingfileexclusions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowroamingfileexclusions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowroamingfileexclusions_integration_roaming_file_exclusions_prompt", + "displayName": "Roaming Registry Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowroamingregistryexclusions", + "displayName": "Roaming Registry Exclusions", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowroamingregistryexclusions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowroamingregistryexclusions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowroamingregistryexclusions_integration_roaming_registry_exclusions_prompt", + "displayName": "Roaming File Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowstreamingautoload", + "displayName": "Specify what to load in background (aka AutoLoad)", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowstreamingautoload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowstreamingautoload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowstreamingautoload_steaming_autoload_options", + "displayName": "Autoload Options", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowstreamingautoload_steaming_autoload_options_0", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowstreamingautoload_steaming_autoload_options_1", + "displayName": "Previously Used", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_allowstreamingautoload_steaming_autoload_options_2", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_clientcoexistenceallowmigrationmode", + "displayName": "Enable Migration Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_clientcoexistenceallowmigrationmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_clientcoexistenceallowmigrationmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_integrationallowrootglobal", + "displayName": "Integration Root User", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_integrationallowrootglobal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_integrationallowrootglobal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_integrationallowrootglobal_integration_root_user_prompt", + "displayName": "Integration Root User", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_integrationallowrootuser", + "displayName": "Integration Root Global", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_integrationallowrootuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_integrationallowrootuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_integrationallowrootuser_integration_root_global_prompt", + "displayName": "Integration Root Global", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1", + "displayName": "Publishing Server 1 Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_publishing_refresh_options", + "displayName": "Global Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_refresh_interval_prompt", + "displayName": "Global Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_refresh_onlogon_options", + "displayName": "Global Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_refresh_unit_options", + "displayName": "Global Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_global_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_publishing_server_url_prompt", + "displayName": "Publishing Server URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_publishing_server1_name_prompt", + "displayName": "Publishing Server Display Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_publishing_refresh_options", + "displayName": "User Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_refresh_interval_prompt", + "displayName": "User Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_refresh_onlogon_options", + "displayName": "User Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_refresh_unit_options", + "displayName": "User Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver1_user_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2", + "displayName": "Publishing Server 2 Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_publishing_refresh_options", + "displayName": "Global Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_refresh_interval_prompt", + "displayName": "Global Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_refresh_onlogon_options", + "displayName": "Global Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_refresh_unit_options", + "displayName": "Global Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_global_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_publishing_server_url_prompt", + "displayName": "Publishing Server URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_publishing_server2_name_prompt", + "displayName": "Publishing Server Display Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_publishing_refresh_options", + "displayName": "User Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_refresh_interval_prompt", + "displayName": "User Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_refresh_onlogon_options", + "displayName": "User Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_refresh_unit_options", + "displayName": "User Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver2_user_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3", + "displayName": "Publishing Server 3 Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_publishing_refresh_options", + "displayName": "Global Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_refresh_interval_prompt", + "displayName": "Global Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_refresh_onlogon_options", + "displayName": "Global Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_refresh_unit_options", + "displayName": "Global Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_global_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_publishing_server_url_prompt", + "displayName": "Publishing Server URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_publishing_server3_name_prompt", + "displayName": "Publishing Server Display Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_publishing_refresh_options", + "displayName": "User Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_refresh_interval_prompt", + "displayName": "User Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_refresh_onlogon_options", + "displayName": "User Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_refresh_unit_options", + "displayName": "User Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver3_user_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4", + "displayName": "Publishing Server 4 Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_publishing_refresh_options", + "displayName": "Global Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_refresh_interval_prompt", + "displayName": "Global Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_refresh_onlogon_options", + "displayName": "Global Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_refresh_unit_options", + "displayName": "Global Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_global_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_publishing_server_url_prompt", + "displayName": "Publishing Server URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_publishing_server4_name_prompt", + "displayName": "Publishing Server Display Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_publishing_refresh_options", + "displayName": "User Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_refresh_interval_prompt", + "displayName": "User Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_refresh_onlogon_options", + "displayName": "User Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_refresh_unit_options", + "displayName": "User Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver4_user_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5", + "displayName": "Publishing Server 5 Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_publishing_refresh_options", + "displayName": "Global Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_refresh_interval_prompt", + "displayName": "Global Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_refresh_onlogon_options", + "displayName": "Global Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_refresh_unit_options", + "displayName": "Global Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_global_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_publishing_server_url_prompt", + "displayName": "Publishing Server URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_publishing_server5_name_prompt", + "displayName": "Publishing Server Display Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_publishing_refresh_options", + "displayName": "User Publishing Refresh", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_publishing_refresh_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_publishing_refresh_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_refresh_interval_prompt", + "displayName": "User Publishing Refresh Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_refresh_onlogon_options", + "displayName": "User Publishing Refresh On Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_refresh_onlogon_options_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_refresh_onlogon_options_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_refresh_unit_options", + "displayName": "User Publishing Refresh Interval Unit", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_refresh_unit_options_0", + "displayName": "Hour", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_publishingallowserver5_user_refresh_unit_options_1", + "displayName": "Day", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowcertificatefilterforclient_ssl", + "displayName": "Certificate Filter For Client SSL", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowcertificatefilterforclient_ssl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowcertificatefilterforclient_ssl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowcertificatefilterforclient_ssl_streaming_certificate_filter_for_client_ssl_prompt", + "displayName": "Certificate Filter For Client SSL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowhighcostlaunch", + "displayName": "Allow First Time Application Launches if on a High Cost Windows 8 Metered Connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowhighcostlaunch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowhighcostlaunch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowlocationprovider", + "displayName": "Location Provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowlocationprovider_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowlocationprovider_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowlocationprovider_streaming_location_provider_prompt", + "displayName": "Location Provider", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowpackageinstallationroot", + "displayName": "Package Installation Root", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowpackageinstallationroot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowpackageinstallationroot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowpackageinstallationroot_streaming_package_installation_root_prompt", + "displayName": "Package Installation Root", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowpackagesourceroot", + "displayName": "Package Source Root", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowpackagesourceroot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowpackagesourceroot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowpackagesourceroot_package_source_root_prompt", + "displayName": "Package Source Root", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowreestablishmentinterval", + "displayName": "Reestablishment Interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowreestablishmentinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowreestablishmentinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowreestablishmentinterval_streaming_reestablishment_interval_prompt", + "displayName": "Reestablishment Interval:", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowreestablishmentretries", + "displayName": "Reestablishment Retries", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowreestablishmentretries_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowreestablishmentretries_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingallowreestablishmentretries_streaming_reestablishment_retries_prompt", + "displayName": "Reestablishment Retries:", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingsharedcontentstoremode", + "displayName": "Shared Content Store (SCS) mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingsharedcontentstoremode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingsharedcontentstoremode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingsupportbranchcache", + "displayName": "Enable Support for BranchCache", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingsupportbranchcache_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingsupportbranchcache_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingverifycertificaterevocationlist", + "displayName": "Verify certificate revocation list", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingverifycertificaterevocationlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_streamingverifycertificaterevocationlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_virtualcomponentsallowlist", + "displayName": "Virtual Component Process Allow List", + "options": [ + { + "id": "device_vendor_msft_policy_config_appvirtualization_virtualcomponentsallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_virtualcomponentsallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_appvirtualization_virtualcomponentsallowlist_virtualization_jitvallowlist_prompt", + "displayName": "Virtual Component Process Allow List", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditcredentialvalidation", + "displayName": "Account Logon Audit Credential Validation", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditcredentialvalidation_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditcredentialvalidation_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditcredentialvalidation_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditcredentialvalidation_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosauthenticationservice", + "displayName": "Account Logon Audit Kerberos Authentication Service", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosauthenticationservice_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosauthenticationservice_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosauthenticationservice_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosauthenticationservice_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosserviceticketoperations", + "displayName": "Account Logon Audit Kerberos Service Ticket Operations", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosserviceticketoperations_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosserviceticketoperations_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosserviceticketoperations_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditkerberosserviceticketoperations_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditotheraccountlogonevents", + "displayName": "Account Logon Audit Other Account Logon Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditotheraccountlogonevents_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditotheraccountlogonevents_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditotheraccountlogonevents_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogon_auditotheraccountlogonevents_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditaccountlockout", + "displayName": "Account Logon Logoff Audit Account Lockout", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditaccountlockout_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditaccountlockout_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditaccountlockout_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditaccountlockout_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditgroupmembership", + "displayName": "Account Logon Logoff Audit Group Membership", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditgroupmembership_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditgroupmembership_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditgroupmembership_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditgroupmembership_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecextendedmode", + "displayName": "Account Logon Logoff Audit I Psec Extended Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecextendedmode_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecextendedmode_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecextendedmode_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecextendedmode_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecmainmode", + "displayName": "Account Logon Logoff Audit I Psec Main Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecmainmode_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecmainmode_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecmainmode_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecmainmode_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecquickmode", + "displayName": "Account Logon Logoff Audit I Psec Quick Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecquickmode_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecquickmode_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecquickmode_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditipsecquickmode_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogoff", + "displayName": "Account Logon Logoff Audit Logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogoff_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogoff_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogoff_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogoff_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogon", + "displayName": "Account Logon Logoff Audit Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogon_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogon_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogon_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditlogon_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditnetworkpolicyserver", + "displayName": "Account Logon Logoff Audit Network Policy Server", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditnetworkpolicyserver_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditnetworkpolicyserver_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditnetworkpolicyserver_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditnetworkpolicyserver_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditotherlogonlogoffevents", + "displayName": "Audit Other Logon Logoff Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditotherlogonlogoffevents_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditotherlogonlogoffevents_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditotherlogonlogoffevents_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditotherlogonlogoffevents_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditspeciallogon", + "displayName": "Audit Special Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditspeciallogon_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditspeciallogon_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditspeciallogon_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_auditspeciallogon_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_audituserdeviceclaims", + "displayName": "Account Logon Logoff Audit User Device Claims", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_audituserdeviceclaims_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_audituserdeviceclaims_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_audituserdeviceclaims_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountlogonlogoff_audituserdeviceclaims_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditapplicationgroupmanagement", + "displayName": "Account Management Audit Application Group Management", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditapplicationgroupmanagement_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditapplicationgroupmanagement_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditapplicationgroupmanagement_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditapplicationgroupmanagement_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditcomputeraccountmanagement", + "displayName": "Account Management Audit Computer Account Management", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditcomputeraccountmanagement_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditcomputeraccountmanagement_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditcomputeraccountmanagement_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditcomputeraccountmanagement_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditdistributiongroupmanagement", + "displayName": "Account Management Audit Distribution Group Management", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditdistributiongroupmanagement_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditdistributiongroupmanagement_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditdistributiongroupmanagement_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditdistributiongroupmanagement_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditotheraccountmanagementevents", + "displayName": "Account Management Audit Other Account Management Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditotheraccountmanagementevents_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditotheraccountmanagementevents_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditotheraccountmanagementevents_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditotheraccountmanagementevents_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditsecuritygroupmanagement", + "displayName": "Audit Security Group Management", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditsecuritygroupmanagement_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditsecuritygroupmanagement_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditsecuritygroupmanagement_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_auditsecuritygroupmanagement_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_audituseraccountmanagement", + "displayName": "Audit User Account Management", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_audituseraccountmanagement_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_audituseraccountmanagement_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_audituseraccountmanagement_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_accountmanagement_audituseraccountmanagement_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditdpapiactivity", + "displayName": "Detailed Tracking Audit DPAPI Activity", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditdpapiactivity_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditdpapiactivity_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditdpapiactivity_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditdpapiactivity_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditpnpactivity", + "displayName": "Detailed Tracking Audit PNP Activity", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditpnpactivity_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditpnpactivity_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditpnpactivity_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditpnpactivity_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesscreation", + "displayName": "Detailed Tracking Audit Process Creation", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesscreation_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesscreation_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesscreation_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesscreation_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesstermination", + "displayName": "Detailed Tracking Audit Process Termination", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesstermination_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesstermination_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesstermination_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditprocesstermination_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditrpcevents", + "displayName": "Detailed Tracking Audit RPC Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditrpcevents_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditrpcevents_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditrpcevents_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_auditrpcevents_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_audittokenrightadjusted", + "displayName": "Detailed Tracking Audit Token Right Adjusted", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_audittokenrightadjusted_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_audittokenrightadjusted_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_audittokenrightadjusted_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_detailedtracking_audittokenrightadjusted_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdetaileddirectoryservicereplication", + "displayName": "DS Access Audit Detailed Directory Service Replication", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdetaileddirectoryservicereplication_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdetaileddirectoryservicereplication_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdetaileddirectoryservicereplication_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdetaileddirectoryservicereplication_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryserviceaccess", + "displayName": "DS Access Audit Directory Service Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryserviceaccess_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryserviceaccess_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryserviceaccess_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryserviceaccess_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicechanges", + "displayName": "Audit Directory Service Changes", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicechanges_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicechanges_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicechanges_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicechanges_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicereplication", + "displayName": "DS Access Audit Directory Service Replication", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicereplication_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicereplication_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicereplication_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_dsaccess_auditdirectoryservicereplication_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditapplicationgenerated", + "displayName": "Object Access Audit Application Generated", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditapplicationgenerated_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditapplicationgenerated_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditapplicationgenerated_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditapplicationgenerated_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcentralaccesspolicystaging", + "displayName": "Object Access Audit Central Access Policy Staging", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcentralaccesspolicystaging_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcentralaccesspolicystaging_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcentralaccesspolicystaging_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcentralaccesspolicystaging_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcertificationservices", + "displayName": "Object Access Audit Certification Services", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcertificationservices_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcertificationservices_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcertificationservices_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditcertificationservices_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditdetailedfileshare", + "displayName": "Object Access Audit Detailed File Share", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditdetailedfileshare_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditdetailedfileshare_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditdetailedfileshare_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditdetailedfileshare_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfileshare", + "displayName": "Audit File Share Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfileshare_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfileshare_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfileshare_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfileshare_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilesystem", + "displayName": "Object Access Audit File System", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilesystem_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilesystem_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilesystem_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilesystem_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformconnection", + "displayName": "Object Access Audit Filtering Platform Connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformconnection_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformconnection_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformconnection_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformconnection_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformpacketdrop", + "displayName": "Object Access Audit Filtering Platform Packet Drop", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformpacketdrop_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformpacketdrop_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformpacketdrop_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditfilteringplatformpacketdrop_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_audithandlemanipulation", + "displayName": "Object Access Audit Handle Manipulation", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_audithandlemanipulation_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_audithandlemanipulation_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_audithandlemanipulation_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_audithandlemanipulation_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditkernelobject", + "displayName": "Object Access Audit Kernel Object", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditkernelobject_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditkernelobject_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditkernelobject_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditkernelobject_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditotherobjectaccessevents", + "displayName": "Object Access Audit Other Object Access Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditotherobjectaccessevents_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditotherobjectaccessevents_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditotherobjectaccessevents_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditotherobjectaccessevents_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditregistry", + "displayName": "Object Access Audit Registry", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditregistry_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditregistry_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditregistry_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditregistry_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditremovablestorage", + "displayName": "Object Access Audit Removable Storage", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditremovablestorage_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditremovablestorage_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditremovablestorage_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditremovablestorage_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditsam", + "displayName": "Object Access Audit SAM", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditsam_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditsam_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditsam_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_objectaccess_auditsam_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthenticationpolicychange", + "displayName": "Audit Authentication Policy Change", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthenticationpolicychange_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthenticationpolicychange_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthenticationpolicychange_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthenticationpolicychange_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthorizationpolicychange", + "displayName": "Audit Authorization Policy Change", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthorizationpolicychange_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthorizationpolicychange_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthorizationpolicychange_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditauthorizationpolicychange_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditfilteringplatformpolicychange", + "displayName": "Policy Change Audit Filtering Platform Policy Change", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditfilteringplatformpolicychange_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditfilteringplatformpolicychange_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditfilteringplatformpolicychange_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditfilteringplatformpolicychange_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditmpssvcrulelevelpolicychange", + "displayName": "Policy Change Audit MPSSVC Rule Level Policy Change", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditmpssvcrulelevelpolicychange_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditmpssvcrulelevelpolicychange_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditmpssvcrulelevelpolicychange_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditmpssvcrulelevelpolicychange_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditotherpolicychangeevents", + "displayName": "Policy Change Audit Other Policy Change Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditotherpolicychangeevents_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditotherpolicychangeevents_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditotherpolicychangeevents_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditotherpolicychangeevents_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditpolicychange", + "displayName": "Audit Changes to Audit Policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditpolicychange_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditpolicychange_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditpolicychange_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_policychange_auditpolicychange_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditnonsensitiveprivilegeuse", + "displayName": "Privilege Use Audit Non Sensitive Privilege Use", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditnonsensitiveprivilegeuse_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditnonsensitiveprivilegeuse_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditnonsensitiveprivilegeuse_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditnonsensitiveprivilegeuse_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditotherprivilegeuseevents", + "displayName": "Privilege Use Audit Other Privilege Use Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditotherprivilegeuseevents_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditotherprivilegeuseevents_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditotherprivilegeuseevents_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditotherprivilegeuseevents_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditsensitiveprivilegeuse", + "displayName": "Privilege Use Audit Sensitive Privilege Use", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditsensitiveprivilegeuse_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditsensitiveprivilegeuse_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditsensitiveprivilegeuse_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_privilegeuse_auditsensitiveprivilegeuse_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditipsecdriver", + "displayName": "System Audit I Psec Driver", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_system_auditipsecdriver_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditipsecdriver_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditipsecdriver_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditipsecdriver_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditothersystemevents", + "displayName": "System Audit Other System Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_system_auditothersystemevents_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditothersystemevents_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditothersystemevents_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditothersystemevents_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritystatechange", + "displayName": "System Audit Security State Change", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritystatechange_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritystatechange_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritystatechange_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritystatechange_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritysystemextension", + "displayName": "Audit Security System Extension", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritysystemextension_0", + "displayName": "Off/None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritysystemextension_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritysystemextension_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsecuritysystemextension_3", + "displayName": "Success+Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsystemintegrity", + "displayName": "System Audit System Integrity", + "options": [ + { + "id": "device_vendor_msft_policy_config_audit_system_auditsystemintegrity_0", + "displayName": "Off/ None", + "description": "Off/None" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsystemintegrity_1", + "displayName": "Success", + "description": "Success" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsystemintegrity_2", + "displayName": "Failure", + "description": "Failure" + }, + { + "id": "device_vendor_msft_policy_config_audit_system_auditsystemintegrity_3", + "displayName": "Success+ Failure", + "description": "Success+Failure" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_authentication_allowaadpasswordreset", + "displayName": "Allow Aad Password Reset", + "options": [ + { + "id": "device_vendor_msft_policy_config_authentication_allowaadpasswordreset_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_authentication_allowaadpasswordreset_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_authentication_allowfastreconnect", + "displayName": "Allow Fast Reconnect", + "options": [ + { + "id": "device_vendor_msft_policy_config_authentication_allowfastreconnect_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_authentication_allowfastreconnect_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_authentication_allowsecondaryauthenticationdevice", + "displayName": "Allow Secondary Authentication Device", + "options": [ + { + "id": "device_vendor_msft_policy_config_authentication_allowsecondaryauthenticationdevice_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_authentication_allowsecondaryauthenticationdevice_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_authentication_configurewebcamaccessdomainnames", + "displayName": "Configure Webcam Access Domain Names", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_authentication_configurewebsigninallowedurls", + "displayName": "Configure Web Sign In Allowed Urls", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablefastfirstsignin", + "displayName": "Enable Fast First Sign In", + "options": [ + { + "id": "device_vendor_msft_policy_config_authentication_enablefastfirstsignin_0", + "displayName": "The feature defaults to the existing SKU and device capabilities.", + "description": "The feature defaults to the existing SKU and device capabilities." + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablefastfirstsignin_1", + "displayName": "Enabled. Auto-connect new non-admin Azure AD accounts to pre-configured candidate local accounts", + "description": "Enabled. Auto-connect new non-admin Azure AD accounts to pre-configured candidate local accounts" + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablefastfirstsignin_2", + "displayName": "Disabled. Do not auto-connect new non-admin Azure AD accounts to pre-configured local accounts", + "description": "Disabled. Do not auto-connect new non-admin Azure AD accounts to pre-configured local accounts" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablepasswordlessexperience", + "displayName": "Enable Passwordless Experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_authentication_enablepasswordlessexperience_0", + "displayName": "The feature defaults to the existing edition and device capabilities.", + "description": "The feature defaults to the existing edition and device capabilities." + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablepasswordlessexperience_1", + "displayName": "Enabled. The Passwordless experience will be enabled on Windows", + "description": "Enabled. The Passwordless experience will be enabled on Windows" + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablepasswordlessexperience_2", + "displayName": "Disabled. The Passwordless experience will not be enabled on Windows", + "description": "Disabled. The Passwordless experience will not be enabled on Windows" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablewebsignin", + "displayName": "Enable Web Sign In", + "options": [ + { + "id": "device_vendor_msft_policy_config_authentication_enablewebsignin_0", + "displayName": "The feature defaults to the existing SKU and device capabilities.", + "description": "The feature defaults to the existing SKU and device capabilities." + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablewebsignin_1", + "displayName": "Enabled. Web Sign-in will be enabled for signing in to Windows", + "description": "Enabled. Web Sign-in will be enabled for signing in to Windows" + }, + { + "id": "device_vendor_msft_policy_config_authentication_enablewebsignin_2", + "displayName": "Disabled. Web Sign-in will not be enabled for signing in to Windows", + "description": "Disabled. Web Sign-in will not be enabled for signing in to Windows" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_authentication_preferredaadtenantdomainname", + "displayName": "Preferred Aad Tenant Domain Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_autoplay_disallowautoplayfornonvolumedevices", + "displayName": "Disallow Autoplay for non-volume devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_autoplay_disallowautoplayfornonvolumedevices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_autoplay_disallowautoplayfornonvolumedevices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior", + "displayName": "Set the default behavior for AutoRun", + "options": [ + { + "id": "device_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_noautorun_dropdown", + "displayName": "Default AutoRun Behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_noautorun_dropdown_1", + "displayName": "Do not execute any autorun commands", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_noautorun_dropdown_2", + "displayName": "Automatically execute autorun commands", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_autoplay_turnoffautoplay", + "displayName": "Turn off Autoplay", + "options": [ + { + "id": "device_vendor_msft_policy_config_autoplay_turnoffautoplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_autoplay_turnoffautoplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_autoplay_turnoffautoplay_autorun_box", + "displayName": "Turn off Autoplay on:", + "options": [ + { + "id": "device_vendor_msft_policy_config_autoplay_turnoffautoplay_autorun_box_181", + "displayName": "CD-ROM and removable media drives", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_autoplay_turnoffautoplay_autorun_box_255", + "displayName": "All drives", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_bits_bandwidththrottlingendtime", + "displayName": "Bandwidth Throttling End Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_bits_bandwidththrottlingstarttime", + "displayName": "Bandwidth Throttling Start Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_bits_bandwidththrottlingtransferrate", + "displayName": "Bandwidth Throttling Transfer Rate", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorbackgroundpriority", + "displayName": "Costed Network Behavior Background Priority", + "options": [ + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorbackgroundpriority_1", + "displayName": "Always transfer", + "description": "Always transfer" + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorbackgroundpriority_2", + "displayName": "Transfer unless roaming", + "description": "Transfer unless roaming" + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorbackgroundpriority_3", + "displayName": "Transfer unless surcharge applies (when not roaming or over cap)", + "description": "Transfer unless surcharge applies (when not roaming or over cap)" + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorbackgroundpriority_4", + "displayName": "Transfer unless nearing limit (when not roaming or nearing cap)", + "description": "Transfer unless nearing limit (when not roaming or nearing cap)" + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorbackgroundpriority_5", + "displayName": "Transfer only if unconstrained", + "description": "Transfer only if unconstrained" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorforegroundpriority", + "displayName": "Costed Network Behavior Foreground Priority", + "options": [ + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorforegroundpriority_1", + "displayName": "Always transfer", + "description": "Always transfer" + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorforegroundpriority_2", + "displayName": "Transfer unless roaming", + "description": "Transfer unless roaming" + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorforegroundpriority_3", + "displayName": "Transfer unless surcharge applies (when not roaming or over cap)", + "description": "Transfer unless surcharge applies (when not roaming or over cap)" + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorforegroundpriority_4", + "displayName": "Transfer unless nearing limit (when not roaming or nearing cap)", + "description": "Transfer unless nearing limit (when not roaming or nearing cap)" + }, + { + "id": "device_vendor_msft_policy_config_bits_costednetworkbehaviorforegroundpriority_5", + "displayName": "Transfer only if unconstrained", + "description": "Transfer only if unconstrained" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_bits_jobinactivitytimeout", + "displayName": "Job Inactivity Timeout", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_allowadvertising", + "displayName": "Allow Advertising", + "options": [ + { + "id": "device_vendor_msft_policy_config_bluetooth_allowadvertising_0", + "displayName": "Block", + "description": "Not allowed. When set to 0, the device will not send out advertisements. To verify, use any Bluetooth LE app and enable it to do advertising. Then, verify that the advertisement is not received by the peripheral." + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_allowadvertising_1", + "displayName": "Allow", + "description": "Allowed. When set to 1, the device will send out advertisements. To verify, use any Bluetooth LE app and enable it to do advertising. Then, verify that the advertisement is received by the peripheral." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_allowdiscoverablemode", + "displayName": "Allow Discoverable Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_bluetooth_allowdiscoverablemode_0", + "displayName": "Block", + "description": "Not allowed. When set to 0, other devices will not be able to detect the device. To verify, open the Bluetooth control panel on the device. Then, go to another Bluetooth-enabled device, open the Bluetooth control panel, and verify that you cannot see the name of the device." + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_allowdiscoverablemode_1", + "displayName": "Allow", + "description": "Allowed. When set to 1, other devices will be able to detect the device. To verify, open the Bluetooth control panel on the device. Then, go to another Bluetooth-enabled device, open the Bluetooth control panel and verify that you can discover it." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_allowprepairing", + "displayName": "Allow Prepairing", + "options": [ + { + "id": "device_vendor_msft_policy_config_bluetooth_allowprepairing_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_allowprepairing_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_allowpromptedproximalconnections", + "displayName": "Allow Prompted Proximal Connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_bluetooth_allowpromptedproximalconnections_0", + "displayName": "Block", + "description": "Disallow. Block users on these managed devices from using Swift Pair and other proximity based scenarios" + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_allowpromptedproximalconnections_1", + "displayName": "Allow", + "description": "Allow. Allow users on these managed devices to use Swift Pair and other proximity based scenarios" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_localdevicename", + "displayName": "Local Device Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_servicesallowedlist", + "displayName": "Services Allowed List", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_bluetooth_setminimumencryptionkeysize", + "displayName": "Set Minimum Encryption Key Size", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_allowaddressbardropdown", + "displayName": "Allow Address Bar Dropdown", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowaddressbardropdown_0", + "displayName": "Block", + "description": "Prevented/not allowed. Hide the Address bar drop-down functionality and disable the Show search and site suggestions as I type toggle in Settings." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowaddressbardropdown_1", + "displayName": "Allow", + "description": "Allowed. Show the Address bar drop-down list and make it available." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowautofill", + "displayName": "Allow Autofill", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowautofill_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowautofill_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowconfigurationupdateforbookslibrary", + "displayName": "Allow Configuration Update For Books Library", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowconfigurationupdateforbookslibrary_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowconfigurationupdateforbookslibrary_1", + "displayName": "Allow", + "description": "Allowed. Microsoft Edge updates the configuration data for the Books Library automatically." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowcookies", + "displayName": "Allow Cookies", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowcookies_0", + "displayName": "Block all cookies from all sites", + "description": "Block all cookies from all sites" + }, + { + "id": "device_vendor_msft_policy_config_browser_allowcookies_1", + "displayName": "Block only cookies from third party websites", + "description": "Block only cookies from third party websites" + }, + { + "id": "device_vendor_msft_policy_config_browser_allowcookies_2", + "displayName": "Allow all cookies from all sites", + "description": "Allow all cookies from all sites" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowdevelopertools", + "displayName": "Allow Developer Tools", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowdevelopertools_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowdevelopertools_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowdonottrack", + "displayName": "Allow Do Not Track", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowdonottrack_0", + "displayName": "Block", + "description": "Never send tracking information." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowdonottrack_1", + "displayName": "Allow", + "description": "Send tracking information." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowextensions", + "displayName": "Allow Extensions", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowextensions_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowextensions_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowflash", + "displayName": "Allow Flash", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowflash_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowflash_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowflashclicktorun", + "displayName": "Allow Flash Click To Run", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowflashclicktorun_0", + "displayName": "Block", + "description": "Load and run Adobe Flash content automatically." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowflashclicktorun_1", + "displayName": "Allow", + "description": "Does not load or run Adobe Flash content automatically. Requires action from the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowfullscreenmode", + "displayName": "Allow Full Screen Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowfullscreenmode_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowfullscreenmode_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowinprivate", + "displayName": "Allow InPrivate", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowinprivate_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowinprivate_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowmicrosoftcompatibilitylist", + "displayName": "Allow Microsoft Compatibility List", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowmicrosoftcompatibilitylist_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowmicrosoftcompatibilitylist_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowpasswordmanager", + "displayName": "Allow Password Manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowpasswordmanager_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowpasswordmanager_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowpopups", + "displayName": "Allow Popups", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowpopups_0", + "displayName": "Block", + "description": "Turn off Pop-up Blocker letting pop-up windows open." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowpopups_1", + "displayName": "Allow", + "description": "Turn on Pop-up Blocker stopping pop-up windows from opening." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowprelaunch", + "displayName": "Allow Prelaunch", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowprelaunch_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowprelaunch_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowprinting", + "displayName": "Allow Printing", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowprinting_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowprinting_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsavinghistory", + "displayName": "Allow Saving History", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowsavinghistory_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsavinghistory_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsearchenginecustomization", + "displayName": "Allow Search Engine Customization", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowsearchenginecustomization_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsearchenginecustomization_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsearchsuggestionsinaddressbar", + "displayName": "Allow Search Suggestionsin Address Bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowsearchsuggestionsinaddressbar_0", + "displayName": "Block", + "description": "Prevented/Not allowed. Hide the search suggestions." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsearchsuggestionsinaddressbar_1", + "displayName": "Allow", + "description": "Allowed. Show the search suggestions." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsideloadingofextensions", + "displayName": "Allow Sideloading Of Extensions", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowsideloadingofextensions_0", + "displayName": "Block", + "description": "Prevented/Not allowed. Disabling does not prevent sideloading of extensions using Add-AppxPackage via Powershell. To prevent this, set the ApplicationManagement/AllowDeveloperUnlock policy to 1 (enabled)." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsideloadingofextensions_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsmartscreen", + "displayName": "Allow Smart Screen", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowsmartscreen_0", + "displayName": "Block", + "description": "Turned off. Do not protect users from potential threats and prevent users from turning it on." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowsmartscreen_1", + "displayName": "Allow", + "description": "Turned on. Protect users from potential threats and prevent users from turning it off." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowtabpreloading", + "displayName": "Allow Tab Preloading", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowtabpreloading_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowtabpreloading_1", + "displayName": "Allow", + "description": "Allowed. Preload Start and New tab pages." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_allowwebcontentonnewtabpage", + "displayName": "Allow Web Content On New Tab Page", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_allowwebcontentonnewtabpage_0", + "displayName": "Block", + "description": "Load a blank page instead of the default New tab page and prevent users from changing it." + }, + { + "id": "device_vendor_msft_policy_config_browser_allowwebcontentonnewtabpage_1", + "displayName": "Allow", + "description": "Load the default New tab page." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_alwaysenablebookslibrary", + "displayName": "Always Enable Books Library", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_alwaysenablebookslibrary_0", + "displayName": "Disabled", + "description": "Show the Books Library only in countries or regions where supported." + }, + { + "id": "device_vendor_msft_policy_config_browser_alwaysenablebookslibrary_1", + "displayName": "Enabled", + "description": "Show the Books Library, regardless of the device's country or region." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_clearbrowsingdataonexit", + "displayName": "Clear Browsing Data On Exit", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_clearbrowsingdataonexit_0", + "displayName": "Disabled", + "description": "Prevented/not allowed. Users can configure the 'Clear browsing data' option in Settings." + }, + { + "id": "device_vendor_msft_policy_config_browser_clearbrowsingdataonexit_1", + "displayName": "Enabled", + "description": "Allowed. Clear the browsing data upon exit automatically." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_configureadditionalsearchengines", + "displayName": "Configure Additional Search Engines", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_configurefavoritesbar", + "displayName": "Configure Favorites Bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_configurefavoritesbar_0", + "displayName": "Disabled", + "description": "Hide the favorites bar on all pages. Also, the favorites bar toggle, in Settings, is set to Off and disabled preventing users from making changes. Microsoft Edge also hides the “show bar/hide bar” option in the context menu." + }, + { + "id": "device_vendor_msft_policy_config_browser_configurefavoritesbar_1", + "displayName": "Enabled", + "description": "Show the favorites bar on all pages. Also, the favorites bar toggle, in Settings, is set to On and disabled preventing users from making changes. Microsoft Edge also hides the “show bar/hide bar” option in the context menu." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_configurehomebutton", + "displayName": "Configure Home Button", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_configurehomebutton_0", + "displayName": "Show home button and load the Start page", + "description": "Show home button and load the Start page" + }, + { + "id": "device_vendor_msft_policy_config_browser_configurehomebutton_1", + "displayName": "Show home button and load the New tab page", + "description": "Show home button and load the New tab page" + }, + { + "id": "device_vendor_msft_policy_config_browser_configurehomebutton_2", + "displayName": "Show home button and load the custom URL defined in the Set Home Button URL policy", + "description": "Show home button and load the custom URL defined in the Set Home Button URL policy" + }, + { + "id": "device_vendor_msft_policy_config_browser_configurehomebutton_3", + "displayName": "Hide home button", + "description": "Hide home button" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_configurekioskmode", + "displayName": "Configure Kiosk Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_configurekioskmode_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_browser_configurekioskmode_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_configurekioskresetafteridletimeout", + "displayName": "Configure Kiosk Reset After Idle Timeout", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith", + "displayName": "Configure Open Microsoft Edge With", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith_0", + "displayName": "Load the Start page", + "description": "Load the Start page" + }, + { + "id": "device_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith_1", + "displayName": "Load the New tab page", + "description": "Load the New tab page" + }, + { + "id": "device_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith_2", + "displayName": "Load the previous pages", + "description": "Load the previous pages" + }, + { + "id": "device_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith_3", + "displayName": "Load a specific page or pages", + "description": "Load a specific page or pages" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics", + "displayName": "Configure Telemetry For Microsoft 365 Analytics", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics_0", + "displayName": "No data collected or sent", + "description": "No data collected or sent" + }, + { + "id": "device_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics_1", + "displayName": "Send intranet history only", + "description": "Send intranet history only" + }, + { + "id": "device_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics_2", + "displayName": "Send Internet history only", + "description": "Send Internet history only" + }, + { + "id": "device_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics_3", + "displayName": "Send both intranet and Internet history", + "description": "Send both intranet and Internet history" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_disablelockdownofstartpages", + "displayName": "Disable Lockdown Of Start Pages", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_disablelockdownofstartpages_0", + "displayName": "Disabled", + "description": "Lock down Start pages configured in either the ConfigureOpenEdgeWith policy and HomePages policy." + }, + { + "id": "device_vendor_msft_policy_config_browser_disablelockdownofstartpages_1", + "displayName": "Enabled", + "description": "Unlocked. Users can make changes to all configured start pages." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_enableextendedbookstelemetry", + "displayName": "Enable Extended Books Telemetry", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_enableextendedbookstelemetry_0", + "displayName": "Disabled", + "description": "Gather and send only basic diagnostic data, depending on the device configuration." + }, + { + "id": "device_vendor_msft_policy_config_browser_enableextendedbookstelemetry_1", + "displayName": "Enabled", + "description": "Gather all diagnostic data." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_enterprisemodesitelist", + "displayName": "Enterprise Mode Site List", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_enterprisesitelistserviceurl", + "displayName": "Enterprise Site List Service Url", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_homepages", + "displayName": "Home Pages", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_lockdownfavorites", + "displayName": "Lockdown Favorites", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_lockdownfavorites_0", + "displayName": "Disabled", + "description": "Allowed/not locked down. Users can add, import, and make changes to the favorites." + }, + { + "id": "device_vendor_msft_policy_config_browser_lockdownfavorites_1", + "displayName": "Enabled", + "description": "Prevented/locked down." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_preventaccesstoaboutflagsinmicrosoftedge", + "displayName": "Prevent Access To About Flags In Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_preventaccesstoaboutflagsinmicrosoftedge_0", + "displayName": "Disabled", + "description": "Allowed." + }, + { + "id": "device_vendor_msft_policy_config_browser_preventaccesstoaboutflagsinmicrosoftedge_1", + "displayName": "Enabled", + "description": "Prevents users from accessing the about:flags page." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_preventcerterroroverrides", + "displayName": "Prevent Cert Error Overrides", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_preventcerterroroverrides_0", + "displayName": "Disabled", + "description": "Allowed/turned on. Override the security warning to sites that have SSL errors." + }, + { + "id": "device_vendor_msft_policy_config_browser_preventcerterroroverrides_1", + "displayName": "Enabled", + "description": "Prevented/turned on." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_preventlivetiledatacollection", + "displayName": "Prevent Live Tile Data Collection", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_preventlivetiledatacollection_0", + "displayName": "Disabled", + "description": "Collect and send Live Tile metadata." + }, + { + "id": "device_vendor_msft_policy_config_browser_preventlivetiledatacollection_1", + "displayName": "Enabled", + "description": "No data collected." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_preventsmartscreenpromptoverride", + "displayName": "Prevent Smart Screen Prompt Override", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_preventsmartscreenpromptoverride_0", + "displayName": "Disabled", + "description": "Allowed/turned off. Users can ignore the warning and continue to the site." + }, + { + "id": "device_vendor_msft_policy_config_browser_preventsmartscreenpromptoverride_1", + "displayName": "Enabled", + "description": "Prevented/turned on." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_preventsmartscreenpromptoverrideforfiles", + "displayName": "Prevent Smart Screen Prompt Override For Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_preventsmartscreenpromptoverrideforfiles_0", + "displayName": "Disabled", + "description": "Allowed/turned off. Users can ignore the warning and continue to download the unverified file(s)." + }, + { + "id": "device_vendor_msft_policy_config_browser_preventsmartscreenpromptoverrideforfiles_1", + "displayName": "Enabled", + "description": "Prevented/turned on." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_preventturningoffrequiredextensions", + "displayName": "Prevent Turning Off Required Extensions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_preventusinglocalhostipaddressforwebrtc", + "displayName": "Prevent Using Local Host IP Address For Web RTC", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_preventusinglocalhostipaddressforwebrtc_0", + "displayName": "Disabled", + "description": "Allowed. Show localhost IP addresses." + }, + { + "id": "device_vendor_msft_policy_config_browser_preventusinglocalhostipaddressforwebrtc_1", + "displayName": "Enabled", + "description": "Prevented/Not allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_provisionfavorites", + "displayName": "Provision Favorites", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_sendintranettraffictointernetexplorer", + "displayName": "Send Intranet Trafficto Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_sendintranettraffictointernetexplorer_0", + "displayName": "Disabled", + "description": "All sites, including intranet sites, open in Microsoft Edge automatically." + }, + { + "id": "device_vendor_msft_policy_config_browser_sendintranettraffictointernetexplorer_1", + "displayName": "Enabled", + "description": "Only intranet sites open in Internet Explorer 11 automatically." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_setdefaultsearchengine", + "displayName": "Set Default Search Engine", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_sethomebuttonurl", + "displayName": "Set Home Button URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_setnewtabpageurl", + "displayName": "Set New Tab Page URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_browser_showmessagewhenopeningsitesininternetexplorer", + "displayName": "Show Message When Opening Sites In Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_showmessagewhenopeningsitesininternetexplorer_0", + "displayName": "No additional message displays.", + "description": "No additional message displays." + }, + { + "id": "device_vendor_msft_policy_config_browser_showmessagewhenopeningsitesininternetexplorer_1", + "displayName": "Show an additional message stating that a site has opened in IE11.", + "description": "Show an additional message stating that a site has opened in IE11." + }, + { + "id": "device_vendor_msft_policy_config_browser_showmessagewhenopeningsitesininternetexplorer_2", + "displayName": "Show an additional message with a \"Keep going in Microsoft Edge\" link.", + "description": "Show an additional message with a \"Keep going in Microsoft Edge\" link." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_syncfavoritesbetweenieandmicrosoftedge", + "displayName": "Sync Favorites Between IE And Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_syncfavoritesbetweenieandmicrosoftedge_0", + "displayName": "Disabled", + "description": "Turned off/not syncing." + }, + { + "id": "device_vendor_msft_policy_config_browser_syncfavoritesbetweenieandmicrosoftedge_1", + "displayName": "Enabled", + "description": "Turned on/syncing." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_unlockhomebutton", + "displayName": "Unlock Home Button", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_unlockhomebutton_0", + "displayName": "Disabled", + "description": "Lock down and prevent users from making changes to the settings." + }, + { + "id": "device_vendor_msft_policy_config_browser_unlockhomebutton_1", + "displayName": "Enabled", + "description": "Let users make changes." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_browser_usesharedfolderforbooks", + "displayName": "Use Shared Folder For Books", + "options": [ + { + "id": "device_vendor_msft_policy_config_browser_usesharedfolderforbooks_0", + "displayName": "Disabled", + "description": "Prevented/not allowed, but Microsoft Edge downloads book files to a per-user folder for each user." + }, + { + "id": "device_vendor_msft_policy_config_browser_usesharedfolderforbooks_1", + "displayName": "Enabled", + "description": "Allowed. Microsoft Edge downloads book files to a shared folder. For this policy to work correctly, you must also enable the Allow a Windows app to share application data between users group policy. Also, the users must be signed in with a school or work account." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_camera_allowcamera", + "displayName": "Allow Camera", + "options": [ + { + "id": "device_vendor_msft_policy_config_camera_allowcamera_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_camera_allowcamera_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_cellular_letappsaccesscellulardata", + "displayName": "Let Apps Access Cellular Data", + "options": [ + { + "id": "device_vendor_msft_policy_config_cellular_letappsaccesscellulardata_0", + "displayName": "User is in control", + "description": "User is in control" + }, + { + "id": "device_vendor_msft_policy_config_cellular_letappsaccesscellulardata_1", + "displayName": "Force Allow", + "description": "Force Allow" + }, + { + "id": "device_vendor_msft_policy_config_cellular_letappsaccesscellulardata_2", + "displayName": "Force Deny", + "description": "Force Deny" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_cellular_letappsaccesscellulardata_forceallowtheseapps", + "displayName": "Let Apps Access Cellular Data Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_cellular_letappsaccesscellulardata_forcedenytheseapps", + "displayName": "Let Apps Access Cellular Data Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_cellular_letappsaccesscellulardata_userincontroloftheseapps", + "displayName": "Let Apps Access Cellular Data User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_cellular_showappcellularaccessui", + "displayName": "Set Per-App Cellular Access UI Visibility", + "options": [ + { + "id": "device_vendor_msft_policy_config_cellular_showappcellularaccessui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_cellular_showappcellularaccessui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_cellular_showappcellularaccessui_showappcellularaccessui_option", + "displayName": "Please select one option to set: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_cellular_showappcellularaccessui_showappcellularaccessui_option_0", + "displayName": "Hide", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_cellular_showappcellularaccessui_showappcellularaccessui_option_1", + "displayName": "Show", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_abusiveexperienceinterventionenforce", + "displayName": "Abusive Experience Intervention Enforce", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_abusiveexperienceinterventionenforce_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_abusiveexperienceinterventionenforce_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_accessibilityimagelabelsenabled", + "displayName": "Enable Get Image Descriptions from Google.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_accessibilityimagelabelsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_accessibilityimagelabelsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_additionaldnsquerytypesenabled", + "displayName": "Allow DNS queries for additional DNS record types", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_additionaldnsquerytypesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_additionaldnsquerytypesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_adssettingforintrusiveadssites_1", + "displayName": "Allow ads on all sites", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_adssettingforintrusiveadssites_2", + "displayName": "Do not allow ads on sites with intrusive ads", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_advancedprotectionallowed", + "displayName": "Enable additional protections for users enrolled in the Advanced Protection program", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_advancedprotectionallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_advancedprotectionallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdeletingbrowserhistory", + "displayName": "Enable deleting browser and download history", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdeletingbrowserhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdeletingbrowserhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdinosaureasteregg", + "displayName": "Allow Dinosaur Easter Egg Game", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdinosaureasteregg_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdinosaureasteregg_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alloweddomainsforapps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alloweddomainsforapps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alloweddomainsforapps_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowfileselectiondialogs", + "displayName": "Allow invocation of file selection dialogs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowfileselectiondialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowfileselectiondialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowsyncxhrinpagedismissal", + "displayName": "Allows a page to perform synchronous XHR requests during page dismissal.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowsyncxhrinpagedismissal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowsyncxhrinpagedismissal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alternateerrorpagesenabled", + "displayName": "Enable alternate error pages", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alternateerrorpagesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alternateerrorpagesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alwaysopenpdfexternally", + "displayName": "Always Open PDF files externally", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alwaysopenpdfexternally_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alwaysopenpdfexternally_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for profile types.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for profile types. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Enable ambient authentication in regular sessions only.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enable ambient authentication in incognito and regular sessions.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_2", + "displayName": "Enable ambient authentication in guest and regular sessions.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_3", + "displayName": "Enable ambient authentication in regular, incognito and guest sessions.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_applicationlocalevalue", + "displayName": "Application locale", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_applicationlocalevalue_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_applicationlocalevalue_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_applicationlocalevalue_applicationlocalevalue", + "displayName": "Application locale (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowed", + "displayName": "Allow or deny audio capture", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowedurls", + "displayName": "URLs that will be granted access to audio capture devices without prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowedurls_audiocaptureallowedurlsdesc", + "displayName": "URLs that will be granted access to audio capture devices without prompt (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audioprocesshighpriorityenabled", + "displayName": "Allow the audio process to run with priority above normal on Windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audioprocesshighpriorityenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audioprocesshighpriorityenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiosandboxenabled", + "displayName": "Allow the audio sandbox to run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiosandboxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiosandboxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofilladdressenabled", + "displayName": "Enable AutoFill for addresses", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofilladdressenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofilladdressenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofillcreditcardenabled", + "displayName": "Enable AutoFill for credit cards", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofillcreditcardenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofillcreditcardenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autolaunchprotocolsfromorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autolaunchprotocolsfromorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autolaunchprotocolsfromorigins_autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenallowedforurls", + "displayName": "URLs where AutoOpenFileTypes can apply", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenallowedforurls_autoopenallowedforurlsdesc", + "displayName": "URLs where AutoOpenFileTypes can apply (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenfiletypes", + "displayName": "List of file types that should be automatically opened on download", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenfiletypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenfiletypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenfiletypes_autoopenfiletypesdesc", + "displayName": "List of file types that should be automatically opened on download (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowed", + "displayName": "Allow media autoplay", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowlist", + "displayName": "Allow media autoplay on a allowlist of URL patterns", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowlist_autoplayallowlistdesc", + "displayName": "Allow media autoplay on a allowlist of URL patterns (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_backgroundmodeenabled", + "displayName": "Continue running background apps when Google Chrome is closed", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_backgroundmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_backgroundmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_blockthirdpartycookies", + "displayName": "Block third party cookies", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_blockthirdpartycookies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_blockthirdpartycookies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_bookmarkbarenabled", + "displayName": "Enable Bookmark Bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_bookmarkbarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_bookmarkbarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browseraddpersonenabled", + "displayName": "Enable add person in user manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browseraddpersonenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browseraddpersonenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenabled", + "displayName": "Enable guest mode in browser", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenforced", + "displayName": "Enforce browser guest mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenforced_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenforced_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlabsenabled", + "displayName": "Browser experiments icon in toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlegacyextensionpointsblocked", + "displayName": "Block Browser Legacy Extension Points", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlegacyextensionpointsblocked_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlegacyextensionpointsblocked_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsernetworktimequeriesenabled", + "displayName": "Allow queries to a Google time service", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsernetworktimequeriesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsernetworktimequeriesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin", + "displayName": "Browser sign in settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_browsersignin", + "displayName": "Browser sign in settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_browsersignin_0", + "displayName": "Disable browser sign-in", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_browsersignin_1", + "displayName": "Enable browser sign-in", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_browsersignin_2", + "displayName": "Force users to sign-in to use the browser", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserthemecolor", + "displayName": "Configure the color of the browser's theme", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserthemecolor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserthemecolor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserthemecolor_browserthemecolor", + "displayName": "Configure the color of the browser's theme (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsingdatalifetime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsingdatalifetime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsingdatalifetime_browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_builtindnsclientenabled", + "displayName": "Use built-in DNS client", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_builtindnsclientenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_builtindnsclientenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cecpq2enabled", + "displayName": "CECPQ2 post-quantum key-agreement enabled for TLS", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cecpq2enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cecpq2enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforcas", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforcas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforcas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforcas_certificatetransparencyenforcementdisabledforcasdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforlegacycas", + "displayName": "Disable Certificate Transparency enforcement for a list of Legacy Certificate Authorities", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforlegacycas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforlegacycas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforlegacycas_certificatetransparencyenforcementdisabledforlegacycasdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of Legacy Certificate Authorities (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforurls", + "displayName": "Disable Certificate Transparency enforcement for a list of URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforurls_certificatetransparencyenforcementdisabledforurlsdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupenabled", + "displayName": "Enable Chrome Cleanup on Windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupreportingenabled", + "displayName": "Control how Chrome Cleanup reports data to Google", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations", + "displayName": "Determine the availability of variations", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_chromevariations", + "displayName": "Determine the availability of variations (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_chromevariations_0", + "displayName": "Enable all variations", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_chromevariations_1", + "displayName": "Enable variations concerning critical fixes only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_chromevariations_2", + "displayName": "Disable all variations", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clearbrowsingdataonexitlist", + "displayName": "Clear Browsing Data on Exit", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clearbrowsingdataonexitlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clearbrowsingdataonexitlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clearbrowsingdataonexitlist_clearbrowsingdataonexitlistdesc", + "displayName": "Clear Browsing Data on Exit (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clicktocallenabled", + "displayName": "Enable the Click to Call Feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clicktocallenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clicktocallenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmentmandatory", + "displayName": "Enable mandatory cloud management enrollment", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmentmandatory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmentmandatory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmenttoken", + "displayName": "The enrollment token of cloud policy on desktop", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmenttoken_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmenttoken_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmenttoken_cloudmanagementenrollmenttoken", + "displayName": "The enrollment token of cloud policy on desktop (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudpolicyoverridesplatformpolicy", + "displayName": "Google Chrome cloud policy overrides Platform policy.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudpolicyoverridesplatformpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudpolicyoverridesplatformpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicymerge", + "displayName": "Enables merging of user cloud policies into machine-level policies", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicymerge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicymerge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicyoverridescloudmachinepolicy", + "displayName": "Allow user cloud policies to override Chrome Browser Cloud Management policies.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicyoverridescloudmachinepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicyoverridescloudmachinepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_commandlineflagsecuritywarningsenabled", + "displayName": "Enable security warnings for command-line flags", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_commandlineflagsecuritywarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_commandlineflagsecuritywarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_componentupdatesenabled", + "displayName": "Enable component updates in Google Chrome", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_componentupdatesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_componentupdatesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_corsnonwildcardrequestheaderssupport", + "displayName": "CORS non-wildcard request headers support", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_corsnonwildcardrequestheaderssupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_corsnonwildcardrequestheaderssupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_crossoriginwebassemblymodulesharingenabled", + "displayName": "Specifies whether WebAssembly modules can be sent cross-origin", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_crossoriginwebassemblymodulesharingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_crossoriginwebassemblymodulesharingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultbrowsersettingenabled", + "displayName": "Set Google Chrome as Default Browser", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultbrowsersettingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultbrowsersettingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultsearchprovidercontextmenuaccessallowed", + "displayName": "Allow default search provider context menu search access", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultsearchprovidercontextmenuaccessallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultsearchprovidercontextmenuaccessallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_desktopsharinghubenabled", + "displayName": "Enable desktop sharing in the omnibox and 3-dot menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_desktopsharinghubenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_desktopsharinghubenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability", + "displayName": "Control where Developer Tools can be used", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_developertoolsavailability", + "displayName": "Control where Developer Tools can be used (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_developertoolsavailability_0", + "displayName": "Disallow usage of the Developer Tools on extensions installed by enterprise policy, allow usage of the Developer Tools in other contexts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_developertoolsavailability_1", + "displayName": "Allow usage of the Developer Tools", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_developertoolsavailability_2", + "displayName": "Disallow usage of the Developer Tools", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disable3dapis", + "displayName": "Disable support for 3D graphics APIs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disable3dapis_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disable3dapis_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablesafebrowsingproceedanyway", + "displayName": "Disable proceeding from the Safe Browsing warning page", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablesafebrowsingproceedanyway_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablesafebrowsingproceedanyway_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablescreenshots", + "displayName": "Disable taking screenshots", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablescreenshots_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablescreenshots_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachedir", + "displayName": "Set disk cache directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachedir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachedir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachedir_diskcachedir", + "displayName": "Set disk cache directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachesize", + "displayName": "Set disk cache size in bytes", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachesize_diskcachesize", + "displayName": "Set disk cache size: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_displaycapturepermissionspolicyenabled", + "displayName": "Specifies whether the display-capture permissions-policy is checked or skipped.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_displaycapturepermissionspolicyenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_displaycapturepermissionspolicyenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsinterceptionchecksenabled", + "displayName": "DNS interception checks enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsinterceptionchecksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsinterceptionchecksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode", + "displayName": "Controls the mode of DNS-over-HTTPS", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_dnsoverhttpsmode", + "displayName": "Controls the mode of DNS-over-HTTPS (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_dnsoverhttpsmode_off", + "displayName": "Disable DNS-over-HTTPS", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_dnsoverhttpsmode_automatic", + "displayName": "Enable DNS-over-HTTPS with insecure fallback", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_dnsoverhttpsmode_secure", + "displayName": "Enable DNS-over-HTTPS without insecure fallback", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpstemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpstemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpstemplates_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloaddirectory", + "displayName": "Set download directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloaddirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloaddirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloaddirectory_downloaddirectory", + "displayName": "Set download directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions", + "displayName": "Allow download restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions", + "displayName": "Download restrictions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_0", + "displayName": "No special restrictions. Default.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_1", + "displayName": "Block malicious downloads and dangerous file types.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_2", + "displayName": "Block malicious downloads, uncommon or unwanted downloads and dangerous file types.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_3", + "displayName": "Block all downloads.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_4", + "displayName": "Block malicious downloads. Recommended.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_editbookmarksenabled", + "displayName": "Enable or disable bookmark editing", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_editbookmarksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_editbookmarksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableexperimentalpolicies", + "displayName": "Enables experimental policies", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableexperimentalpolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableexperimentalpolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableexperimentalpolicies_enableexperimentalpoliciesdesc", + "displayName": "Enables experimental policies (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableonlinerevocationchecks", + "displayName": "Enable online OCSP/CRL checks", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableonlinerevocationchecks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableonlinerevocationchecks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enterprisehardwareplatformapienabled", + "displayName": "Enables managed extensions to use the Enterprise Hardware Platform API", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enterprisehardwareplatformapienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enterprisehardwareplatformapienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_explicitlyallowednetworkports", + "displayName": "Explicitly allowed network ports", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_explicitlyallowednetworkports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_explicitlyallowednetworkports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_explicitlyallowednetworkports_explicitlyallowednetworkportsdesc", + "displayName": "Explicitly allowed network ports (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_externalprotocoldialogshowalwaysopencheckbox", + "displayName": "Show an \"Always open\" checkbox in external protocol dialog.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_externalprotocoldialogshowalwaysopencheckbox_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_externalprotocoldialogshowalwaysopencheckbox_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on Shutdown", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fetchkeepalivedurationsecondsonshutdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fetchkeepalivedurationsecondsonshutdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fetchkeepalivedurationsecondsonshutdown_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on Shutdown: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcedlanguages", + "displayName": "Configure the content and order of preferred languages", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcedlanguages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcedlanguages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcedlanguages_forcedlanguagesdesc", + "displayName": "Configure the content and order of preferred languages (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceephemeralprofiles", + "displayName": "Ephemeral profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceephemeralprofiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceephemeralprofiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcegooglesafesearch", + "displayName": "Force Google SafeSearch", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcegooglesafesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcegooglesafesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_forceyoutuberestrict_0", + "displayName": "Do not enforce Restricted Mode on YouTube", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_forceyoutuberestrict_1", + "displayName": "Enforce at least Moderate Restricted Mode on YouTube", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_forceyoutuberestrict_2", + "displayName": "Enforce Strict Restricted Mode for YouTube", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fullscreenallowed", + "displayName": "Allow fullscreen mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fullscreenallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fullscreenallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_globallyscopehttpauthcacheenabled", + "displayName": "Enable globally scoped HTTP auth cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_globallyscopehttpauthcacheenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_globallyscopehttpauthcacheenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hardwareaccelerationmodeenabled", + "displayName": "Use hardware acceleration when available", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hardwareaccelerationmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hardwareaccelerationmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode", + "displayName": "Control use of the Headless Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_headlessmode", + "displayName": "Control use of the Headless Mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_headlessmode_1", + "displayName": "Allow use of the Headless Mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_headlessmode_2", + "displayName": "Do not allow use of the Headless Mode", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hidewebstoreicon", + "displayName": "Hide the web store from the New Tab Page and app launcher", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hidewebstoreicon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hidewebstoreicon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_historyclustersvisible", + "displayName": "Show history clusters on the Chrome history page", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_historyclustersvisible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_historyclustersvisible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hstspolicybypasslist", + "displayName": "List of names that will bypass the HSTS policy check", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hstspolicybypasslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hstspolicybypasslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hstspolicybypasslist_hstspolicybypasslistdesc", + "displayName": "List of names that will bypass the HSTS policy check (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode", + "displayName": "Allow HTTPS-Only Mode to be enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_httpsonlymode", + "displayName": "Allow HTTPS-Only Mode to be enabled (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_httpsonlymode_allowed", + "displayName": "Allow users to enable HTTPS-Only Mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_httpsonlymode_disallowed", + "displayName": "Do not allow users to enable HTTPS-Only Mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_httpsonlymode_force_enabled", + "displayName": "Force enable HTTPS-Only Mode (not supported yet)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importautofillformdata", + "displayName": "Import autofill form data from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importautofillformdata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importautofillformdata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importbookmarks", + "displayName": "Import bookmarks from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importbookmarks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importbookmarks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhistory", + "displayName": "Import browsing history from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhomepage", + "displayName": "Import of homepage from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsavedpasswords", + "displayName": "Import saved passwords from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsavedpasswords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsavedpasswords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsearchengine", + "displayName": "Import search engines from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsearchengine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsearchengine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability", + "displayName": "Incognito mode availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_incognitomodeavailability", + "displayName": "Incognito mode availability (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_incognitomodeavailability_0", + "displayName": "Incognito mode available", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_incognitomodeavailability_1", + "displayName": "Incognito mode disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_incognitomodeavailability_2", + "displayName": "Incognito mode forced", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureformswarningsenabled", + "displayName": "Enable warnings for insecure forms", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureformswarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureformswarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowed", + "displayName": "Specifies whether to allow insecure websites to make requests to more-private network endpoints", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowedforurls", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from insecure contexts.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowedforurls_insecureprivatenetworkrequestsallowedforurlsdesc", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from insecure contexts. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intensivewakeupthrottlingenabled", + "displayName": "Control the IntensiveWakeUpThrottling feature.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intensivewakeupthrottlingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intensivewakeupthrottlingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior_0", + "displayName": "Use default browser behavior.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior_1", + "displayName": "Disable DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior_2", + "displayName": "Disable DNS interception checks; allow did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior_3", + "displayName": "Allow DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_isolateorigins", + "displayName": "Enable Site Isolation for specified origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_isolateorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_isolateorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_isolateorigins_isolateorigins", + "displayName": "Enable Site Isolation for specified origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lensregionsearchenabled", + "displayName": "Allow Google Lens region search menu item to be shown in context menu if supported.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lensregionsearchenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lensregionsearchenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lockiconinaddressbarenabled", + "displayName": "Enable lock icon in the omnibox for secure connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lockiconinaddressbarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lockiconinaddressbarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lookalikewarningallowlistdomains", + "displayName": "Suppress lookalike domain warnings on domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lookalikewarningallowlistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lookalikewarningallowlistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lookalikewarningallowlistdomains_lookalikewarningallowlistdomainsdesc", + "displayName": "Suppress lookalike domain warnings on domains (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction", + "displayName": "Add restrictions on managed accounts", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_managedaccountssigninrestriction", + "displayName": "Add restrictions on managed accounts (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_managedaccountssigninrestriction_primary_account", + "displayName": "A Managed account must be a primary account", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_managedaccountssigninrestriction_primary_account_strict", + "displayName": "A Managed account must be a primary account and have no secondary accounts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_managedaccountssigninrestriction_none", + "displayName": "No restrictions on managed accounts", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedbookmarks", + "displayName": "Managed Bookmarks", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedbookmarks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedbookmarks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedbookmarks_managedbookmarks", + "displayName": "Managed Bookmarks (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedconfigurationperorigin", + "displayName": "Sets managed configuration values to websites to specific origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedconfigurationperorigin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedconfigurationperorigin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedconfigurationperorigin_managedconfigurationperorigin", + "displayName": "Sets managed configuration values to websites to specific origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxconnectionsperproxy", + "displayName": "Maximal number of concurrent connections to the proxy server", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxconnectionsperproxy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxconnectionsperproxy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxconnectionsperproxy_maxconnectionsperproxy", + "displayName": "Maximal number of concurrent connections to the proxy server: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxinvalidationfetchdelay", + "displayName": "Maximum fetch delay after a policy invalidation", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxinvalidationfetchdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxinvalidationfetchdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxinvalidationfetchdelay_maxinvalidationfetchdelay", + "displayName": "Maximum fetch delay after a policy invalidation: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediarecommendationsenabled", + "displayName": "Enable Media Recommendations", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediarecommendationsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediarecommendationsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediaroutercastallowallips", + "displayName": "Allow Google Cast to connect to Cast devices on all IP addresses.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediaroutercastallowallips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediaroutercastallowallips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_metricsreportingenabled", + "displayName": "Enable reporting of usage and crash-related data", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_metricsreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_metricsreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions", + "displayName": "Enable network prediction", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_networkpredictionoptions", + "displayName": "Enable network prediction (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular.\r\n(Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_networkpredictionoptions_2", + "displayName": "Do not predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkservicesandboxenabled", + "displayName": "Enable the network service sandbox", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkservicesandboxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkservicesandboxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcardsvisible", + "displayName": "Show cards on the New Tab Page", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcardsvisible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcardsvisible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcustombackgroundenabled", + "displayName": "Allow users to customize the background on the New Tab page", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcustombackgroundenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcustombackgroundenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_overridesecurityrestrictionsoninsecureorigin", + "displayName": "Origins or hostname patterns for which restrictions on\r\ninsecure origins should not apply", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_overridesecurityrestrictionsoninsecureorigin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_overridesecurityrestrictionsoninsecureorigin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_overridesecurityrestrictionsoninsecureorigin_overridesecurityrestrictionsoninsecureorigindesc", + "displayName": "Origins or hostname patterns for which restrictions on\r\ninsecure origins should not apply (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_paymentmethodqueryenabled", + "displayName": "Allow websites to query for available payment methods.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_paymentmethodqueryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_paymentmethodqueryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyatomicgroupsenabled", + "displayName": "Enables the concept of policy atomic groups", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyatomicgroupsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyatomicgroupsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policydictionarymultiplesourcemergelist", + "displayName": "Allow merging dictionary policies from different sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policydictionarymultiplesourcemergelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policydictionarymultiplesourcemergelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policydictionarymultiplesourcemergelist_policydictionarymultiplesourcemergelistdesc", + "displayName": "Allow merging dictionary policies from different sources (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policylistmultiplesourcemergelist", + "displayName": "Allow merging list policies from different sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policylistmultiplesourcemergelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policylistmultiplesourcemergelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policylistmultiplesourcemergelist_policylistmultiplesourcemergelistdesc", + "displayName": "Allow merging list policies from different sources (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyrefreshrate", + "displayName": "Refresh rate for user policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyrefreshrate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyrefreshrate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyrefreshrate_policyrefreshrate", + "displayName": "Refresh rate for user policy: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability", + "displayName": "Profile picker availability on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_profilepickeronstartupavailability", + "displayName": "Profile picker availability on startup (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_profilepickeronstartupavailability_0", + "displayName": "Profile picker available at startup", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_profilepickeronstartupavailability_1", + "displayName": "Profile picker disabled at startup", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_profilepickeronstartupavailability_2", + "displayName": "Profile picker forced at startup", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promotionaltabsenabled", + "displayName": "Enable showing full-tab promotional content", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promotionaltabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promotionaltabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promptfordownloadlocation", + "displayName": "Ask where to save each file before downloading", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promptfordownloadlocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promptfordownloadlocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_proxysettings", + "displayName": "Proxy settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_proxysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_proxysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_proxysettings_proxysettings", + "displayName": "Proxy settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_quicallowed", + "displayName": "Allow QUIC protocol", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_quicallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_quicallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alternateerrorpagesenabled_recommended", + "displayName": "Enable alternate error pages", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alternateerrorpagesenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alternateerrorpagesenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alwaysopenpdfexternally_recommended", + "displayName": "Always Open PDF files externally", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alwaysopenpdfexternally_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alwaysopenpdfexternally_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_applicationlocalevalue_recommended", + "displayName": "Application locale", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_applicationlocalevalue_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_applicationlocalevalue_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_applicationlocalevalue_recommended_applicationlocalevalue", + "displayName": "Application locale (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofilladdressenabled_recommended", + "displayName": "Enable AutoFill for addresses", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofilladdressenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofilladdressenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofillcreditcardenabled_recommended", + "displayName": "Enable AutoFill for credit cards", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofillcreditcardenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofillcreditcardenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_backgroundmodeenabled_recommended", + "displayName": "Continue running background apps when Google Chrome is closed", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_backgroundmodeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_backgroundmodeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_blockthirdpartycookies_recommended", + "displayName": "Block third party cookies", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_blockthirdpartycookies_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_blockthirdpartycookies_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_bookmarkbarenabled_recommended", + "displayName": "Enable Bookmark Bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_bookmarkbarenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_bookmarkbarenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultdownloaddirectory_recommended", + "displayName": "Set default download directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultdownloaddirectory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultdownloaddirectory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultdownloaddirectory_recommended_defaultdownloaddirectory", + "displayName": "Set default download directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultsearchprovidercontextmenuaccessallowed_recommended", + "displayName": "Allow default search provider context menu search access", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultsearchprovidercontextmenuaccessallowed_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultsearchprovidercontextmenuaccessallowed_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloaddirectory_recommended", + "displayName": "Set download directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloaddirectory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloaddirectory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloaddirectory_recommended_downloaddirectory", + "displayName": "Set download directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended", + "displayName": "Allow download restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions", + "displayName": "Download restrictions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_0", + "displayName": "No special restrictions. Default.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_1", + "displayName": "Block malicious downloads and dangerous file types.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_2", + "displayName": "Block malicious downloads, uncommon or unwanted downloads and dangerous file types.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_3", + "displayName": "Block all downloads.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_4", + "displayName": "Block malicious downloads. Recommended.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importautofillformdata_recommended", + "displayName": "Import autofill form data from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importautofillformdata_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importautofillformdata_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importbookmarks_recommended", + "displayName": "Import bookmarks from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importbookmarks_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importbookmarks_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importhistory_recommended", + "displayName": "Import browsing history from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importhistory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importhistory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsavedpasswords_recommended", + "displayName": "Import saved passwords from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsavedpasswords_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsavedpasswords_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsearchengine_recommended", + "displayName": "Import search engines from default browser on first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsearchengine_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsearchengine_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_metricsreportingenabled_recommended", + "displayName": "Enable reporting of usage and crash-related data", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_metricsreportingenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_metricsreportingenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended", + "displayName": "Enable network prediction", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_networkpredictionoptions", + "displayName": "Enable network prediction (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular.\r\n(Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_networkpredictionoptions_2", + "displayName": "Do not predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_safebrowsingfortrustedsourcesenabled_recommended", + "displayName": "Enable Safe Browsing for trusted sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_safebrowsingfortrustedsourcesenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_safebrowsingfortrustedsourcesenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_searchsuggestenabled_recommended", + "displayName": "Enable search suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_searchsuggestenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_searchsuggestenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_showfullurlsinaddressbar_recommended", + "displayName": "Show Full URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_showfullurlsinaddressbar_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_showfullurlsinaddressbar_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_spellcheckserviceenabled_recommended", + "displayName": "Enable or disable spell checking web service", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_spellcheckserviceenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_spellcheckserviceenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_translateenabled_recommended", + "displayName": "Enable Translate", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_translateenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_translateenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended", + "displayName": "Register protocol handlers", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_registeredprotocolhandlers", + "displayName": "Register protocol handlers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovideralternateurls_recommended", + "displayName": "List of alternate URLs for the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovideralternateurls_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovideralternateurls_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovideralternateurls_recommended_defaultsearchprovideralternateurlsdesc", + "displayName": "List of alternate URLs for the default search provider (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended", + "displayName": "Enable the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended", + "displayName": "Default search provider encodings", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_defaultsearchproviderencodingsdesc", + "displayName": "Default search provider encodings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidericonurl_recommended", + "displayName": "Default search provider icon", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidericonurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidericonurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidericonurl_recommended_defaultsearchprovidericonurl", + "displayName": "Default search provider icon (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended", + "displayName": "Parameter providing search-by-image feature for the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_defaultsearchproviderimageurl", + "displayName": "Parameter providing search-by-image feature for the default search provider (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended", + "displayName": "Parameters for image URL which uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for image URL which uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended", + "displayName": "Default search provider keyword", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended", + "displayName": "Default search provider name", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_defaultsearchprovidername", + "displayName": "Default search provider name (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidernewtaburl_recommended", + "displayName": "Default search provider new tab page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidernewtaburl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidernewtaburl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidernewtaburl_recommended_defaultsearchprovidernewtaburl", + "displayName": "Default search provider new tab page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended", + "displayName": "Default search provider search URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurlpostparams_recommended", + "displayName": "Parameters for search URL which uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurlpostparams_recommended_defaultsearchprovidersearchurlpostparams", + "displayName": "Parameters for search URL which uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended", + "displayName": "Default search provider suggest URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_defaultsearchprovidersuggesturl", + "displayName": "Default search provider suggest URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturlpostparams_recommended", + "displayName": "Parameters for suggest URL which uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturlpostparams_recommended_defaultsearchprovidersuggesturlpostparams", + "displayName": "Parameters for suggest URL which uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_autofillenabled_recommended", + "displayName": "Enable AutoFill", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_autofillenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_autofillenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_safebrowsingenabled_recommended", + "displayName": "Enable Safe Browsing", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_safebrowsingenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_safebrowsingenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordleakdetectionenabled_recommended", + "displayName": "Enable leak detection for entered credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordleakdetectionenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordleakdetectionenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended", + "displayName": "Enable saving passwords to the password manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printheaderfooter_recommended", + "displayName": "Print Headers and Footers", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printheaderfooter_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printheaderfooter_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpdfasimagedefault_recommended", + "displayName": "Print PDF as Image Default", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpdfasimagedefault_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpdfasimagedefault_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended", + "displayName": "Use System Default Printer as Default", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_clearsitedataonexit_recommended", + "displayName": "Clear site data on browser shutdown (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_clearsitedataonexit_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_clearsitedataonexit_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturl_recommended", + "displayName": "Default search provider instant URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturl_recommended_defaultsearchproviderinstanturl", + "displayName": "Default search provider instant URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturlpostparams_recommended", + "displayName": "Parameters for instant URL which uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturlpostparams_recommended_defaultsearchproviderinstanturlpostparams", + "displayName": "Parameters for instant URL which uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchprovidersearchtermsreplacementkey_recommended", + "displayName": "Parameter controlling search term placement for the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchprovidersearchtermsreplacementkey_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchprovidersearchtermsreplacementkey_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchprovidersearchtermsreplacementkey_recommended_defaultsearchprovidersearchtermsreplacementkey", + "displayName": "Parameter controlling search term placement for the default search provider (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_dnsprefetchingenabled_recommended", + "displayName": "Enable network prediction", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_dnsprefetchingenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_dnsprefetchingenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_instantenabled_recommended", + "displayName": "Enable Instant", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_instantenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_instantenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended", + "displayName": "Safe Browsing Protection Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_safebrowsingprotectionlevel", + "displayName": "Safe Browsing Protection Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_safebrowsingprotectionlevel_0", + "displayName": "Safe Browsing is never active.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_safebrowsingprotectionlevel_1", + "displayName": "Safe Browsing is active in the standard mode.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_safebrowsingprotectionlevel_2", + "displayName": "Safe Browsing is active in the enhanced mode. This mode provides better security, but requires sharing more browsing information with Google.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepageisnewtabpage_recommended", + "displayName": "Use New Tab Page as homepage", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepageisnewtabpage_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepageisnewtabpage_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepagelocation_recommended", + "displayName": "Configure the home page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepagelocation_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepagelocation_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepagelocation_recommended_homepagelocation", + "displayName": "Home page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended", + "displayName": "Action on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup", + "displayName": "Action on startup (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_5", + "displayName": "Open New Tab Page", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartupurls_recommended", + "displayName": "URLs to open on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartupurls_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartupurls_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartupurls_recommended_restoreonstartupurlsdesc", + "displayName": "URLs to open on startup (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_showhomebutton_recommended", + "displayName": "Show Home button on toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_showhomebutton_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_showhomebutton_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification", + "displayName": "Notify a user that a browser relaunch or device restart is recommended or required", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_relaunchnotification", + "displayName": "Notify a user that a browser relaunch or device restart is recommended or required (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_relaunchnotification_1", + "displayName": "Show a recurring prompt to the user indicating that a relaunch is recommended", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_relaunchnotification_2", + "displayName": "Show a recurring prompt to the user indicating that a relaunch is required", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotificationperiod", + "displayName": "Set the time period for update notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotificationperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotificationperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotificationperiod_relaunchnotificationperiod", + "displayName": "Time period (milliseconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchwindow", + "displayName": "Set the time interval for relaunch", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchwindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchwindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchwindow_relaunchwindow", + "displayName": "Relaunch time window (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_remotedebuggingallowed", + "displayName": "Allow remote debugging", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_remotedebuggingallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_remotedebuggingallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_renderercodeintegrityenabled", + "displayName": "Enable Renderer Code Integrity", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_renderercodeintegrityenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_renderercodeintegrityenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_requireonlinerevocationchecksforlocalanchors", + "displayName": "Require online OCSP/CRL checks for local trust anchors", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_requireonlinerevocationchecksforlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_requireonlinerevocationchecksforlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_restrictsignintopattern", + "displayName": "Restrict which Google accounts are allowed to be set as browser primary accounts in Google Chrome", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_restrictsignintopattern_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_restrictsignintopattern_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_restrictsignintopattern_restrictsignintopattern", + "displayName": "Restrict which Google accounts are allowed to be set as browser primary accounts in Google Chrome (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilelocation", + "displayName": "Set the roaming profile directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilelocation_roamingprofilelocation", + "displayName": "Set the roaming profile directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilesupportenabled", + "displayName": "Enable the creation of roaming copies for Google Chrome profile data", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilesupportenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilesupportenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safebrowsingfortrustedsourcesenabled", + "displayName": "Enable Safe Browsing for trusted sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safebrowsingfortrustedsourcesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safebrowsingfortrustedsourcesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior", + "displayName": "Control SafeSites adult content filtering.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_safesitesfilterbehavior", + "displayName": "Control SafeSites adult content filtering. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_safesitesfilterbehavior_0", + "displayName": "Do not filter sites for adult content", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_safesitesfilterbehavior_1", + "displayName": "Filter top level sites (but not embedded iframes) for adult content", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sandboxexternalprotocolblocked", + "displayName": "Allow Chrome to block navigations toward external protocols in sandboxed iframes", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sandboxexternalprotocolblocked_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sandboxexternalprotocolblocked_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_savingbrowserhistorydisabled", + "displayName": "Disable saving browser history", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_savingbrowserhistorydisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_savingbrowserhistorydisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_scrolltotextfragmentenabled", + "displayName": "Enable scrolling to text specified in URL fragments", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_scrolltotextfragmentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_scrolltotextfragmentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_searchsuggestenabled", + "displayName": "Enable search suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_searchsuggestenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_searchsuggestenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_securitykeypermitattestation", + "displayName": "URLs/domains automatically permitted direct Security Key attestation", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_securitykeypermitattestation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_securitykeypermitattestation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_securitykeypermitattestation_securitykeypermitattestationdesc", + "displayName": "URLs/domains automatically permitted direct Security Key attestation (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedarraybufferunrestrictedaccessallowed", + "displayName": "Specifies whether SharedArrayBuffers can be used in a non cross-origin-isolated context", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedarraybufferunrestrictedaccessallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedarraybufferunrestrictedaccessallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedclipboardenabled", + "displayName": "Enable the Shared Clipboard Feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedclipboardenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedclipboardenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showappsshortcutinbookmarkbar", + "displayName": "Show the apps shortcut in the bookmark bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showappsshortcutinbookmarkbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showappsshortcutinbookmarkbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showfullurlsinaddressbar", + "displayName": "Show Full URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showfullurlsinaddressbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showfullurlsinaddressbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signedhttpexchangeenabled", + "displayName": "Enable Signed HTTP Exchange (SXG) support", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signedhttpexchangeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signedhttpexchangeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signininterceptionenabled", + "displayName": "Enable signin interception", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signininterceptionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signininterceptionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_siteperprocess", + "displayName": "Require Site Isolation for every site", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_siteperprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_siteperprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckenabled", + "displayName": "Enable spellcheck", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguage", + "displayName": "Force enable spellcheck languages", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguage_spellchecklanguagedesc", + "displayName": "Force enable spellcheck languages (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguageblocklist", + "displayName": "Force disable spellcheck languages", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguageblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguageblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguageblocklist_spellchecklanguageblocklistdesc", + "displayName": "Force disable spellcheck languages (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckserviceenabled", + "displayName": "Enable or disable spell checking web service", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckserviceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckserviceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowed", + "displayName": "Allow proceeding from the SSL warning page", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowedfororigins", + "displayName": "Allow proceeding from the SSL warning page on specific origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowedfororigins_sslerroroverrideallowedfororiginsdesc", + "displayName": "Allow proceeding from the SSL warning page on specific origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin", + "displayName": "Minimum SSL version enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_sslversionmin", + "displayName": "Minimum SSL version enabled (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_sslversionmin_tls1", + "displayName": "TLS 1.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_sslversionmin_tls1.1", + "displayName": "TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_sslversionmin_tls1.2", + "displayName": "TLS 1.2", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressdifferentoriginsubframedialogs", + "displayName": "Suppress JavaScript Dialogs triggered from different origin subframes", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressdifferentoriginsubframedialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressdifferentoriginsubframedialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressunsupportedoswarning", + "displayName": "Suppress the unsupported OS warning", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressunsupportedoswarning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressunsupportedoswarning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_syncdisabled", + "displayName": "Disable synchronization of data with Google", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_syncdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_syncdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_synctypeslistdisabled", + "displayName": "List of types that should be excluded from synchronization", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_synctypeslistdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_synctypeslistdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_synctypeslistdisabled_synctypeslistdisableddesc", + "displayName": "List of types that should be excluded from synchronization (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_targetblankimpliesnoopener", + "displayName": "Do not set window.opener for links targeting _blank", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_targetblankimpliesnoopener_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_targetblankimpliesnoopener_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_taskmanagerendprocessenabled", + "displayName": "Enable ending processes in Task Manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_taskmanagerendprocessenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_taskmanagerendprocessenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_thirdpartyblockingenabled", + "displayName": "Enable third party software injection blocking", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_thirdpartyblockingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_thirdpartyblockingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_totalmemorylimitmb", + "displayName": "Set limit on megabytes of memory a single Chrome instance can use.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_totalmemorylimitmb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_totalmemorylimitmb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_totalmemorylimitmb_totalmemorylimitmb", + "displayName": "Set memory limit for Chrome instances: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_translateenabled", + "displayName": "Enable Translate", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_translateenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_translateenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_u2fsecuritykeyapienabled", + "displayName": "Allow using the deprecated U2F Security Key API", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_u2fsecuritykeyapienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_u2fsecuritykeyapienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlallowlist", + "displayName": "Allow access to a list of URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlallowlist_urlallowlistdesc", + "displayName": "Allow access to a list of URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlblocklist", + "displayName": "Block access to a list of URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlblocklist_urlblocklistdesc", + "displayName": "Block access to a list of URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlkeyedanonymizeddatacollectionenabled", + "displayName": "Enable URL-keyed anonymized data collection", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlkeyedanonymizeddatacollectionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlkeyedanonymizeddatacollectionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatadir", + "displayName": "Set user data directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatadir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatadir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatadir_userdatadir", + "displayName": "Set user data directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatasnapshotretentionlimit", + "displayName": "Limits the number of user data snapshots retained for use in case of emergency rollback.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatasnapshotretentionlimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatasnapshotretentionlimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatasnapshotretentionlimit_userdatasnapshotretentionlimit", + "displayName": "Limits the number of user data snapshots retained for use in case of emergency rollback.: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userfeedbackallowed", + "displayName": "Allow user feedback", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userfeedbackallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userfeedbackallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowed", + "displayName": "Allow or deny video capture", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowedurls", + "displayName": "URLs that will be granted access to video capture devices without prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowedurls_videocaptureallowedurlsdesc", + "displayName": "URLs that will be granted access to video capture devices without prompt (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webappinstallforcelist", + "displayName": "Configure list of force-installed Web Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webappinstallforcelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webappinstallforcelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webappinstallforcelist_webappinstallforcelist", + "displayName": "URLs for Web Apps to be silently installed. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcallowlegacytlsprotocols", + "displayName": "Allow legacy TLS/DTLS downgrade in WebRTC", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcallowlegacytlsprotocols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcallowlegacytlsprotocols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtceventlogcollectionallowed", + "displayName": "Allow collection of WebRTC event logs from Google services", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtceventlogcollectionallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtceventlogcollectionallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling", + "displayName": "The IP handling policy of WebRTC", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling", + "displayName": "The IP handling policy of WebRTC (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling_default", + "displayName": "WebRTC will use all available interfaces when searching for the best path.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling_default_public_and_private_interfaces", + "displayName": "WebRTC will only use the interface connecting to the public Internet, but may connect using private IP addresses.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling_default_public_interface_only", + "displayName": "WebRTC will only use the interface connecting to the public Internet, and will not connect using private IP addresses.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling_disable_non_proxied_udp", + "displayName": "WebRTC will use TCP on the public-facing interface, and will only use UDP if supported by a configured proxy.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtclocalipsallowedurls", + "displayName": "URLs for which local IPs are exposed in WebRTC ICE candidates", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtclocalipsallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtclocalipsallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtclocalipsallowedurls_webrtclocalipsallowedurlsdesc", + "displayName": "URLs for which local IPs are exposed in WebRTC ICE candidates (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcudpportrange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcudpportrange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcudpportrange_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_websqlinthirdpartycontextenabled", + "displayName": "Force WebSQL in third-party contexts to be re-enabled.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_websqlinthirdpartycontextenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_websqlinthirdpartycontextenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_windowocclusionenabled", + "displayName": "Enable Window Occlusion", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_windowocclusionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_windowocclusionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_wpadquickcheckenabled", + "displayName": "Enable WPAD optimization", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_wpadquickcheckenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_wpadquickcheckenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserparameters", + "displayName": "Command-line parameters for the alternative browser.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserparameters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserparameters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserparameters_alternativebrowserparametersdesc", + "displayName": "Command-line parameters for the alternative browser. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserpath", + "displayName": "Alternative browser to launch for configured websites.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserpath_alternativebrowserpath", + "displayName": "Alternative browser to launch for configured websites. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromeparameters", + "displayName": "Command-line parameters for switching from the alternative browser.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromeparameters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromeparameters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromeparameters_browserswitcherchromeparametersdesc", + "displayName": "Command-line parameters for switching from the alternative browser. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromepath", + "displayName": "Path to Chrome for switching from the alternative browser.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromepath_browserswitcherchromepath", + "displayName": "Path to Chrome for switching from the alternative browser. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherdelay", + "displayName": "Delay before launching alternative browser (milliseconds)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherdelay_browserswitcherdelay", + "displayName": "Delay before launching alternative browser (milliseconds): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherenabled", + "displayName": "Enable the Legacy Browser Support feature.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalgreylisturl", + "displayName": "URL of an XML file that contains URLs that should never trigger a browser switch.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalgreylisturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalgreylisturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalgreylisturl_browserswitcherexternalgreylisturl", + "displayName": "URL of an XML file that contains URLs that should never trigger a browser switch. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalsitelisturl", + "displayName": "URL of an XML file that contains URLs to load in an alternative browser.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalsitelisturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalsitelisturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalsitelisturl_browserswitcherexternalsitelisturl", + "displayName": "URL of an XML file that contains URLs to load in an alternative browser. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherkeeplastchrometab", + "displayName": "Keep last tab open in Chrome.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherkeeplastchrometab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherkeeplastchrometab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode", + "displayName": "Sitelist parsing mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_browserswitcherparsingmode", + "displayName": "Sitelist parsing mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_browserswitcherparsingmode_0", + "displayName": "Default behavior for LBS.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_browserswitcherparsingmode_1", + "displayName": "More compatible with Microsoft IE/Edge enterprise mode sitelists.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurlgreylist", + "displayName": "Websites that should never trigger a browser switch.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurlgreylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurlgreylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurlgreylist_browserswitcherurlgreylistdesc", + "displayName": "Websites that should never trigger a browser switch. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurllist", + "displayName": "Websites to open in alternative browser", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurllist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurllist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurllist_browserswitcherurllistdesc", + "displayName": "Websites to open in alternative browser (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcheruseiesitelist", + "displayName": "Use Internet Explorer's SiteList policy for Legacy Browser Support.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcheruseiesitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcheruseiesitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_autoselectcertificateforurls", + "displayName": "Automatically select client certificates for these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_autoselectcertificateforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_autoselectcertificateforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_autoselectcertificateforurls_autoselectcertificateforurlsdesc", + "displayName": "Automatically select client certificates for these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesallowedforurls", + "displayName": "Allow cookies on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesallowedforurls_cookiesallowedforurlsdesc", + "displayName": "Allow cookies on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesblockedforurls", + "displayName": "Block cookies on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesblockedforurls_cookiesblockedforurlsdesc", + "displayName": "Block cookies on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiessessiononlyforurls", + "displayName": "Limit cookies from matching URLs to the current session", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiessessiononlyforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiessessiononlyforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiessessiononlyforurls_cookiessessiononlyforurlsdesc", + "displayName": "Limit cookies from matching URLs to the current session (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting", + "displayName": "Default cookies setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_defaultcookiessetting", + "displayName": "Default cookies setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_defaultcookiessetting_1", + "displayName": "Allow all sites to set local data", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_defaultcookiessetting_2", + "displayName": "Do not allow any site to set local data", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_defaultcookiessetting_4", + "displayName": "Keep cookies for the duration of the session", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting_2", + "displayName": "Do not allow any site to request read access to files and directories via the File System API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting_3", + "displayName": "Allow sites to ask the user to grant read access to files and directories via the File System API", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_2", + "displayName": "Do not allow any site to request write access to files and directories", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_3", + "displayName": "Allow sites to ask the user to grant write access to files and directories", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting", + "displayName": "Default geolocation setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting", + "displayName": "Default geolocation setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_1", + "displayName": "Allow sites to track the users' physical location", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_2", + "displayName": "Do not allow any site to track the users' physical location", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_3", + "displayName": "Ask whenever a site wants to track the users' physical location", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting", + "displayName": "Default images setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_defaultimagessetting", + "displayName": "Default images setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_defaultimagessetting_1", + "displayName": "Allow all sites to show all images", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_defaultimagessetting_2", + "displayName": "Do not allow any site to show images", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_2", + "displayName": "Do not allow any site to load mixed content", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_3", + "displayName": "Allow users to add exceptions to allow mixed content", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting_1", + "displayName": "Allow any site to run JavaScript JIT", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting_2", + "displayName": "Do not allow any site to run JavaScript JIT", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting", + "displayName": "Default JavaScript setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting", + "displayName": "Default JavaScript setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_1", + "displayName": "Allow all sites to run JavaScript", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_2", + "displayName": "Do not allow any site to run JavaScript", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting", + "displayName": "Default notification setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_defaultnotificationssetting", + "displayName": "Default notification setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_defaultnotificationssetting_1", + "displayName": "Allow sites to show desktop notifications", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_defaultnotificationssetting_2", + "displayName": "Do not allow any site to show desktop notifications", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_defaultnotificationssetting_3", + "displayName": "Ask every time a site wants to show desktop notifications", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting", + "displayName": "Default popups setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_defaultpopupssetting", + "displayName": "Default popups setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_defaultpopupssetting_1", + "displayName": "Allow all sites to show pop-ups", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_defaultpopupssetting_2", + "displayName": "Do not allow any site to show popups", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting", + "displayName": "Default sensors setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_defaultsensorssetting", + "displayName": "Default sensors setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_defaultsensorssetting_1", + "displayName": "Allow sites to access sensors", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_defaultsensorssetting_2", + "displayName": "Do not allow any site to access sensors", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting", + "displayName": "Control use of the Serial API", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_defaultserialguardsetting", + "displayName": "Control use of the Serial API (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_defaultserialguardsetting_2", + "displayName": "Do not allow any site to request access to serial ports via the Serial API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_defaultserialguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a serial port", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting_2", + "displayName": "Do not allow any site to request access to Bluetooth devices via the Web Bluetooth API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a nearby Bluetooth device", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_2", + "displayName": "Do not allow any site to request access to USB devices via the WebUSB API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a connected USB device", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadaskforurls", + "displayName": "Allow read access via the File System API on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadaskforurls_filesystemreadaskforurlsdesc", + "displayName": "Allow read access via the File System API on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadblockedforurls", + "displayName": "Block read access via the File System API on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadblockedforurls_filesystemreadblockedforurlsdesc", + "displayName": "Block read access via the File System API on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteaskforurls", + "displayName": "Allow write access to files and directories on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteaskforurls_filesystemwriteaskforurlsdesc", + "displayName": "Allow write access to files and directories on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteblockedforurls", + "displayName": "Block write access to files and directories on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteblockedforurls_filesystemwriteblockedforurlsdesc", + "displayName": "Block write access to files and directories on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesallowedforurls", + "displayName": "Allow images on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesallowedforurls_imagesallowedforurlsdesc", + "displayName": "Allow images on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesblockedforurls", + "displayName": "Block images on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesblockedforurls_imagesblockedforurlsdesc", + "displayName": "Block images on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentallowedforurls", + "displayName": "Allow insecure content on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentallowedforurls_insecurecontentallowedforurlsdesc", + "displayName": "Allow insecure content on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentblockedforurls", + "displayName": "Block insecure content on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentblockedforurls_insecurecontentblockedforurlsdesc", + "displayName": "Block insecure content on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptallowedforurls", + "displayName": "Allow JavaScript on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptallowedforurls_javascriptallowedforurlsdesc", + "displayName": "Allow JavaScript on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptblockedforurls", + "displayName": "Block JavaScript on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptblockedforurls_javascriptblockedforurlsdesc", + "displayName": "Block JavaScript on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitallowedforsites", + "displayName": "Allow JavaScript to use JIT on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitallowedforsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitallowedforsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitallowedforsites_javascriptjitallowedforsitesdesc", + "displayName": "Allow JavaScript to use JIT on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitblockedforsites", + "displayName": "Block JavaScript from using JIT on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitblockedforsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitblockedforsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitblockedforsites_javascriptjitblockedforsitesdesc", + "displayName": "Block JavaScript from using JIT on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist", + "displayName": "Revert to legacy SameSite behavior for cookies on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_legacysamesitecookiebehaviorenabledfordomainlistdesc", + "displayName": "Revert to legacy SameSite behavior for cookies on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsallowedforurls", + "displayName": "Allow notifications on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsallowedforurls_notificationsallowedforurlsdesc", + "displayName": "Allow notifications on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsblockedforurls", + "displayName": "Block notifications on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsblockedforurls_notificationsblockedforurlsdesc", + "displayName": "Block notifications on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsallowedforurls", + "displayName": "Allow popups on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsallowedforurls_popupsallowedforurlsdesc", + "displayName": "Allow popups on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsblockedforurls", + "displayName": "Block popups on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsblockedforurls_popupsblockedforurlsdesc", + "displayName": "Block popups on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsallowedforurls", + "displayName": "Allow access to sensors on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsallowedforurls_sensorsallowedforurlsdesc", + "displayName": "Allow access to sensors on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsblockedforurls", + "displayName": "Block access to sensors on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsblockedforurls_sensorsblockedforurlsdesc", + "displayName": "Block access to sensors on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowallportsforurls", + "displayName": "Automatically grant permission to sites to connect all serial ports.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowallportsforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowallportsforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowallportsforurls_serialallowallportsforurlsdesc", + "displayName": "Automatically grant permission to sites to connect all serial ports. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowusbdevicesforurls", + "displayName": "Automatically grant permission to sites to connect to USB serial devices.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowusbdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowusbdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowusbdevicesforurls_serialallowusbdevicesforurls", + "displayName": "Automatically grant permission to sites to connect to USB serial devices. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialaskforurls", + "displayName": "Allow the Serial API on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialaskforurls_serialaskforurlsdesc", + "displayName": "Allow the Serial API on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialblockedforurls", + "displayName": "Block the Serial API on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialblockedforurls_serialblockedforurlsdesc", + "displayName": "Block the Serial API on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusballowdevicesforurls", + "displayName": "Automatically grant permission to these sites to connect to USB devices with the given vendor and product IDs.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusballowdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusballowdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusballowdevicesforurls_webusballowdevicesforurls", + "displayName": "Automatically grant permission to these sites to connect to USB devices with the given vendor and product IDs. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbaskforurls", + "displayName": "Allow WebUSB on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbaskforurls_webusbaskforurlsdesc", + "displayName": "Allow WebUSB on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbblockedforurls", + "displayName": "Block WebUSB on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbblockedforurls_webusbblockedforurlsdesc", + "displayName": "Block WebUSB on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovideralternateurls", + "displayName": "List of alternate URLs for the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovideralternateurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovideralternateurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovideralternateurls_defaultsearchprovideralternateurlsdesc", + "displayName": "List of alternate URLs for the default search provider (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderenabled", + "displayName": "Enable the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderencodings", + "displayName": "Default search provider encodings", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderencodings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderencodings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderencodings_defaultsearchproviderencodingsdesc", + "displayName": "Default search provider encodings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidericonurl", + "displayName": "Default search provider icon", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidericonurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidericonurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidericonurl_defaultsearchprovidericonurl", + "displayName": "Default search provider icon (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurl", + "displayName": "Parameter providing search-by-image feature for the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurl_defaultsearchproviderimageurl", + "displayName": "Parameter providing search-by-image feature for the default search provider (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for image URL which uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurlpostparams_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for image URL which uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderkeyword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderkeyword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderkeyword_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidername", + "displayName": "Default search provider name", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidername_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidername_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidername_defaultsearchprovidername", + "displayName": "Default search provider name (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidernewtaburl", + "displayName": "Default search provider new tab page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidernewtaburl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidernewtaburl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidernewtaburl_defaultsearchprovidernewtaburl", + "displayName": "Default search provider new tab page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurl_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurlpostparams", + "displayName": "Parameters for search URL which uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurlpostparams_defaultsearchprovidersearchurlpostparams", + "displayName": "Parameters for search URL which uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturl", + "displayName": "Default search provider suggest URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturl_defaultsearchprovidersuggesturl", + "displayName": "Default search provider suggest URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturlpostparams", + "displayName": "Parameters for suggest URL which uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturlpostparams_defaultsearchprovidersuggesturlpostparams", + "displayName": "Parameters for suggest URL which uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authnegotiatedelegatewhitelist", + "displayName": "Kerberos delegation server whitelist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authnegotiatedelegatewhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authnegotiatedelegatewhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authnegotiatedelegatewhitelist_authnegotiatedelegatewhitelist", + "displayName": "Kerberos delegation server whitelist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authserverwhitelist", + "displayName": "Authentication server whitelist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authserverwhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authserverwhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authserverwhitelist_authserverwhitelist", + "displayName": "Authentication server whitelist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autofillenabled", + "displayName": "Enable AutoFill", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autofillenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autofillenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autoplaywhitelist", + "displayName": "Allow media autoplay on a whitelist of URL patterns", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autoplaywhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autoplaywhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autoplaywhitelist_autoplaywhitelistdesc", + "displayName": "Allow media autoplay on a whitelist of URL patterns (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting", + "displayName": "Default mediastream setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_defaultmediastreamsetting", + "displayName": "Default mediastream setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_defaultmediastreamsetting_2", + "displayName": "Do not allow any site to access the camera and microphone", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_defaultmediastreamsetting_3", + "displayName": "Ask every time a site wants to access the camera and/or microphone", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_developertoolsdisabled", + "displayName": "Disable Developer Tools", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_developertoolsdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_developertoolsdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_disabledschemes", + "displayName": "Disable URL protocol schemes", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_disabledschemes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_disabledschemes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_disabledschemes_disabledschemesdesc", + "displayName": "List of disabled protocol schemes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallblacklist", + "displayName": "Configure extension installation blacklist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallblacklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallblacklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallblacklist_extensioninstallblacklistdesc", + "displayName": "Extension IDs the user should be prevented from installing (or * for all) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallwhitelist", + "displayName": "Configure extension installation whitelist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallwhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallwhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallwhitelist_extensioninstallwhitelistdesc", + "displayName": "Extension IDs to exempt from the blacklist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcebrowsersignin", + "displayName": "Enable force sign in for Google Chrome", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcebrowsersignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcebrowsersignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcesafesearch", + "displayName": "Force SafeSearch", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcesafesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcesafesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forceyoutubesafetymode", + "displayName": "Force YouTube Safety Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forceyoutubesafetymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forceyoutubesafetymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_incognitoenabled", + "displayName": "Enable Incognito mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_incognitoenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_incognitoenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_javascriptenabled", + "displayName": "Enable JavaScript", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_javascriptenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_javascriptenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingblacklist", + "displayName": "Configure native messaging blocklist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingblacklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingblacklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingblacklist_nativemessagingblacklistdesc", + "displayName": "Names of the forbidden native messaging hosts (or * for all) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingwhitelist", + "displayName": "Configure native messaging whitelist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingwhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingwhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingwhitelist_nativemessagingwhitelistdesc", + "displayName": "Names of the native messaging hosts to exempt from the blocklist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativewindowocclusionenabled", + "displayName": "Enable Native Window Occlusion", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativewindowocclusionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativewindowocclusionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxybypasslist", + "displayName": "Proxy bypass rules", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxybypasslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxybypasslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxybypasslist_proxybypasslist", + "displayName": "Comma-separated list of proxy bypass rules (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode", + "displayName": "Choose how to specify proxy server settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode", + "displayName": "Choose how to specify proxy server settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_direct", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_auto_detect", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_pac_script", + "displayName": "Use a .pac proxy script", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_fixed_servers", + "displayName": "Use fixed proxy servers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_system", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxypacurl", + "displayName": "URL to a proxy .pac file", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxypacurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxypacurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxypacurl_proxypacurl", + "displayName": "URL to a proxy .pac file (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyserver", + "displayName": "Address or URL of proxy server", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyserver_proxyserver", + "displayName": "Address or URL of proxy server (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode", + "displayName": "Choose how to specify proxy server settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode", + "displayName": "Choose how to specify proxy server settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode_0", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode_1", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode_2", + "displayName": "Manually specify proxy settings", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode_3", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostclientdomain", + "displayName": "Configure the required domain name for remote access clients", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostclientdomain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostclientdomain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostclientdomain_remoteaccesshostclientdomain", + "displayName": "Configure the required domain name for remote access clients (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostdomain", + "displayName": "Configure the required domain name for remote access hosts", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostdomain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostdomain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostdomain_remoteaccesshostdomain", + "displayName": "Configure the required domain name for remote access hosts (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingenabled", + "displayName": "Enable Safe Browsing", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingwhitelistdomains", + "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingwhitelistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingwhitelistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingwhitelistdomains_safebrowsingwhitelistdomainsdesc", + "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_signinallowed", + "displayName": "Allow sign in to Google Chrome", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_signinallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_signinallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_spellchecklanguageblacklist", + "displayName": "Force disable spellcheck languages", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_spellchecklanguageblacklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_spellchecklanguageblacklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_spellchecklanguageblacklist_spellchecklanguageblacklistdesc", + "displayName": "Force disable spellcheck languages (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_strictermixedcontenttreatmentenabled", + "displayName": "Enable stricter treatment for mixed content", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_strictermixedcontenttreatmentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_strictermixedcontenttreatmentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_unsafelytreatinsecureoriginassecure", + "displayName": "Origins or hostname patterns for which restrictions on\r\ninsecure origins should not apply", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_unsafelytreatinsecureoriginassecure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_unsafelytreatinsecureoriginassecure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_unsafelytreatinsecureoriginassecure_unsafelytreatinsecureoriginassecuredesc", + "displayName": "Origins or hostname patterns for which restrictions on\r\ninsecure origins should not apply (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlblacklist", + "displayName": "Block access to a list of URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlblacklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlblacklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlblacklist_urlblacklistdesc", + "displayName": "Block access to a list of URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlwhitelist", + "displayName": "Allow access to a list of URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlwhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlwhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlwhitelist_urlwhitelistdesc", + "displayName": "Allow access to a list of URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_blockexternalextensions", + "displayName": "Blocks external extensions from being installed", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_blockexternalextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_blockexternalextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionallowedtypes", + "displayName": "Configure allowed app/extension types", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionallowedtypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionallowedtypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionallowedtypes_extensionallowedtypesdesc", + "displayName": "Types of extensions/apps that are allowed to be installed (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallallowlist", + "displayName": "Configure extension installation allow list", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallallowlist_extensioninstallallowlistdesc", + "displayName": "Extension IDs to exempt from the blocklist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallblocklist", + "displayName": "Configure extension installation blocklist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallblocklist_extensioninstallblocklistdesc", + "displayName": "Extension IDs the user should be prevented from installing (or * for all) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallforcelist", + "displayName": "Configure the list of force-installed apps and extensions", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallforcelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallforcelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallforcelist_extensioninstallforcelistdesc", + "displayName": "Extension/App IDs and update URLs to be silently installed (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallsources", + "displayName": "Configure extension, app, and user script install sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallsources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallsources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallsources_extensioninstallsourcesdesc", + "displayName": "URL patterns to allow extension, app, and user script installs from (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionsettings", + "displayName": "Extension management settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionsettings_extensionsettings", + "displayName": "Extension management settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_enablemediarouter", + "displayName": "Enable Google Cast", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_enablemediarouter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_enablemediarouter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_showcasticonintoolbar", + "displayName": "Show the Google Cast toolbar icon", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_showcasticonintoolbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_showcasticonintoolbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_allowcrossoriginauthprompt", + "displayName": "Cross-origin HTTP Authentication prompts", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_allowcrossoriginauthprompt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_allowcrossoriginauthprompt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authnegotiatedelegateallowlist", + "displayName": "Kerberos delegation server allowlist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authnegotiatedelegateallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authnegotiatedelegateallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authnegotiatedelegateallowlist_authnegotiatedelegateallowlist", + "displayName": "Kerberos delegation server allowlist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authschemes", + "displayName": "Supported authentication schemes", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authschemes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authschemes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authschemes_authschemes", + "displayName": "Supported authentication schemes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authserverallowlist", + "displayName": "Authentication server allowlist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authserverallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authserverallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authserverallowlist_authserverallowlist", + "displayName": "Authentication server allowlist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_basicauthoverhttpenabled", + "displayName": "Allow Basic authentication for HTTP", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_basicauthoverhttpenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_basicauthoverhttpenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_disableauthnegotiatecnamelookup", + "displayName": "Disable CNAME lookup when negotiating Kerberos authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_disableauthnegotiatecnamelookup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_disableauthnegotiatecnamelookup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_enableauthnegotiateport", + "displayName": "Include non-standard port in Kerberos SPN", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_enableauthnegotiateport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_enableauthnegotiateport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingallowlist", + "displayName": "Configure native messaging allowlist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingallowlist_nativemessagingallowlistdesc", + "displayName": "Names of the native messaging hosts to exempt from the blocklist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingblocklist", + "displayName": "Configure native messaging blocklist", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingblocklist_nativemessagingblocklistdesc", + "displayName": "Names of the forbidden native messaging hosts (or * for all) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessaginguserlevelhosts", + "displayName": "Allow user-level Native Messaging hosts (installed without admin permissions)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessaginguserlevelhosts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessaginguserlevelhosts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~other_promptonmultiplematchingcertificates", + "displayName": "Prompt for the client certificate when multiple certificates match.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~other_promptonmultiplematchingcertificates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~other_promptonmultiplematchingcertificates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordleakdetectionenabled", + "displayName": "Enable leak detection for entered credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordleakdetectionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordleakdetectionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordmanagerenabled", + "displayName": "Enable saving passwords to the password manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordmanagerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordmanagerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintproxyenabled", + "displayName": "Enable Google Cloud Print proxy", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintproxyenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintproxyenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintsubmitenabled", + "displayName": "Enable submission of documents to Google Cloud Print", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintsubmitenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintsubmitenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_defaultprinterselection", + "displayName": "Default printer selection rules", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_defaultprinterselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_defaultprinterselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_defaultprinterselection_defaultprinterselection", + "displayName": "Default printer selection rules (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_disableprintpreview", + "displayName": "Disable Print Preview", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_disableprintpreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_disableprintpreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printertypedenylist", + "displayName": "Disable printer types on the deny list", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printertypedenylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printertypedenylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printertypedenylist_printertypedenylistdesc", + "displayName": "Disable printer types on the deny list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printheaderfooter", + "displayName": "Print Headers and Footers", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printheaderfooter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printheaderfooter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_any", + "displayName": "Allow printing both with and without background graphics", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_enabled", + "displayName": "Allow printing only with background graphics", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_disabled", + "displayName": "Allow printing only without background graphics", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_enabled", + "displayName": "Enable background graphics printing mode by default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_disabled", + "displayName": "Disable background graphics printing mode by default", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingenabled", + "displayName": "Enable printing", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault", + "displayName": "Default printing page size", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault_printingpapersizedefault", + "displayName": "Default printing page size (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpdfasimageavailability", + "displayName": "Print PDF as Image Available", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpdfasimageavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpdfasimageavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode", + "displayName": "Print PostScript Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode", + "displayName": "Print PostScript Mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode_0", + "displayName": "Default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode_1", + "displayName": "Type42", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter", + "displayName": "Use System Default Printer as Default", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode", + "displayName": "Print Rasterization Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode", + "displayName": "Print Rasterization Mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode_0", + "displayName": "Full", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode_1", + "displayName": "Fast", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowclientpairing", + "displayName": "Enable or disable PIN-less authentication for remote access hosts", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowclientpairing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowclientpairing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowfiletransfer", + "displayName": "Allow remote access users to transfer files to/from the host", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowfiletransfer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowfiletransfer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowrelayedconnection", + "displayName": "Enable the use of relay servers by the remote access host", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowrelayedconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowrelayedconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremoteaccessconnections", + "displayName": "Allow remote access connections to this machine", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremoteaccessconnections_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremoteaccessconnections_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremotesupportconnections", + "displayName": "Allow remote support connections to this machine", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremotesupportconnections_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremotesupportconnections_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowuiaccessforremoteassistance", + "displayName": "Allow remote users to interact with elevated windows in remote assistance sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowuiaccessforremoteassistance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowuiaccessforremoteassistance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist", + "displayName": "Configure the required domain names for remote access clients", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist_remoteaccesshostclientdomainlistdesc", + "displayName": "Configure the required domain names for remote access clients (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes", + "displayName": "The maximum size, in bytes, that can be transferred between client and host via clipboard synchronization", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes_remoteaccesshostclipboardsizebytes", + "displayName": "The maximum size, in bytes, that can be transferred between client and host via clipboard synchronization: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist", + "displayName": "Configure the required domain names for remote access hosts", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist_remoteaccesshostdomainlistdesc", + "displayName": "Configure the required domain names for remote access hosts (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal", + "displayName": "Enable firewall traversal from remote access host", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes", + "displayName": "Maximum session duration allowed for remote access connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes_remoteaccesshostmaximumsessiondurationminutes", + "displayName": "Maximum session duration allowed for remote access connections: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain", + "displayName": "Enable curtaining of remote access hosts", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange", + "displayName": "Restrict the UDP port range used by the remote access host", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange_remoteaccesshostudpportrange", + "displayName": "Restrict the UDP port range used by the remote access host (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters", + "displayName": "Additional command line parameters for Google Chrome", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_additionallaunchparameters", + "displayName": "Additional command line parameters for Google Chrome (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled", + "displayName": "Enable sending downloads to Google for deep scanning for users enrolled in the Advanced Protection program", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins", + "displayName": "Allow running plugins that are outdated", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowpopupsduringpageunload", + "displayName": "Allows a page to show popups during its unloading", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowpopupsduringpageunload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowpopupsduringpageunload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins", + "displayName": "Always runs plugins that require authorization (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled", + "displayName": "Allows the AppCache feature to be re-enabled even if it is off by default.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes", + "displayName": "Allow Google Chrome Frame to handle the listed content types", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_chromeframecontenttypesdesc", + "displayName": "Allow Google Chrome Frame to handle the listed content types (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings", + "displayName": "Default HTML renderer for Google Chrome Frame", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings", + "displayName": "Default HTML renderer for Google Chrome Frame (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings_0", + "displayName": "Use the host browser by default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings_1", + "displayName": "Use Google Chrome Frame by default", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit", + "displayName": "Clear site data on browser shutdown (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed", + "displayName": "Suppress Google Cloud Print deprecation messages", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled", + "displayName": "Use the legacy CORS implementation rather than new CORS", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist", + "displayName": "Enable CORS check mitigations in the new CORS implementation", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist_corsmitigationlistdesc", + "displayName": "Enable CORS check mitigations in the new CORS implementation (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting", + "displayName": "Control use of the File Handling API", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_defaultfilehandlingguardsetting", + "displayName": "Control use of the File Handling API (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_defaultfilehandlingguardsetting_2", + "displayName": "Do not allow any web app to access file types via the File Handling API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_defaultfilehandlingguardsetting_3", + "displayName": "Allow web apps to ask the user to grant access to file types via the File Handling API", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting", + "displayName": "Default key generation setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting", + "displayName": "Default key generation setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting_1", + "displayName": "Allow all sites to use key generation", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting_2", + "displayName": "Do not allow any site to use key generation", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting", + "displayName": "Default Flash setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting", + "displayName": "Default Flash setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_1", + "displayName": "Allow all sites to automatically run the Flash plugin", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_2", + "displayName": "Block the Flash plugin", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_3", + "displayName": "Click to play", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl", + "displayName": "Default search provider instant URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl_defaultsearchproviderinstanturl", + "displayName": "Default search provider instant URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams", + "displayName": "Parameters for instant URL which uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams_defaultsearchproviderinstanturlpostparams", + "displayName": "Parameters for instant URL which uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey", + "displayName": "Parameter controlling search term placement for the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey_defaultsearchprovidersearchtermsreplacementkey", + "displayName": "Parameter controlling search term placement for the default search provider (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled", + "displayName": "Enable DHE cipher suites in TLS", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins", + "displayName": "Specify a list of disabled plugins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins_disabledpluginsdesc", + "displayName": "List of disabled plugins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions", + "displayName": "Specify a list of plugins that the user can enable or disable", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_disabledpluginsexceptionsdesc", + "displayName": "List of exceptions to the list of disabled plugins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder", + "displayName": "Specify whether the plugin finder should be disabled (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy", + "displayName": "Disable SPDY protocol", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting", + "displayName": "Disable TLS False Start", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled", + "displayName": "Enable network prediction", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors", + "displayName": "Allow certificates issued by local trust anchors without subjectAlternativeName extension", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting", + "displayName": "Enable deprecated privet printing", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin", + "displayName": "Enable the old web-based signin flow", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures", + "displayName": "Enable deprecated web platform features for a limited time", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures_enabledeprecatedwebplatformfeaturesdesc", + "displayName": "Enable deprecated web platform features for a limited time (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins", + "displayName": "Specify a list of enabled plugins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins_enabledpluginsdesc", + "displayName": "List of enabled plugins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesha1forlocalanchors", + "displayName": "Allow SHA-1 signed certificates issued by local trust anchors", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesha1forlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesha1forlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure", + "displayName": "Enable trust in Symantec Corporation's Legacy PKI Infrastructure", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename", + "displayName": "Enterprise web store name (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename_enterprisewebstorename", + "displayName": "Enterprise web store name (deprecated) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl", + "displayName": "Enterprise web store URL (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl_enterprisewebstoreurl", + "displayName": "Enterprise web store URL (deprecated) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_extensionallowinsecureupdates", + "displayName": "Allow insecure algorithms in integrity checks on extension updates and installs", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_extensionallowinsecureupdates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_extensionallowinsecureupdates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls", + "displayName": "Allow the File Handling API on these web apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls_filehandlingallowedforurlsdesc", + "displayName": "Allow the File Handling API on these web apps (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls", + "displayName": "Block the File Handling API on these web apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls_filehandlingblockedforurlsdesc", + "displayName": "Block the File Handling API on these web apps (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcelegacydefaultreferrerpolicy", + "displayName": "Use a default referrer policy of no-referrer-when-downgrade.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcelegacydefaultreferrerpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcelegacydefaultreferrerpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess", + "displayName": "Force networking code to run in the browser process", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir", + "displayName": "Set Google Chrome Frame user data directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_gcfuserdatadir", + "displayName": "Set user data directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo", + "displayName": "Prevent app promotions from appearing on the new tab page", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled", + "displayName": "Enable HTTP/0.9 support on non-default ports", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled", + "displayName": "Enable Instant", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls", + "displayName": "Allow key generation on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_keygenallowedforurlsdesc", + "displayName": "Allow key generation on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls", + "displayName": "Block key generation on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_keygenblockedforurlsdesc", + "displayName": "Block key generation on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled", + "displayName": "Default legacy SameSite cookie behavior setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled", + "displayName": "Default legacy SameSite cookie behavior setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_1", + "displayName": "Revert to legacy SameSite behavior for cookies on all sites", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_2", + "displayName": "Use SameSite-by-default behavior for cookies on all sites", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled", + "displayName": "Enable chrome://devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken", + "displayName": "The enrollment token of cloud policy on desktop", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken_machinelevelusercloudpolicyenrollmenttoken", + "displayName": "The enrollment token of cloud policy on desktop (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize", + "displayName": "Set media disk cache size in bytes", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize_mediacachesize", + "displayName": "Set media disk cache size: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pachttpsurlstrippingenabled", + "displayName": "Enable PAC URL stripping (for https://)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pachttpsurlstrippingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pachttpsurlstrippingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords", + "displayName": "Allow users to show passwords in Password Manager (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls", + "displayName": "Allow the Flash plugin on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls_pluginsallowedforurlsdesc", + "displayName": "Allow the Flash plugin on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls", + "displayName": "Block the Flash plugin on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls_pluginsblockedforurlsdesc", + "displayName": "Block the Flash plugin on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_rc4enabled", + "displayName": "Enable RC4 cipher suites in TLS", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_rc4enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_rc4enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal", + "displayName": "Enable firewall traversal from remote access client", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies", + "displayName": "Policy overrides for Debug builds of the remote access host", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies_remoteaccesshostdebugoverridepolicies", + "displayName": "Policy overrides for Debug builds of the remote access host (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostrequiretwofactor", + "displayName": "Enable two-factor authentication for remote access hosts", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostrequiretwofactor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostrequiretwofactor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix", + "displayName": "Configure the TalkGadget prefix for remote access hosts", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix_remoteaccesshosttalkgadgetprefix", + "displayName": "Configure the TalkGadget prefix for remote access hosts (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist", + "displayName": "Always render the following URL patterns in Google Chrome Frame", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist_renderinchromeframelistdesc", + "displayName": "Always render the following URL patterns in Google Chrome Frame (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist", + "displayName": "Always render the following URL patterns in the host browser", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_renderinhostlistdesc", + "displayName": "Always render the following URL patterns in the host browser (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode", + "displayName": "Extend Flash content setting to all content (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed", + "displayName": "Allow users to opt in to Safe Browsing extended reporting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck", + "displayName": "Skip the meta tag check in Google Chrome Frame", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin", + "displayName": "Minimum TLS version to fallback to", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin", + "displayName": "Minimum TLS version to fallback to (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin_tls1.1", + "displayName": "TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin_tls1.2", + "displayName": "TLS 1.2", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax", + "displayName": "Maximum SSL version enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax", + "displayName": "Maximum SSL version enabled (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax_tls1.2", + "displayName": "TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax_tls1.3", + "displayName": "TLS 1.3", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled", + "displayName": "Enable creation of supervised users", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt", + "displayName": "Suppress the Google Chrome Frame turndown prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled", + "displayName": "Allow background tabs freeze", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed", + "displayName": "Allow sites to simultaneously navigate and open pop-ups", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled", + "displayName": "Enable a TLS 1.3 security feature for local trust anchors.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled", + "displayName": "Enable 3DES cipher suites in TLS", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols", + "displayName": "Use Legacy Form Controls until M84.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled", + "displayName": "Control the User-Agent Client Hints feature.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled", + "displayName": "Re-enable Web Components v0 API until M84.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies", + "displayName": "Allow WebDriver to Override Incompatible Policies", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled", + "displayName": "Enable showing the welcome page on the first browser launch following OS upgrade", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture salted hashes of passwords.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls_passwordprotectionloginurlsdesc", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture salted hashes of passwords. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger", + "displayName": "Password protection warning trigger", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger", + "displayName": "Password protection warning trigger (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_0", + "displayName": "Password protection warning is off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_1", + "displayName": "Password protection warning is triggered by password reuse", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_2", + "displayName": "Password protection warning is triggered by password reuse on phishing page", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains", + "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings.", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains_safebrowsingallowlistdomainsdesc", + "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingextendedreportingenabled", + "displayName": "Enable Safe Browsing Extended Reporting", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingextendedreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingextendedreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel", + "displayName": "Safe Browsing Protection Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel", + "displayName": "Safe Browsing Protection Level (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel_0", + "displayName": "Safe Browsing is never active.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel_1", + "displayName": "Safe Browsing is active in the standard mode.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel_2", + "displayName": "Safe Browsing is active in the enhanced mode. This mode provides better security, but requires sharing more browsing information with Google.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins", + "displayName": "Allow Same Origin Tab capture by these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_sameorigintabcaptureallowedbyoriginsdesc", + "displayName": "Allow Same Origin Tab capture by these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed", + "displayName": "Allow or deny screen capture", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins", + "displayName": "Allow Desktop, Window, and Tab capture by these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_screencaptureallowedbyoriginsdesc", + "displayName": "Allow Desktop, Window, and Tab capture by these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins", + "displayName": "Allow Tab capture by these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_tabcaptureallowedbyoriginsdesc", + "displayName": "Allow Tab capture by these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins", + "displayName": "Allow Window and Tab capture by these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins_windowcaptureallowedbyoriginsdesc", + "displayName": "Allow Window and Tab capture by these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepageisnewtabpage", + "displayName": "Use New Tab Page as homepage", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepageisnewtabpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepageisnewtabpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepagelocation", + "displayName": "Configure the home page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepagelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepagelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepagelocation_homepagelocation", + "displayName": "Home page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_newtabpagelocation", + "displayName": "Configure the New Tab page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_newtabpagelocation", + "displayName": "New Tab page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup", + "displayName": "Action on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup", + "displayName": "Action on startup (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_5", + "displayName": "Open New Tab Page", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls", + "displayName": "URLs to open on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls_restoreonstartupurlsdesc", + "displayName": "URLs to open on startup (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_showhomebutton", + "displayName": "Show Home button on toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_showhomebutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_showhomebutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_boottocloudmode", + "displayName": "Boot To Cloud Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_clouddesktop_boottocloudmode_0", + "displayName": "Not Configured", + "description": "Not Configured" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_boottocloudmode_1", + "displayName": "Enable Boot to Cloud Desktop", + "description": "Enable Boot to Cloud Desktop" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout", + "displayName": "Set Max Connection Timeout", + "options": [ + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_5", + "displayName": "5 min", + "description": "5 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_6", + "displayName": "6 min", + "description": "6 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_7", + "displayName": "7 min", + "description": "7 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_8", + "displayName": "8 min", + "description": "8 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_9", + "displayName": "9 min", + "description": "9 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_10", + "displayName": "10 min", + "description": "10 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_11", + "displayName": "11 min", + "description": "11 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_12", + "displayName": "12 min", + "description": "12 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_13", + "displayName": "13 min", + "description": "13 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_14", + "displayName": "14 min", + "description": "14 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_15", + "displayName": "15 min", + "description": "15 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_16", + "displayName": "16 min", + "description": "16 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_17", + "displayName": "17 min", + "description": "17 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_18", + "displayName": "18 min", + "description": "18 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_19", + "displayName": "19 min", + "description": "19 min" + }, + { + "id": "device_vendor_msft_policy_config_clouddesktop_setmaxconnectiontimeout_20", + "displayName": "20 min", + "description": "20 min" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowbluetooth", + "displayName": "Allow Bluetooth", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_allowbluetooth_0", + "displayName": "Disallow Bluetooth. The radio in the Bluetooth control panel will be grayed out and the user will not be able to turn Bluetooth on.", + "description": "Disallow Bluetooth. If this is set to 0, the radio in the Bluetooth control panel will be grayed out and the user will not be able to turn Bluetooth on." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowbluetooth_1", + "displayName": "Reserved. The radio in the Bluetooth control panel will be functional and the user will be able to turn Bluetooth on.", + "description": "Reserved. If this is set to 1, the radio in the Bluetooth control panel will be functional and the user will be able to turn Bluetooth on." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowbluetooth_2", + "displayName": "Allow Bluetooth. The radio in the Bluetooth control panel will be functional and the user will be able to turn Bluetooth on.", + "description": "Allow Bluetooth. If this is set to 2, the radio in the Bluetooth control panel will be functional and the user will be able to turn Bluetooth on." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardata", + "displayName": "Allow Cellular Data", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardata_0", + "displayName": "Do not allow the cellular data channel. The user cannot turn it on. This value is not supported in Windows 10, version 1511.", + "description": "Do not allow the cellular data channel. The user cannot turn it on. This value is not supported in Windows 10, version 1511." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardata_1", + "displayName": "Allow the cellular data channel. The user can turn it off.", + "description": "Allow the cellular data channel. The user can turn it off." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardata_2", + "displayName": "Allow the cellular data channel. The user cannot turn it off.", + "description": "Allow the cellular data channel. The user cannot turn it off." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardataroaming", + "displayName": "Allow Cellular Data Roaming", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardataroaming_0", + "displayName": "Do not allow cellular data roaming. The user cannot turn it on. This value is not supported in Windows 10, version 1511.", + "description": "Do not allow cellular data roaming. The user cannot turn it on. This value is not supported in Windows 10, version 1511." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardataroaming_1", + "displayName": "Allow cellular data roaming.", + "description": "Allow cellular data roaming." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowcellulardataroaming_2", + "displayName": "Allow cellular data roaming on. The user cannot turn it off.", + "description": "Allow cellular data roaming on. The user cannot turn it off." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowconnecteddevices", + "displayName": "Allow Connected Devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_allowconnecteddevices_0", + "displayName": "Block", + "description": "Disable (CDP service not available)." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowconnecteddevices_1", + "displayName": "Allow", + "description": "Allow (CDP service available)." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowphonepclinking", + "displayName": "Allow Phone PC Linking", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_allowphonepclinking_0", + "displayName": "Block", + "description": "Do not link." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowphonepclinking_1", + "displayName": "Allow", + "description": "Allow phone-PC linking." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowusbconnection", + "displayName": "Allow USB Connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_allowusbconnection_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowusbconnection_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowvpnovercellular", + "displayName": "Allow VPN Over Cellular", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_allowvpnovercellular_0", + "displayName": "Block", + "description": "VPN is not allowed over cellular." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowvpnovercellular_1", + "displayName": "Allow", + "description": "VPN can use any connection, including cellular." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowvpnroamingovercellular", + "displayName": "Allow VPN Roaming Over Cellular", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_allowvpnroamingovercellular_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_connectivity_allowvpnroamingovercellular_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_diableprintingoverhttp", + "displayName": "Turn off printing over HTTP", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_diableprintingoverhttp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_connectivity_diableprintingoverhttp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_disabledownloadingofprintdriversoverhttp", + "displayName": "Turn off downloading of print drivers over HTTP", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_disabledownloadingofprintdriversoverhttp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_connectivity_disabledownloadingofprintdriversoverhttp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_disableinternetdownloadforwebpublishingandonlineorderingwizards", + "displayName": "Turn off Internet download for Web publishing and online ordering wizards", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_disableinternetdownloadforwebpublishingandonlineorderingwizards_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_connectivity_disableinternetdownloadforwebpublishingandonlineorderingwizards_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_disallownetworkconnectivityactivetests", + "displayName": "Disallow Network Connectivity Active Tests", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_disallownetworkconnectivityactivetests_1", + "displayName": "Allow", + "description": "Allow" + }, + { + "id": "device_vendor_msft_policy_config_connectivity_disallownetworkconnectivityactivetests_0", + "displayName": "Block", + "description": "Block" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths", + "displayName": "Hardened UNC Paths", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths_pol_hardenedpaths", + "displayName": "Hardened UNC Paths: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths_pol_hardenedpaths_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_connectivity_hardeneduncpaths_pol_hardenedpaths_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_connectivity_prohibitinstallationandconfigurationofnetworkbridge", + "displayName": "Prohibit installation and configuration of Network Bridge on your DNS domain network", + "options": [ + { + "id": "device_vendor_msft_policy_config_connectivity_prohibitinstallationandconfigurationofnetworkbridge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_connectivity_prohibitinstallationandconfigurationofnetworkbridge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_controlpolicyconflict_mdmwinsovergp", + "displayName": "MDM Wins Over GP", + "options": [ + { + "id": "device_vendor_msft_policy_config_controlpolicyconflict_mdmwinsovergp_0", + "displayName": "", + "description": "" + }, + { + "id": "device_vendor_msft_policy_config_controlpolicyconflict_mdmwinsovergp_1", + "displayName": "The MDM policy is used and the GP policy is blocked.", + "description": "The MDM policy is used and the GP policy is blocked." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_credentialproviders_allowpinlogon", + "displayName": "Turn on convenience PIN sign-in", + "options": [ + { + "id": "device_vendor_msft_policy_config_credentialproviders_allowpinlogon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_credentialproviders_allowpinlogon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_credentialproviders_blockpicturepassword", + "displayName": "Turn off picture password sign-in", + "options": [ + { + "id": "device_vendor_msft_policy_config_credentialproviders_blockpicturepassword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_credentialproviders_blockpicturepassword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_credentialproviders_disableautomaticredeploymentcredentials", + "displayName": "Disable Automatic Re Deployment Credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_credentialproviders_disableautomaticredeploymentcredentials_0", + "displayName": "Disabled", + "description": "Enable the visibility of the credentials for Autopilot Reset." + }, + { + "id": "device_vendor_msft_policy_config_credentialproviders_disableautomaticredeploymentcredentials_1", + "displayName": "Enabled", + "description": "Disable visibility of the credentials for Autopilot Reset." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_credentialsdelegation_remotehostallowsdelegationofnonexportablecredentials", + "displayName": "Remote host allows delegation of non-exportable credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_credentialsdelegation_remotehostallowsdelegationofnonexportablecredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_credentialsdelegation_remotehostallowsdelegationofnonexportablecredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_credentialsui_disablepasswordreveal", + "displayName": "Do not display the password reveal button", + "options": [ + { + "id": "device_vendor_msft_policy_config_credentialsui_disablepasswordreveal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_credentialsui_disablepasswordreveal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_credentialsui_enumerateadministrators", + "displayName": "Enumerate administrator accounts on elevation", + "options": [ + { + "id": "device_vendor_msft_policy_config_credentialsui_enumerateadministrators_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_credentialsui_enumerateadministrators_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_cryptography_allowfipsalgorithmpolicy", + "displayName": "Allow Fips Algorithm Policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_cryptography_allowfipsalgorithmpolicy_1", + "displayName": "Allow", + "description": "Allow" + }, + { + "id": "device_vendor_msft_policy_config_cryptography_allowfipsalgorithmpolicy_0", + "displayName": "Block", + "description": "Block" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_cryptography_tlsciphersuites", + "displayName": "TLS Cipher Suites", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_dataprotection_allowdirectmemoryaccess", + "displayName": "Allow Direct Memory Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_dataprotection_allowdirectmemoryaccess_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_dataprotection_allowdirectmemoryaccess_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_dataprotection_legacyselectivewipeid", + "displayName": "Legacy Selective Wipe ID", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost3g", + "displayName": "Set 3G Cost", + "options": [ + { + "id": "device_vendor_msft_policy_config_datausage_setcost3g_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost3g_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost3g_cost3g_dropdownlist", + "displayName": "Please select a 3G connection cost value to set: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_datausage_setcost3g_cost3g_dropdownlist_1", + "displayName": "Unrestricted", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost3g_cost3g_dropdownlist_2", + "displayName": "Fixed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost3g_cost3g_dropdownlist_3", + "displayName": "Variable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost4g", + "displayName": "Set 4G Cost", + "options": [ + { + "id": "device_vendor_msft_policy_config_datausage_setcost4g_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost4g_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost4g_cost4g_dropdownlist", + "displayName": "Please select a 4G connection cost value to set: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_datausage_setcost4g_cost4g_dropdownlist_1", + "displayName": "Unrestricted", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost4g_cost4g_dropdownlist_2", + "displayName": "Fixed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_datausage_setcost4g_cost4g_dropdownlist_3", + "displayName": "Variable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowarchivescanning", + "displayName": "Allow Archive Scanning", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowarchivescanning_0", + "displayName": "Not allowed. Turns off scanning on archived files.", + "description": "Not allowed. Turns off scanning on archived files." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowarchivescanning_1", + "displayName": "Allowed. Scans the archive files.", + "description": "Allowed. Scans the archive files." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowbehaviormonitoring", + "displayName": "Allow Behavior Monitoring", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowbehaviormonitoring_0", + "displayName": "Not allowed. Turns off behavior monitoring.", + "description": "Not allowed. Turns off behavior monitoring." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowbehaviormonitoring_1", + "displayName": "Allowed. Turns on real-time behavior monitoring.", + "description": "Allowed. Turns on real-time behavior monitoring." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowcloudprotection", + "displayName": "Allow Cloud Protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowcloudprotection_0", + "displayName": "Not allowed. Turns off Cloud Protection.", + "description": "Not allowed. Turns off Cloud Protection." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowcloudprotection_1", + "displayName": "Allowed. Turns on Cloud Protection.", + "description": "Allowed. Turns on Cloud Protection." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowemailscanning", + "displayName": "Allow Email Scanning", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowemailscanning_0", + "displayName": "Not allowed. Turns off email scanning.", + "description": "Not allowed. Turns off email scanning." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowemailscanning_1", + "displayName": "Allowed. Turns on email scanning.", + "description": "Allowed. Turns on email scanning." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowfullscanonmappednetworkdrives", + "displayName": "Allow Full Scan On Mapped Network Drives", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowfullscanonmappednetworkdrives_0", + "displayName": "Not allowed. Disables scanning on mapped network drives.", + "description": "Not allowed. Disables scanning on mapped network drives." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowfullscanonmappednetworkdrives_1", + "displayName": "Allowed. Scans mapped network drives.", + "description": "Allowed. Scans mapped network drives." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowfullscanremovabledrivescanning", + "displayName": "Allow Full Scan Removable Drive Scanning", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowfullscanremovabledrivescanning_0", + "displayName": "Not allowed. Turns off scanning on removable drives.", + "description": "Not allowed. Turns off scanning on removable drives." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowfullscanremovabledrivescanning_1", + "displayName": "Allowed. Scans removable drives.", + "description": "Allowed. Scans removable drives." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowintrusionpreventionsystem", + "displayName": "[Deprecated] Allow Intrusion Prevention System", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowintrusionpreventionsystem_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowintrusionpreventionsystem_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowioavprotection", + "displayName": "Allow scanning of all downloaded files and attachments", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowioavprotection_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowioavprotection_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowonaccessprotection", + "displayName": "Allow On Access Protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowonaccessprotection_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowonaccessprotection_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowrealtimemonitoring", + "displayName": "Allow Realtime Monitoring", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowrealtimemonitoring_0", + "displayName": "Not allowed. Turns off the real-time monitoring service.", + "description": "Not allowed. Turns off the real-time monitoring service." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowrealtimemonitoring_1", + "displayName": "Allowed. Turns on and runs the real-time monitoring service.", + "description": "Allowed. Turns on and runs the real-time monitoring service." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowscanningnetworkfiles", + "displayName": "Allow Scanning Network Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowscanningnetworkfiles_0", + "displayName": "Not allowed. Turns off scanning of network files.", + "description": "Not allowed. Turns off scanning of network files." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowscanningnetworkfiles_1", + "displayName": "Allowed. Scans network files.", + "description": "Allowed. Scans network files." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowscriptscanning", + "displayName": "Allow Script Scanning", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowscriptscanning_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowscriptscanning_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_allowuseruiaccess", + "displayName": "Allow User UI Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_allowuseruiaccess_0", + "displayName": "Not allowed. Prevents users from accessing UI.", + "description": "Not allowed. Prevents users from accessing UI." + }, + { + "id": "device_vendor_msft_policy_config_defender_allowuseruiaccess_1", + "displayName": "Allowed. Lets users access UI.", + "description": "Allowed. Lets users access UI." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductiononlyexclusions", + "displayName": "Attack Surface Reduction Only Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules", + "displayName": "Attack Surface Reduction Rules", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers", + "displayName": "Block abuse of exploited vulnerable signed drivers (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockabuseofexploitedvulnerablesigneddrivers_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses", + "displayName": "Block Adobe Reader from creating child processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockadobereaderfromcreatingchildprocesses_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses", + "displayName": "Block all Office applications from creating child processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockallofficeapplicationsfromcreatingchildprocesses_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem", + "displayName": "Block credential stealing from the Windows local security authority subsystem", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockcredentialstealingfromwindowslocalsecurityauthoritysubsystem_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail", + "displayName": "Block executable content from email client and webmail", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablecontentfromemailclientandwebmail_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion", + "displayName": "Block executable files from running unless they meet a prevalence, age, or trusted list criterion", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutablefilesrunningunlesstheymeetprevalenceagetrustedlistcriterion_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts", + "displayName": "Block execution of potentially obfuscated scripts", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockexecutionofpotentiallyobfuscatedscripts_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent", + "displayName": "Block JavaScript or VBScript from launching downloaded executable content", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockjavascriptorvbscriptfromlaunchingdownloadedexecutablecontent_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent", + "displayName": "Block Office applications from creating executable content", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfromcreatingexecutablecontent_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses", + "displayName": "Block Office applications from injecting code into other processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficeapplicationsfrominjectingcodeintootherprocesses_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses", + "displayName": "Block Office communication application from creating child processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockofficecommunicationappfromcreatingchildprocesses_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription", + "displayName": "Block persistence through WMI event subscription", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockpersistencethroughwmieventsubscription_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands", + "displayName": "Block process creations originating from PSExec and WMI commands", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockprocesscreationsfrompsexecandwmicommands_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode", + "displayName": "[PREVIEW] Block rebooting machine in Safe Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockrebootingmachineinsafemode_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb", + "displayName": "Block untrusted and unsigned processes that run from USB", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuntrustedunsignedprocessesthatrunfromusb_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools", + "displayName": "[PREVIEW] Block use of copied or impersonated system tools", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockuseofcopiedorimpersonatedsystemtools_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers", + "displayName": "Block Webshell creation for Servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwebshellcreationforservers_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros", + "displayName": "Block Win32 API calls from Office macros", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_blockwin32apicallsfromofficemacros_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware", + "displayName": "Use advanced protection against ransomware", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_off", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_block", + "displayName": "Block", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_audit", + "displayName": "Audit", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_warn", + "displayName": "Warn", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_attacksurfacereductionrules_useadvancedprotectionagainstransomware_perruleexclusions", + "displayName": "ASR Only Per Rule Exclusions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_avgcpuloadfactor", + "displayName": "Avg CPU Load Factor", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_checkforsignaturesbeforerunningscan", + "displayName": "Check For Signatures Before Running Scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_checkforsignaturesbeforerunningscan_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_defender_checkforsignaturesbeforerunningscan_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_cloudblocklevel", + "displayName": "Cloud Block Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_cloudblocklevel_0", + "displayName": "Default State", + "description": "Default State" + }, + { + "id": "device_vendor_msft_policy_config_defender_cloudblocklevel_2", + "displayName": "High", + "description": "High" + }, + { + "id": "device_vendor_msft_policy_config_defender_cloudblocklevel_4", + "displayName": "High Plus", + "description": "HighPlus" + }, + { + "id": "device_vendor_msft_policy_config_defender_cloudblocklevel_6", + "displayName": "Zero Tolerance", + "description": "ZeroTolerance" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_cloudextendedtimeout", + "displayName": "Cloud Extended Timeout", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_controlledfolderaccessallowedapplications", + "displayName": "Controlled Folder Access Allowed Applications", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_controlledfolderaccessprotectedfolders", + "displayName": "Controlled Folder Access Protected Folders", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_daystoretaincleanedmalware", + "displayName": "Days To Retain Cleaned Malware", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_disablecatchupfullscan", + "displayName": "Disable Catchup Full Scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_disablecatchupfullscan_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_defender_disablecatchupfullscan_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_disablecatchupquickscan", + "displayName": "Disable Catchup Quick Scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_disablecatchupquickscan_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_defender_disablecatchupquickscan_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess", + "displayName": "Enable Controlled Folder Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_1", + "displayName": "Enabled", + "description": "Enabled" + }, + { + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_2", + "displayName": "Audit Mode", + "description": "Audit Mode" + }, + { + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_3", + "displayName": "Block disk modification only", + "description": "Block disk modification only" + }, + { + "id": "device_vendor_msft_policy_config_defender_enablecontrolledfolderaccess_4", + "displayName": "Audit disk modification only", + "description": "Audit disk modification only" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_enablelowcpupriority", + "displayName": "Enable Low CPU Priority", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_enablelowcpupriority_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_defender_enablelowcpupriority_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_enablenetworkprotection", + "displayName": "Enable Network Protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_enablenetworkprotection_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_defender_enablenetworkprotection_1", + "displayName": "Enabled (block mode)", + "description": "Enabled (block mode)" + }, + { + "id": "device_vendor_msft_policy_config_defender_enablenetworkprotection_2", + "displayName": "Enabled (audit mode)", + "description": "Enabled (audit mode)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_excludedextensions", + "displayName": "Excluded Extensions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_excludedpaths", + "displayName": "Excluded Paths", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_excludedprocesses", + "displayName": "Excluded Processes", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_puaprotection", + "displayName": "PUA Protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_puaprotection_0", + "displayName": "PUA Protection off. Windows Defender will not protect against potentially unwanted applications.", + "description": "PUA Protection off. Windows Defender will not protect against potentially unwanted applications." + }, + { + "id": "device_vendor_msft_policy_config_defender_puaprotection_1", + "displayName": "PUA Protection on. Detected items are blocked. They will show in history along with other threats.", + "description": "PUA Protection on. Detected items are blocked. They will show in history along with other threats." + }, + { + "id": "device_vendor_msft_policy_config_defender_puaprotection_2", + "displayName": "Audit mode. Windows Defender will detect potentially unwanted applications, but take no action. You can review information about the applications Windows Defender would have taken action against by searching for events created by Windows Defender in the Event Viewer.", + "description": "Audit mode. Windows Defender will detect potentially unwanted applications, but take no action. You can review information about the applications Windows Defender would have taken action against by searching for events created by Windows Defender in the Event Viewer." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_realtimescandirection", + "displayName": "Real Time Scan Direction", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_realtimescandirection_0", + "displayName": "Monitor all files (bi-directional).", + "description": "Monitor all files (bi-directional)." + }, + { + "id": "device_vendor_msft_policy_config_defender_realtimescandirection_1", + "displayName": "Monitor incoming files.", + "description": "Monitor incoming files." + }, + { + "id": "device_vendor_msft_policy_config_defender_realtimescandirection_2", + "displayName": "Monitor outgoing files.", + "description": "Monitor outgoing files." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_scanparameter", + "displayName": "Scan Parameter", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_scanparameter_1", + "displayName": "Quick scan", + "description": "Quick scan" + }, + { + "id": "device_vendor_msft_policy_config_defender_scanparameter_2", + "displayName": "Full scan", + "description": "Full scan" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulequickscantime", + "displayName": "Schedule Quick Scan Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday", + "displayName": "Schedule Scan Day", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_0", + "displayName": "Every day", + "description": "Every day" + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_1", + "displayName": "Sunday", + "description": "Sunday" + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_2", + "displayName": "Monday", + "description": "Monday" + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_3", + "displayName": "Tuesday", + "description": "Tuesday" + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_4", + "displayName": "Wednesday", + "description": "Wednesday" + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_5", + "displayName": "Thursday", + "description": "Thursday" + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_6", + "displayName": "Friday", + "description": "Friday" + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_7", + "displayName": "Saturday", + "description": "Saturday" + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescanday_8", + "displayName": "No scheduled scan", + "description": "No scheduled scan" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_schedulescantime", + "displayName": "Schedule Scan Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_securityintelligencelocation", + "displayName": "Security Intelligence Location", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_signatureupdatefallbackorder", + "displayName": "Signature Update Fallback Order", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_signatureupdatefilesharessources", + "displayName": "Signature Update File Shares Sources", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_signatureupdateinterval", + "displayName": "Signature Update Interval", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_submitsamplesconsent", + "displayName": "Submit Samples Consent", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_submitsamplesconsent_0", + "displayName": "Always prompt.", + "description": "Always prompt." + }, + { + "id": "device_vendor_msft_policy_config_defender_submitsamplesconsent_1", + "displayName": "Send safe samples automatically.", + "description": "Send safe samples automatically." + }, + { + "id": "device_vendor_msft_policy_config_defender_submitsamplesconsent_2", + "displayName": "Never send.", + "description": "Never send." + }, + { + "id": "device_vendor_msft_policy_config_defender_submitsamplesconsent_3", + "displayName": "Send all samples automatically.", + "description": "Send all samples automatically." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction", + "displayName": "Threat Severity Default Action", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats", + "displayName": "Remediation action for High severity threats", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_clean", + "displayName": "Clean. Service tries to recover files and try to disinfect.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_quarantine", + "displayName": "Quarantine. Moves files to quarantine.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_remove", + "displayName": "Remove. Removes files from system.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_allow", + "displayName": "Allow. Allows file/does none of the above actions.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_userdefined", + "displayName": "User defined. Requires user to make a decision on which action to take.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_highseveritythreats_block", + "displayName": "Block. Blocks file execution.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats", + "displayName": "Remediation action for Low severity threats", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_clean", + "displayName": "Clean. Service tries to recover files and try to disinfect.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_quarantine", + "displayName": "Quarantine. Moves files to quarantine.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_remove", + "displayName": "Remove. Removes files from system.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_allow", + "displayName": "Allow. Allows file/does none of the above actions.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_userdefined", + "displayName": "User defined. Requires user to make a decision on which action to take.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_lowseveritythreats_block", + "displayName": "Block. Blocks file execution.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats", + "displayName": "Remediation action for Moderate severity threats", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_clean", + "displayName": "Clean. Service tries to recover files and try to disinfect.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_quarantine", + "displayName": "Quarantine. Moves files to quarantine.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_remove", + "displayName": "Remove. Removes files from system.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_allow", + "displayName": "Allow. Allows file/does none of the above actions.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_userdefined", + "displayName": "User defined. Requires user to make a decision on which action to take.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_moderateseveritythreats_block", + "displayName": "Block. Blocks file execution.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats", + "displayName": "Remediation action for Severe threats", + "options": [ + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats_clean", + "displayName": "Clean. Service tries to recover files and try to disinfect.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats_quarantine", + "displayName": "Quarantine. Moves files to quarantine.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats_remove", + "displayName": "Remove. Removes files from system.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats_allow", + "displayName": "Allow. Allows file/does none of the above actions.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats_userdefined", + "displayName": "User defined. Requires user to make a decision on which action to take.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_defender_threatseveritydefaultaction_severethreats_block", + "displayName": "Block. Blocks file execution.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_doabsolutemaxcachesize", + "displayName": "DO Absolute Max Cache Size", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_doallowvpnpeercaching", + "displayName": "DO Allow VPN Peer Caching", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_doallowvpnpeercaching_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_doallowvpnpeercaching_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_docachehost", + "displayName": "DO Cache Host", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_docachehostsource", + "displayName": "DO Cache Host Source", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodelaybackgrounddownloadfromhttp", + "displayName": "DO Delay Background Download From Http", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodelaycacheserverfallbackbackground", + "displayName": "DO Delay Cache Server Fallback Background", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodelaycacheserverfallbackforeground", + "displayName": "DO Delay Cache Server Fallback Foreground", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodelayforegrounddownloadfromhttp", + "displayName": "DO Delay Foreground Download From Http", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodisallowcacheserverdownloadsonvpn", + "displayName": "DO Disallow Cache Server Downloads On VPN", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodisallowcacheserverdownloadsonvpn_0", + "displayName": "Allowed", + "description": "Allowed" + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodisallowcacheserverdownloadsonvpn_1", + "displayName": "Not allowed", + "description": "Not allowed" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode", + "displayName": "DO Download Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_0", + "displayName": "HTTP only, no peering.", + "description": "HTTP only, no peering." + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_1", + "displayName": "HTTP blended with peering behind the same NAT.", + "description": "HTTP blended with peering behind the same NAT." + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_2", + "displayName": "When this option is selected, peering will cross NATs. To create a custom group use Group ID in combination with Mode 2.", + "description": "When this option is selected, peering will cross NATs. To create a custom group use Group ID in combination with Mode 2." + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_3", + "displayName": "HTTP blended with Internet peering.", + "description": "HTTP blended with Internet peering." + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_99", + "displayName": "9 - Simple download mode with no peering. Delivery Optimization downloads using HTTP only and does not attempt to contact the Delivery Optimization cloud services. Added in Windows 10, version 1607.", + "description": "9 - Simple download mode with no peering. Delivery Optimization downloads using HTTP only and does not attempt to contact the Delivery Optimization cloud services. Added in Windows 10, version 1607." + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dodownloadmode_100", + "displayName": "Bypass mode. Windows 10: Do not use Delivery Optimization and use BITS instead. Windows 11: Deprecated, use Simple mode instead.", + "description": "Bypass mode. Windows 10: Do not use Delivery Optimization and use BITS instead. Windows 11: Deprecated, use Simple mode instead." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupid", + "displayName": "DO Group Id", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource", + "displayName": "DO Group Id Source", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource_0", + "displayName": "Unset", + "description": "Unset" + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource_1", + "displayName": "AD site", + "description": "AD site" + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource_2", + "displayName": "Authenticated domain SID", + "description": "Authenticated domain SID" + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource_3", + "displayName": "DHCP user option", + "description": "DHCP user option" + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource_4", + "displayName": "DNS suffix", + "description": "DNS suffix" + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dogroupidsource_5", + "displayName": "AAD", + "description": "AAD" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domaxbackgrounddownloadbandwidth", + "displayName": "DO Max Background Download Bandwidth", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domaxcacheage", + "displayName": "DO Max Cache Age", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domaxcachesize", + "displayName": "DO Max Cache Size", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domaxdownloadbandwidth", + "displayName": "DO Max Download Bandwidth", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domaxforegrounddownloadbandwidth", + "displayName": "DO Max Foreground Download Bandwidth", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domaxuploadbandwidth", + "displayName": "DO Max Upload Bandwidth", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dominbackgroundqos", + "displayName": "DO Min Background Qos", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dominbatterypercentageallowedtoupload", + "displayName": "DO Min Battery Percentage Allowed To Upload", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domindisksizeallowedtopeer", + "displayName": "DO Min Disk Size Allowed To Peer", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dominfilesizetocache", + "displayName": "DO Min File Size To Cache", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dominramallowedtopeer", + "displayName": "DO Min RAM Allowed To Peer", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domodifycachedrive", + "displayName": "DO Modify Cache Drive", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_domonthlyuploaddatacap", + "displayName": "DO Monthly Upload Data Cap", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dopercentagemaxbackgroundbandwidth", + "displayName": "DO Percentage Max Background Bandwidth", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dopercentagemaxforegroundbandwidth", + "displayName": "DO Percentage Max Foreground Bandwidth", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dorestrictpeerselectionby", + "displayName": "DO Restrict Peer Selection By", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dorestrictpeerselectionby_0", + "displayName": "None.", + "description": "None." + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dorestrictpeerselectionby_1", + "displayName": "Subnet mask.", + "description": "Subnet mask." + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dorestrictpeerselectionby_2", + "displayName": "Local peer discovery (DNS-SD).", + "description": "Local peer discovery (DNS-SD)." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth", + "displayName": "Set Business Hours to Limit Background Download Bandwidth", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom", + "displayName": "From: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_0", + "displayName": "12 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_1", + "displayName": "1 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_2", + "displayName": "2 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_3", + "displayName": "3 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_4", + "displayName": "4 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_5", + "displayName": "5 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_6", + "displayName": "6 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_7", + "displayName": "7 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_8", + "displayName": "8 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_9", + "displayName": "9 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_10", + "displayName": "10 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_11", + "displayName": "11 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_12", + "displayName": "12 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_13", + "displayName": "1 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_14", + "displayName": "2 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_15", + "displayName": "3 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_16", + "displayName": "4 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_17", + "displayName": "5 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_18", + "displayName": "6 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_19", + "displayName": "7 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_20", + "displayName": "8 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_21", + "displayName": "9 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_22", + "displayName": "10 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthfrom_23", + "displayName": "11 PM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthin", + "displayName": "\r\nMaximum Background Download Bandwidth (percentage) during Business Hours:\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthout", + "displayName": "\r\nMaximum Background Download Bandwidth (percentage) outside of Business Hours:\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto", + "displayName": "To: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_0", + "displayName": "12 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_1", + "displayName": "1 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_2", + "displayName": "2 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_3", + "displayName": "3 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_4", + "displayName": "4 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_5", + "displayName": "5 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_6", + "displayName": "6 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_7", + "displayName": "7 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_8", + "displayName": "8 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_9", + "displayName": "9 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_10", + "displayName": "10 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_11", + "displayName": "11 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_12", + "displayName": "12 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_13", + "displayName": "1 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_14", + "displayName": "2 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_15", + "displayName": "3 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_16", + "displayName": "4 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_17", + "displayName": "5 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_18", + "displayName": "6 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_19", + "displayName": "7 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_20", + "displayName": "8 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_21", + "displayName": "9 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_22", + "displayName": "10 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitbackgrounddownloadbandwidth_sethourstolimitbackgrounddownloadbandwidthto_23", + "displayName": "11 PM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth", + "displayName": "Set Business Hours to Limit Foreground Download Bandwidth", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom", + "displayName": "From: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_0", + "displayName": "12 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_1", + "displayName": "1 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_2", + "displayName": "2 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_3", + "displayName": "3 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_4", + "displayName": "4 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_5", + "displayName": "5 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_6", + "displayName": "6 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_7", + "displayName": "7 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_8", + "displayName": "8 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_9", + "displayName": "9 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_10", + "displayName": "10 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_11", + "displayName": "11 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_12", + "displayName": "12 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_13", + "displayName": "1 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_14", + "displayName": "2 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_15", + "displayName": "3 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_16", + "displayName": "4 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_17", + "displayName": "5 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_18", + "displayName": "6 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_19", + "displayName": "7 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_20", + "displayName": "8 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_21", + "displayName": "9 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_22", + "displayName": "10 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthfrom_23", + "displayName": "11 PM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthin", + "displayName": "\r\nMaximum Foreground Download Bandwidth (percentage) during Business Hours:\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthout", + "displayName": "\r\nMaximum Foreground Download Bandwidth (percentage) outside of Business Hours:\r\n", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto", + "displayName": "To: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_0", + "displayName": "12 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_1", + "displayName": "1 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_2", + "displayName": "2 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_3", + "displayName": "3 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_4", + "displayName": "4 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_5", + "displayName": "5 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_6", + "displayName": "6 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_7", + "displayName": "7 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_8", + "displayName": "8 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_9", + "displayName": "9 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_10", + "displayName": "10 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_11", + "displayName": "11 AM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_12", + "displayName": "12 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_13", + "displayName": "1 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_14", + "displayName": "2 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_15", + "displayName": "3 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_16", + "displayName": "4 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_17", + "displayName": "5 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_18", + "displayName": "6 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_19", + "displayName": "7 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_20", + "displayName": "8 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_21", + "displayName": "9 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_22", + "displayName": "10 PM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dosethourstolimitforegrounddownloadbandwidth_sethourstolimitforegrounddownloadbandwidthto_23", + "displayName": "11 PM", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deliveryoptimization_dovpnkeywords", + "displayName": "DO Vpn Keywords", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableadditionalsources", + "displayName": "Enable App Installer Additional Sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableadditionalsources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableadditionalsources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableadditionalsources_additionalsources", + "displayName": "Additional Sources: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableallowedsources", + "displayName": "Enable App Installer Allowed Sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableallowedsources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableallowedsources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableallowedsources_allowedsources", + "displayName": "Allowed Sources: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableappinstaller", + "displayName": "Enable App Installer", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableappinstaller_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableappinstaller_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enabledefaultsource", + "displayName": "Enable App Installer Default Source", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enabledefaultsource_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enabledefaultsource_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableexperimentalfeatures", + "displayName": "Enable App Installer Experimental Features", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableexperimentalfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enableexperimentalfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablehashoverride", + "displayName": "Enable App Installer Hash Override", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablehashoverride_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablehashoverride_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalmanifestfiles", + "displayName": "Enable App Installer Local Manifest Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalmanifestfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablelocalmanifestfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemicrosoftstoresource", + "displayName": "Enable App Installer Microsoft Store Source", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemicrosoftstoresource_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemicrosoftstoresource_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemsappinstallerprotocol", + "displayName": "Enable App Installer ms-appinstaller protocol", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemsappinstallerprotocol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablemsappinstallerprotocol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablesettings", + "displayName": "Enable App Installer Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_enablesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_sourceautoupdateinterval", + "displayName": "Set App Installer Source Auto Update Interval In Minutes", + "options": [ + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_sourceautoupdateinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_sourceautoupdateinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_desktopappinstaller_sourceautoupdateinterval_sourceautoupdateinterval", + "displayName": "Source Auto Update Interval In Minutes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_configuresystemguardlaunch", + "displayName": "Configure System Guard Launch", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceguard_configuresystemguardlaunch_0", + "displayName": "Unmanaged Configurable by Administrative user", + "description": "Unmanaged Configurable by Administrative user" + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_configuresystemguardlaunch_1", + "displayName": "Unmanaged Enables Secure Launch if supported by hardware", + "description": "Unmanaged Enables Secure Launch if supported by hardware" + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_configuresystemguardlaunch_2", + "displayName": "Unmanaged Disables Secure Launch", + "description": "Unmanaged Disables Secure Launch" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_enablevirtualizationbasedsecurity", + "displayName": "Enable Virtualization Based Security", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceguard_enablevirtualizationbasedsecurity_0", + "displayName": "disable virtualization based security.", + "description": "disable virtualization based security." + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_enablevirtualizationbasedsecurity_1", + "displayName": "enable virtualization based security.", + "description": "enable virtualization based security." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_lsacfgflags", + "displayName": "Credential Guard", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceguard_lsacfgflags_0", + "displayName": "(Disabled) Turns off Credential Guard remotely if configured previously without UEFI Lock.", + "description": "(Disabled) Turns off Credential Guard remotely if configured previously without UEFI Lock." + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_lsacfgflags_1", + "displayName": "(Enabled with UEFI lock) Turns on Credential Guard with UEFI lock.", + "description": "(Enabled with UEFI lock) Turns on Credential Guard with UEFI lock." + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_lsacfgflags_2", + "displayName": "(Enabled without lock) Turns on Credential Guard without UEFI lock.", + "description": "(Enabled without lock) Turns on Credential Guard without UEFI lock." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_requireplatformsecurityfeatures", + "displayName": "Require Platform Security Features", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceguard_requireplatformsecurityfeatures_1", + "displayName": "Turns on VBS with Secure Boot.", + "description": "Turns on VBS with Secure Boot." + }, + { + "id": "device_vendor_msft_policy_config_deviceguard_requireplatformsecurityfeatures_3", + "displayName": "Turns on VBS with Secure Boot and direct memory access (DMA). DMA requires hardware support.", + "description": "Turns on VBS with Secure Boot and direct memory access (DMA). DMA requires hardware support." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_allowdevicehealthmonitoring", + "displayName": "Allow Device Health Monitoring", + "options": [ + { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_allowdevicehealthmonitoring_1", + "displayName": "The DeviceHealthMonitoring connection is enabled.", + "description": "The DeviceHealthMonitoring connection is enabled." + }, + { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_allowdevicehealthmonitoring_0", + "displayName": "The DeviceHealthMonitoring connection is disabled.", + "description": "The DeviceHealthMonitoring connection is disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_configdevicehealthmonitoringscope", + "displayName": "[Deprecated] Config Device Health Monitoring Scope", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_configdevicehealthmonitoringscope_v2_epm", + "displayName": "Config Device Health Monitoring Scope", + "options": { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_configdevicehealthmonitoringscope_v2_epm_privilegemanagement", + "displayName": "Privilege Management", + "description": null + } + }, + { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_configdevicehealthmonitoringserviceinstance", + "displayName": "[Deprecated] Config Device Health Monitoring Service Instance", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_configdevicehealthmonitoringuploaddestination", + "displayName": "[Deprecated] Config Device Health Monitoring Upload Destination", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicehealthmonitoring_configdevicehealthmonitoringuploaddestination_v2", + "displayName": "Config Device Health Monitoring Upload Destination", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceids", + "displayName": "Allow installation of devices that match any of these device IDs", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceids_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceids_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceids_deviceinstall_ids_allow_list", + "displayName": "Allowed device IDs", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceinstanceids", + "displayName": "Allow installation of devices that match any of these device instance IDs", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceinstanceids_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceinstanceids_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdeviceinstanceids_deviceinstall_instance_ids_allow_list", + "displayName": "Allowed Instance IDs", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdevicesetupclasses", + "displayName": "Allow installation of devices using drivers that match these device setup classes", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdevicesetupclasses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdevicesetupclasses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_allowinstallationofmatchingdevicesetupclasses_deviceinstall_classes_allow_list", + "displayName": "Allowed classes", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_enableinstallationpolicylayering", + "displayName": "Apply layered order of evaluation for Allow and Prevent device installation policies across all device match criteria", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_enableinstallationpolicylayering_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_enableinstallationpolicylayering_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventdevicemetadatafromnetwork", + "displayName": "Prevent device metadata retrieval from the Internet", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventdevicemetadatafromnetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventdevicemetadatafromnetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofdevicesnotdescribedbyotherpolicysettings", + "displayName": "Prevent installation of devices not described by other policy settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofdevicesnotdescribedbyotherpolicysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofdevicesnotdescribedbyotherpolicysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids", + "displayName": "Prevent installation of devices that match any of these device IDs", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_deviceinstall_ids_deny_list", + "displayName": "Prevented device IDs", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_deviceinstall_ids_deny_retroactive", + "displayName": "Also apply to matching devices that are already installed.", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_deviceinstall_ids_deny_retroactive_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceids_deviceinstall_ids_deny_retroactive_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids", + "displayName": "Prevent installation of devices that match any of these device instance IDs", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_deviceinstall_instance_ids_deny_list", + "displayName": "Prevented Instance IDs", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_deviceinstall_instance_ids_deny_retroactive", + "displayName": "Also apply to matching devices that are already installed. (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_deviceinstall_instance_ids_deny_retroactive_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdeviceinstanceids_deviceinstall_instance_ids_deny_retroactive_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses", + "displayName": "Prevent installation of devices using drivers that match these device setup classes", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_deviceinstall_classes_deny_list", + "displayName": "Prevented Classes", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_deviceinstall_classes_deny_retroactive", + "displayName": "Also apply to matching devices that are already installed.", + "options": [ + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_deviceinstall_classes_deny_retroactive_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_deviceinstallation_preventinstallationofmatchingdevicesetupclasses_deviceinstall_classes_deny_retroactive_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_devicelock_allowsimpledevicepassword", + "displayName": "Allow Simple Device Password", + "options": [ + { + "id": "device_vendor_msft_policy_config_devicelock_allowsimpledevicepassword_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_devicelock_allowsimpledevicepassword_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_devicelock_alphanumericdevicepasswordrequired", + "displayName": "Alphanumeric Device Password Required", + "options": [ + { + "id": "device_vendor_msft_policy_config_devicelock_alphanumericdevicepasswordrequired_0", + "displayName": "Password or Alphanumeric PIN required.", + "description": "Password or Alphanumeric PIN required." + }, + { + "id": "device_vendor_msft_policy_config_devicelock_alphanumericdevicepasswordrequired_1", + "displayName": "Password or Numeric PIN required.", + "description": "Password or Numeric PIN required." + }, + { + "id": "device_vendor_msft_policy_config_devicelock_alphanumericdevicepasswordrequired_2", + "displayName": "Password, Numeric PIN, or Alphanumeric PIN required.", + "description": "Password, Numeric PIN, or Alphanumeric PIN required." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_devicelock_devicepasswordenabled", + "displayName": "Device Password Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_devicelock_devicepasswordenabled_0", + "displayName": "Enabled", + "description": "Enabled" + }, + { + "id": "device_vendor_msft_policy_config_devicelock_devicepasswordenabled_1", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_devicelock_devicepasswordexpiration", + "displayName": "Device Password Expiration", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_devicepasswordhistory", + "displayName": "Device Password History", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_enforcelockscreenandlogonimage", + "displayName": "Enforce Lock Screen And Logon Image", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_enforcelockscreenprovider", + "displayName": "Enforce Lock Screen Provider", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_maxdevicepasswordfailedattempts", + "displayName": "Max Device Password Failed Attempts", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_maxinactivitytimedevicelock", + "displayName": "Max Inactivity Time Device Lock", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_maxinactivitytimedevicelockwithexternaldisplay", + "displayName": "[Deprecated] Max Inactivity Time Device Lock With External Display", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_mindevicepasswordcomplexcharacters", + "displayName": "Min Device Password Complex Characters", + "options": [ + { + "id": "device_vendor_msft_policy_config_devicelock_mindevicepasswordcomplexcharacters_1", + "displayName": "Digits only", + "description": "Digits only" + }, + { + "id": "device_vendor_msft_policy_config_devicelock_mindevicepasswordcomplexcharacters_2", + "displayName": "Digits and lowercase letters are required", + "description": "Digits and lowercase letters are required" + }, + { + "id": "device_vendor_msft_policy_config_devicelock_mindevicepasswordcomplexcharacters_3", + "displayName": "Digits lowercase letters and uppercase letters are required. Not supported in desktop Microsoft accounts and domain accounts", + "description": "Digits lowercase letters and uppercase letters are required. Not supported in desktop Microsoft accounts and domain accounts" + }, + { + "id": "device_vendor_msft_policy_config_devicelock_mindevicepasswordcomplexcharacters_4", + "displayName": "Digits lowercase letters uppercase letters and special characters are required. Not supported in desktop", + "description": "Digits lowercase letters uppercase letters and special characters are required. Not supported in desktop" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_devicelock_mindevicepasswordlength", + "displayName": "Min Device Password Length", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_minimumpasswordage", + "displayName": "Minimum Password Age", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_preventenablinglockscreencamera", + "displayName": "Prevent enabling lock screen camera", + "options": [ + { + "id": "device_vendor_msft_policy_config_devicelock_preventenablinglockscreencamera_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_preventenablinglockscreencamera_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_devicelock_preventlockscreenslideshow", + "displayName": "Prevent enabling lock screen slide show", + "options": [ + { + "id": "device_vendor_msft_policy_config_devicelock_preventlockscreenslideshow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_devicelock_preventlockscreenslideshow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_display_disableperprocessdpiforapps", + "displayName": "Disable Per Process Dpi For Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_display_enableperprocessdpi", + "displayName": "Enable Per Process Dpi", + "options": [ + { + "id": "device_vendor_msft_policy_config_display_enableperprocessdpi_0", + "displayName": "Disabled", + "description": "Disable." + }, + { + "id": "device_vendor_msft_policy_config_display_enableperprocessdpi_1", + "displayName": "Enabled", + "description": "Enable." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_display_enableperprocessdpiforapps", + "displayName": "Enable Per Process Dpi For Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_display_turnoffgdidpiscalingforapps", + "displayName": "Turn Off Gdi DPI Scaling For Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_display_turnongdidpiscalingforapps", + "displayName": "Turn On Gdi DPI Scaling For Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_dmaguard_deviceenumerationpolicy", + "displayName": "Device Enumeration Policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_dmaguard_deviceenumerationpolicy_0", + "displayName": "Block all (Most restrictive)", + "description": "Block all (Most restrictive)" + }, + { + "id": "device_vendor_msft_policy_config_dmaguard_deviceenumerationpolicy_1", + "displayName": "Only after log in/screen unlock", + "description": "Only after log in/screen unlock" + }, + { + "id": "device_vendor_msft_policy_config_dmaguard_deviceenumerationpolicy_2", + "displayName": "Allow all (Least restrictive)", + "description": "Allow all (Least restrictive)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_eap_allowtls1_3", + "displayName": "Allow TLS13", + "options": [ + { + "id": "device_vendor_msft_policy_config_eap_allowtls1_3_0", + "displayName": "Use of TLS version 1.3 is not allowed for authentication.", + "description": "Use of TLS version 1.3 is not allowed for authentication." + }, + { + "id": "device_vendor_msft_policy_config_eap_allowtls1_3_1", + "displayName": "Use of TLS version 1.3 is allowed for authentication.", + "description": "Use of TLS version 1.3 is allowed for authentication." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_education_enableeduthemes", + "displayName": "Enable Edu Themes", + "options": [ + { + "id": "device_vendor_msft_policy_config_education_enableeduthemes_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_education_enableeduthemes_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_education_iseducationenvironment", + "displayName": "Is Education Environment", + "options": [ + { + "id": "device_vendor_msft_policy_config_education_iseducationenvironment_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_education_iseducationenvironment_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings", + "displayName": "Customize consent settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings_werconsentcustomize", + "displayName": "Customize consent settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings_werconsentcustomize_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_customizeconsentsettings_werconsentcustomize_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting", + "displayName": "Disable Windows Error Reporting", + "options": [ + { + "id": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_displayerrornotification", + "displayName": "Display Error Notification", + "options": [ + { + "id": "device_vendor_msft_policy_config_errorreporting_displayerrornotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_displayerrornotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_donotsendadditionaldata", + "displayName": "Do not send additional data", + "options": [ + { + "id": "device_vendor_msft_policy_config_errorreporting_donotsendadditionaldata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_donotsendadditionaldata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_preventcriticalerrordisplay", + "displayName": "Prevent display of the user interface for critical errors", + "options": [ + { + "id": "device_vendor_msft_policy_config_errorreporting_preventcriticalerrordisplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_errorreporting_preventcriticalerrordisplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_controleventlogbehavior", + "displayName": "Control Event Log behavior when the log file reaches its maximum size", + "options": [ + { + "id": "device_vendor_msft_policy_config_eventlogservice_controleventlogbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_controleventlogbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog", + "displayName": "Specify the maximum log file size (KB)", + "options": [ + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizeapplicationlog_channel_logmaxsize", + "displayName": "Maximum Log Size (KB)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog", + "displayName": "Specify the maximum log file size (KB)", + "options": [ + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesecuritylog_channel_logmaxsize", + "displayName": "Maximum Log Size (KB)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog", + "displayName": "Specify the maximum log file size (KB)", + "options": [ + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_eventlogservice_specifymaximumfilesizesystemlog_channel_logmaxsize", + "displayName": "Maximum Log Size (KB)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_experience_allowclipboardhistory", + "displayName": "Allow Clipboard History", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowclipboardhistory_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowclipboardhistory_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowcortana", + "displayName": "Allow Cortana", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowcortana_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowcortana_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowdevicediscovery", + "displayName": "Allow Device Discovery", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowdevicediscovery_0", + "displayName": "Block", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowdevicediscovery_1", + "displayName": "Allow", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowfindmydevice", + "displayName": "Allow Find My Device", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowfindmydevice_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowfindmydevice_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment", + "displayName": "Allow Manual MDM Unenrollment", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowmanualmdmunenrollment_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowsaveasofofficefiles", + "displayName": "Allow Save As Of Office Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowsaveasofofficefiles_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowsaveasofofficefiles_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowscreencapture", + "displayName": "Allow Screen Capture", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowscreencapture_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowscreencapture_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim", + "displayName": "Allow SIM Error Dialog Prompt When No SIM", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowsimerrordialogpromptwhennosim_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings", + "displayName": "Allow Sync My Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings_0", + "displayName": "Block", + "description": "Sync settings are not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowsyncmysettings_1", + "displayName": "Allow", + "description": "Sync settings allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures", + "displayName": "Allow Windows Consumer Features", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowwindowsconsumerfeatures_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_allowwindowstips", + "displayName": "Allow Windows Tips", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_allowwindowstips_0", + "displayName": "Block", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_experience_allowwindowstips_1", + "displayName": "Allow", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_configurechaticon", + "displayName": "Configure Chat Icon", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_configurechaticon_0", + "displayName": "Windows default", + "description": "Not configured" + }, + { + "id": "device_vendor_msft_policy_config_experience_configurechaticon_1", + "displayName": "Show", + "description": "Show" + }, + { + "id": "device_vendor_msft_policy_config_experience_configurechaticon_2", + "displayName": "Hide", + "description": "Hide" + }, + { + "id": "device_vendor_msft_policy_config_experience_configurechaticon_3", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent", + "displayName": "Disable Cloud Optimized Content", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_experience_disablecloudoptimizedcontent_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent", + "displayName": "Disable Consumer Account State Content", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_experience_disableconsumeraccountstatecontent_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_donotshowfeedbacknotifications", + "displayName": "Do Not Show Feedback Notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_donotshowfeedbacknotifications_0", + "displayName": "Feedback notifications are not disabled. The actual state of feedback notifications on the device will then depend on what GP has configured or what the user has configured locally.", + "description": "Feedback notifications are not disabled. The actual state of feedback notifications on the device will then depend on what GP has configured or what the user has configured locally." + }, + { + "id": "device_vendor_msft_policy_config_experience_donotshowfeedbacknotifications_1", + "displayName": "Feedback notifications are disabled.", + "description": "Feedback notifications are disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings", + "displayName": "Do Not Sync Browser Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings_2", + "displayName": "Disable Syncing", + "description": "Disable Syncing" + }, + { + "id": "device_vendor_msft_policy_config_experience_donotsyncbrowsersettings_0", + "displayName": "Allow syncing", + "description": "Allow syncing" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing", + "displayName": "Prevent Users From Turning On Browser Syncing", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing_0", + "displayName": "Disabled", + "description": "Allowed/turned on. Users can sync the browser settings." + }, + { + "id": "device_vendor_msft_policy_config_experience_preventusersfromturningonbrowsersyncing_1", + "displayName": "Enabled", + "description": "Prevented/turned off." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_experience_showlockonusertile", + "displayName": "Show Lock On User Tile", + "options": [ + { + "id": "device_vendor_msft_policy_config_experience_showlockonusertile_0", + "displayName": "Disabled", + "description": "The lock option is not displayed in the User Tile menu." + }, + { + "id": "device_vendor_msft_policy_config_experience_showlockonusertile_1", + "displayName": "Enabled", + "description": "The lock option is displayed in the User Tile menu." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_exploitguard_exploitprotectionsettings", + "displayName": "Exploit Protection Settings", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_federatedauthentication_enablewebsigninforprimaryuser", + "displayName": "Enable Web Sign In For Primary User", + "options": [ + { + "id": "device_vendor_msft_policy_config_federatedauthentication_enablewebsigninforprimaryuser_0", + "displayName": "Feature defaults as appropriate for edition and device capabilities. As of now, all editions/devices exhibit Disabled behavior by default. However, this may change for future editions/devices.", + "description": "Feature defaults as appropriate for edition and device capabilities. As of now, all editions/devices exhibit Disabled behavior by default. However, this may change for future editions/devices." + }, + { + "id": "device_vendor_msft_policy_config_federatedauthentication_enablewebsigninforprimaryuser_1", + "displayName": "Enabled. Web Sign-in Credential Provider will be enabled for device sign-in.", + "description": "Enabled. Web Sign-in Credential Provider will be enabled for device sign-in." + }, + { + "id": "device_vendor_msft_policy_config_federatedauthentication_enablewebsigninforprimaryuser_2", + "displayName": "Disabled. Web Sign-in Credential Provider will be not be enabled for device sign-in.", + "description": "Disabled. Web Sign-in Credential Provider will be not be enabled for device sign-in." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_feeds_feedsenabled", + "displayName": "Enable News and interests", + "options": [ + { + "id": "device_vendor_msft_policy_config_feeds_feedsenabled_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_feeds_feedsenabled_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork", + "displayName": "Allow Option To Show Network", + "options": [ + { + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_0", + "displayName": "Not Allowed.", + "description": "Not Allowed." + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc", + "displayName": "Allow Option To Show This PC", + "options": [ + { + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc_0", + "displayName": "Not Allowed.", + "description": "Not Allowed." + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_disablegraphrecentitems", + "displayName": "Disable Graph Recent Items", + "options": [ + { + "id": "device_vendor_msft_policy_config_fileexplorer_disablegraphrecentitems_0", + "displayName": "File Explorer will request cloud file metadata and display it in the Quick access view.", + "description": "File Explorer will request cloud file metadata and display it in the Quick access view." + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_disablegraphrecentitems_1", + "displayName": "File Explorer will not request cloud file metadata or display it in the Quick access view.", + "description": "File Explorer will not request cloud file metadata or display it in the Quick access view." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations", + "displayName": "Set Allowed Folder Locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_0", + "displayName": "Access to all folder locations.", + "description": "Access to all folder locations." + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_13", + "displayName": "Documents, Pictures, Downloads", + "description": "Documents, Pictures, Downloads" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_15", + "displayName": "Desktop, Documents, Pictures, Downloads", + "description": "Desktop, Documents, Pictures, Downloads" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_31", + "displayName": "Desktop, Documents, Pictures, Downloads, Network", + "description": "Desktop, Documents, Pictures, Downloads, Network" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_47", + "displayName": "This PC, Desktop, Documents, Pictures, Downloads", + "description": "This PC, Desktop, Documents, Pictures, Downloads" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_63", + "displayName": "This PC, Desktop, Documents, Pictures, Downloads, Network", + "description": "This PC, Desktop, Documents, Pictures, Downloads, Network" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations", + "displayName": "Set Allowed Storage Locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_0", + "displayName": "Access to all storage locations.", + "description": "Access to all storage locations." + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_1", + "displayName": "Removable Drives", + "description": "Removable Drives" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_2", + "displayName": "Sync roots", + "description": "Sync roots" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_3", + "displayName": "Removable Drives, Sync roots", + "description": "Removable Drives, Sync roots" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_4", + "displayName": "Local Drives", + "description": "Local Drives" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_5", + "displayName": "Removable Drives, Local Drives", + "description": "Removable Drives, Local Drives" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_6", + "displayName": "Sync Roots, Local Drives", + "description": "Sync Roots, Local Drives" + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_7", + "displayName": "Removable Drives, Sync Roots, Local Drives", + "description": "Removable Drives, Sync Roots, Local Drives" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_turnoffdataexecutionpreventionforexplorer", + "displayName": "Turn off Data Execution Prevention for Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_fileexplorer_turnoffdataexecutionpreventionforexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_turnoffdataexecutionpreventionforexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_turnoffheapterminationoncorruption", + "displayName": "Turn off heap termination on corruption", + "options": [ + { + "id": "device_vendor_msft_policy_config_fileexplorer_turnoffheapterminationoncorruption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fileexplorer_turnoffheapterminationoncorruption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_filesystem_devdriveattachpolicy", + "displayName": "Dev drive filter attach policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_filesystem_devdriveattachpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_filesystem_devdriveattachpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_filesystem_devdriveattachpolicy_devdriveattachpolicy", + "displayName": "Filter list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive", + "displayName": "Enable dev drive", + "options": [ + { + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_devdriveallowantivirusfilter", + "displayName": "Let antivirus filter protect dev drives (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_devdriveallowantivirusfilter_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_filesystem_enabledevdrive_devdriveallowantivirusfilter_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions", + "displayName": "Clean-up Invalid Sessions", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_cleanupinvalidsessions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin", + "displayName": "Roam Recycle Bin", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_roamrecyclebin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk", + "displayName": "VHD Compact Disk", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix_vhdcompactdisk_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory", + "displayName": "Cache Directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdcachedirectory_ccdcachedirectory", + "displayName": "Cache Directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdproxydirectory", + "displayName": "Proxy Directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdproxydirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdproxydirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdproxydirectory_ccdproxydirectory", + "displayName": "Proxy Directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdwritecachedirectory", + "displayName": "Write Cache Directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdwritecachedirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdwritecachedirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~ccd_ccdwritecachedirectory_ccdwritecachedirectory", + "displayName": "Write Cache Directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingadcomputergroupprocess", + "displayName": "AD Computer Group Process", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingadcomputergroupprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingadcomputergroupprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface", + "displayName": "Driver Interface", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingdriverinterface_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled", + "displayName": "Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_loggingenabled", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_loggingenabled_0", + "displayName": "Logging Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_loggingenabled_1", + "displayName": "Specific Logs Only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingenabled_loggingenabled_2", + "displayName": "Enable All Logs", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility", + "displayName": "Font Visibility", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfontvisibility_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfrxlauncher", + "displayName": "FrxLauncher", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfrxlauncher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingfrxlauncher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin", + "displayName": "IE plugin", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingieplugin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor", + "displayName": "Java rule editor", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingjavaruleeditor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory", + "displayName": "Log Directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogdirectory_logginglogdirectory", + "displayName": "Log Directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod", + "displayName": "Log Keeping Period", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_logginglogkeepingperiod_logginglogkeepingperiod", + "displayName": "Log Keeping Period (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingnetwork", + "displayName": "Network", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingnetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingnetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer", + "displayName": "ODFC Container", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingodfccontainer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility", + "displayName": "Printer Visibility", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprintervisibility_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart", + "displayName": "Process Start", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprocessstart_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool", + "displayName": "Profile Configuration Tool", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofileconfigurationtool_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofilecontainer", + "displayName": "Profile Container", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofilecontainer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingprofilecontainer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingrulecompilation", + "displayName": "Rule Compilation", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingrulecompilation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingrulecompilation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingruleeditor", + "displayName": "Rule Editor", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingruleeditor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingruleeditor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchplugin", + "displayName": "Search Plugin", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchplugin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchplugin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming", + "displayName": "Search Roaming", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingsearchroaming_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingservices", + "displayName": "Services", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingservices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~logging_loggingservices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer", + "displayName": "Access Network as Computer Object", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcaccessnetworkascomputer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl", + "displayName": "Attached VHD SDDL", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcattachedvhdsddl_odfcattachedvhdsddl", + "displayName": "Attached VHD SDDL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeofficeactivation", + "displayName": "Include Office Activation", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeofficeactivation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeofficeactivation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive", + "displayName": "Include OneDrive", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonedrive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenote", + "displayName": "Include OneNote", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp", + "displayName": "Include OneNote UWP", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeonenoteuwp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook", + "displayName": "Include Outlook", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization", + "displayName": "Include Outlook Personalization", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeoutlookpersonalization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint", + "displayName": "Include Sharepoint", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludesharepoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeskype", + "displayName": "Include Skype", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeskype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeskype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeteams", + "displayName": "Include Teams", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeteams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcincludeteams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd", + "displayName": "Is Dynamic (VHD)", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcisdynamicvhd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount", + "displayName": "Locked Retry Count", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretrycount_odfclockedretrycount", + "displayName": "Locked Retry Count (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval", + "displayName": "Locked Retry Interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfclockedretryinterval_odfclockedretryinterval", + "displayName": "Locked Retry Interval (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd", + "displayName": "Mirror Local OST To VHD", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_odfcmirrorlocalosttovhd", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_odfcmirrorlocalosttovhd_0", + "displayName": "Do not mirror OST to VHD", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_odfcmirrorlocalosttovhd_1", + "displayName": "Copy OST to VHD", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcmirrorlocalosttovhd_odfcmirrorlocalosttovhd_2", + "displayName": "Move OST to VHD", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcnumbersessionvhdstokeep", + "displayName": "Number Session VHD(s) To Keep", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcnumbersessionvhdstokeep_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcnumbersessionvhdstokeep_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcnumbersessionvhdstokeep_odfcnumbersessionvhdstokeep", + "displayName": "Number Session VHD(s) To Keep (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcodfcenabled", + "displayName": "Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcodfcenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcodfcenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookcachedmode", + "displayName": "Outlook Cached Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookcachedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookcachedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath", + "displayName": "Outlook Folder Path", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcoutlookfolderpath_odfcoutlookfolderpath", + "displayName": "Outlook Folder Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithfailure", + "displayName": "Prevent Login With Failure", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithfailure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithfailure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile", + "displayName": "Prevent Login With Temp Profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcpreventloginwithtempprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount", + "displayName": "Reattach Count", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachcount_odfcreattachcount", + "displayName": "Reattach Count (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachinterval", + "displayName": "Reattach Interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcreattachinterval_odfcreattachinterval", + "displayName": "Reattach Interval (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype", + "displayName": "Redirect Type", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_odfcredirecttype", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_odfcredirecttype_1", + "displayName": "Legacy Redirection", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcredirecttype_odfcredirecttype_2", + "displayName": "FSLogix Redirection", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcrefreshuserpolicy", + "displayName": "Refresh User Policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcrefreshuserpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcrefreshuserpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcremoveorphanedostfilesonlogoff", + "displayName": "Remove Orphaned OST Files On Logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcremoveorphanedostfilesonlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcremoveorphanedostfilesonlogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch", + "displayName": "Roam Search", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch_1", + "displayName": "Single-user Search", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcroamsearch_odfcroamsearch_2", + "displayName": "Multi-user Search", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs", + "displayName": "Size In MBs", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcsizeinmbs_odfcsizeinmbs", + "displayName": "Size In MBs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode", + "displayName": "VHD Access Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_odfcvhdaccessmode", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_odfcvhdaccessmode_0", + "displayName": "Direct Access", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_odfcvhdaccessmode_1", + "displayName": "DiffDisk On Network", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_odfcvhdaccessmode_2", + "displayName": "Local DiffDisk", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdaccessmode_odfcvhdaccessmode_3", + "displayName": "Unique Disk per Session", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations", + "displayName": "VHD Locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdlocations_odfcvhdlocations", + "displayName": "VHD Locations (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize", + "displayName": "VHDX Sector Size", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_odfcvhdxsectorsize", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_odfcvhdxsectorsize_512", + "displayName": "512 bytes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvhdxsectorsize_odfcvhdxsectorsize_4096", + "displayName": "4 KB", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx", + "displayName": "Volume Type (VHD or VHDX)", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_odfcvolumetypevhdorvhdx", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_odfcvolumetypevhdorvhdx_vhd", + "displayName": "VHD", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumetypevhdorvhdx_odfcvolumetypevhdorvhdx_vhdx", + "displayName": "VHDX", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds", + "displayName": "Volume Wait Time (milliseconds)", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc_odfcvolumewaittimemilliseconds_odfcvolumewaittimemilliseconds", + "displayName": "Volume Wait Time (milliseconds) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdlocations", + "displayName": "CCD Locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdlocations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdlocations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdlocations_odfcccdlocations", + "displayName": "CCD Locations (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs", + "displayName": "CCD Max Cache Size in MBs", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdmaxcachesizeinmbs_odfcccdmaxcachesizeinmbs", + "displayName": "CCD Max Cache Size in MBs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdunregistertimeout", + "displayName": "CCD Unregister Timeout", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdunregistertimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdunregistertimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcccdunregistertimeout_odfcccdunregistertimeout", + "displayName": "CCD Unregister Timeout (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonforcedunregister", + "displayName": "Clear Cache On Forced Unregister", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonforcedunregister_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonforcedunregister_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonlogoff", + "displayName": "Clear Cache On Logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfcclearcacheonlogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforregister", + "displayName": "Healthy Providers Required For Register", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforregister_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforregister_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforregister_odfchealthyprovidersrequiredforregister", + "displayName": "Healthy Providers Required For Register (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister", + "displayName": "Healthy Providers Required For Unregister", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_ccd_odfchealthyprovidersrequiredforunregister_odfchealthyprovidersrequiredforunregister", + "displayName": "Healthy Providers Required For Unregister (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcdiffdiskparentfolderpath", + "displayName": "Diff Disk Parent Folder Path", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcdiffdiskparentfolderpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcdiffdiskparentfolderpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcdiffdiskparentfolderpath_odfcdiffdiskparentfolderpath", + "displayName": "Diff Disk Parent Folder Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcflipflopprofiledirectoryname", + "displayName": "Flip Flop Profile Directory Name", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcflipflopprofiledirectoryname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcflipflopprofiledirectoryname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcnoprofilecontainingfolder", + "displayName": "No Profile Containing Folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcnoprofilecontainingfolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcnoprofilecontainingfolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch", + "displayName": "SID Directory Name Match", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamematch_odfcsiddirectorynamematch", + "displayName": "SID Directory Name Match (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamepattern", + "displayName": "SID Directory Name Pattern", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamepattern_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamepattern_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcsiddirectorynamepattern_odfcsiddirectorynamepattern", + "displayName": "SID Directory Name Pattern (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch", + "displayName": "VHD Name Match", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamematch_odfcvhdnamematch", + "displayName": "VHD Name Match (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamepattern", + "displayName": "VHD Name Pattern", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamepattern_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamepattern_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~odfc~odfc_containeranddirectorynaming_odfcvhdnamepattern_odfcvhdnamepattern", + "displayName": "VHD Name Pattern (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesaccessnetworkascomputer", + "displayName": "Access Network as Computer Object", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesaccessnetworkascomputer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesaccessnetworkascomputer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl", + "displayName": "Attached VHD SDDL", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesattachedvhdsddl_profilesattachedvhdsddl", + "displayName": "Attached VHD SDDL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilescleanoutnotifications", + "displayName": "Clean Out Notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilescleanoutnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilescleanoutnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesdeletelocalprofilewhenvhdshouldapply", + "displayName": "Delete Local Profile When VHD Should Apply", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesdeletelocalprofilewhenvhdshouldapply_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesdeletelocalprofilewhenvhdshouldapply_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled", + "displayName": "Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages", + "displayName": "Install Appx Packages", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesinstallappxpackages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd", + "displayName": "Is Dynamic (VHD)", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesisdynamicvhd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff", + "displayName": "Keep Local Directory (after logoff)", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileskeeplocaldirectoryafterlogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount", + "displayName": "Locked Retry Count", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretrycount_profileslockedretrycount", + "displayName": "Locked Retry Count (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretryinterval", + "displayName": "Locked Retry Interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretryinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretryinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profileslockedretryinterval_profileslockedretryinterval", + "displayName": "Locked Retry Interval (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesoutlookcachedmode", + "displayName": "Outlook Cached Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesoutlookcachedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesoutlookcachedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithfailure", + "displayName": "Prevent Login With Failure", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithfailure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithfailure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile", + "displayName": "Prevent Login With Temp Profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilespreventloginwithtempprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl", + "displayName": "Profile Directory SDDL", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiledirectorysddl_profilesprofiledirectorysddl", + "displayName": "Profile Directory SDDL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype", + "displayName": "Profile Type", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_profilesprofiletype", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_profilesprofiletype_0", + "displayName": "Normal Profile", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_profilesprofiletype_1", + "displayName": "Read / Write Profile", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_profilesprofiletype_2", + "displayName": "Read Only Profile", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesprofiletype_profilesprofiletype_3", + "displayName": "Read / Write profile - fallback to Read Only", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount", + "displayName": "Reattach Count", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachcount_profilesreattachcount", + "displayName": "Reattach Count (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachinterval", + "displayName": "Reattach Interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesreattachinterval_profilesreattachinterval", + "displayName": "Reattach Interval (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff", + "displayName": "Reboot On User Logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_profilesrebootonuserlogoff", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_profilesrebootonuserlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_profilesrebootonuserlogoff_1", + "displayName": "Reboot on any logoff", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesrebootonuserlogoff_profilesrebootonuserlogoff_2", + "displayName": "Reboot only on any FSLogix Profile logoff", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder", + "displayName": "Redirection XML Source Folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirectionxmlsourcefolder_profilesredirectionxmlsourcefolder", + "displayName": "Redirection XML Source Folder (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype", + "displayName": "Redirect Type", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype_1", + "displayName": "Legacy Redirection", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesredirecttype_profilesredirecttype_2", + "displayName": "FSLogix Redirection", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesremoveorphanedostfilesonlogoff", + "displayName": "Remove Orphaned OST Files On Logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesremoveorphanedostfilesonlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesremoveorphanedostfilesonlogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamidentity", + "displayName": "Roam Identity", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamidentity_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamidentity_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch", + "displayName": "Roam Search", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch_1", + "displayName": "Single-user Search", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesroamsearch_profilesroamsearch_2", + "displayName": "Multi-user Search", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath", + "displayName": "Set Temp Folders to Local Path", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_profilessettempfolderstolocalpath", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_profilessettempfolderstolocalpath_0", + "displayName": "Take no action", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_profilessettempfolderstolocalpath_1", + "displayName": "Redirect TEMP and TMP to local drive", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_profilessettempfolderstolocalpath_2", + "displayName": "Redirect INetCache to local drive", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessettempfolderstolocalpath_profilessettempfolderstolocalpath_3", + "displayName": "Redirect TEMP, TMP and INetCache to local drive", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff", + "displayName": "Shutdown On User Logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_profilesshutdownonuserlogoff", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_profilesshutdownonuserlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_profilesshutdownonuserlogoff_1", + "displayName": "Shutdown on any logoff", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesshutdownonuserlogoff_profilesshutdownonuserlogoff_2", + "displayName": "Shutdown on any FSLogix Profile logoff", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl", + "displayName": "SID Directory SDDL", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessiddirectorysddl_profilessiddirectorysddl", + "displayName": "SID Directory SDDL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessizeinmbs", + "displayName": "Size In MBs", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessizeinmbs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessizeinmbs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilessizeinmbs_profilessizeinmbs", + "displayName": "Size In MBs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdlocations", + "displayName": "VHD Locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdlocations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdlocations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdlocations_profilesvhdlocations", + "displayName": "VHD Locations (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize", + "displayName": "VHDX Sector Size", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize_512", + "displayName": "512 bytes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvhdxsectorsize_profilesvhdxsectorsize_4096", + "displayName": "4 KB", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds", + "displayName": "Volume Wait Time (milliseconds)", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles_profilesvolumewaittimemilliseconds_profilesvolumewaittimemilliseconds", + "displayName": "Volume Wait Time (milliseconds) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations", + "displayName": "CCD Locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdlocations_profilesccdlocations", + "displayName": "CCD Locations (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs", + "displayName": "CCD Max Cache Size in MBs", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdmaxcachesizeinmbs_profilesccdmaxcachesizeinmbs", + "displayName": "CCD Max Cache Size in MBs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout", + "displayName": "CCD Unregister Timeout", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesccdunregistertimeout_profilesccdunregistertimeout", + "displayName": "CCD Unregister Timeout (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonforcedunregister", + "displayName": "Clear Cache on Forced Unregister", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonforcedunregister_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonforcedunregister_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonlogoff", + "displayName": "Clear Cache on Logoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonlogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profilesclearcacheonlogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister", + "displayName": "Healthy Providers Required For Register", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforregister_profileshealthyprovidersrequiredforregister", + "displayName": "Healthy Providers Required For Register (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforunregister", + "displayName": "Healthy Providers Required For Unregister", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforunregister_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforunregister_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_ccd_profileshealthyprovidersrequiredforunregister_profileshealthyprovidersrequiredforunregister", + "displayName": "Healthy Providers Required For Unregister (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesdiffdiskparentfolderpath", + "displayName": "Diff Disk Parent Folder Path", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesdiffdiskparentfolderpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesdiffdiskparentfolderpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesdiffdiskparentfolderpath_profilesdiffdiskparentfolderpath", + "displayName": "Diff Disk Parent Folder Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesflipflopprofiledirectoryname", + "displayName": "Flip Flop Profile Directory Name", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesflipflopprofiledirectoryname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesflipflopprofiledirectoryname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesnoprofilecontainingfolder", + "displayName": "No Profile Containing Folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesnoprofilecontainingfolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesnoprofilecontainingfolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch", + "displayName": "SID Directory Name Match", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamematch_profilessiddirectorynamematch", + "displayName": "SID Directory Name Match (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamepattern", + "displayName": "SID Directory Name Pattern", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamepattern_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamepattern_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilessiddirectorynamepattern_profilessiddirectorynamepattern", + "displayName": "SID Directory Name Pattern (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamematch", + "displayName": "VHD Name Match", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamematch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamematch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamematch_profilesvhdnamematch", + "displayName": "VHD Name Match (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamepattern", + "displayName": "VHD Name Pattern", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamepattern_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamepattern_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvhdnamepattern_profilesvhdnamepattern", + "displayName": "VHD Name Pattern (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx", + "displayName": "Volume Type (VHD or VHDX)", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_profilesvolumetypevhdorvhdx", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_profilesvolumetypevhdorvhdx_vhd", + "displayName": "VHD", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_fslogixv1~policy~fslogix~profiles~profiles_containeranddirectorynaming_profilesvolumetypevhdorvhdx_profilesvolumetypevhdorvhdx_vhdx", + "displayName": "VHDX", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_games_allowadvancedgamingservices", + "displayName": "Allow Advanced Gaming Services", + "options": [ + { + "id": "device_vendor_msft_policy_config_games_allowadvancedgamingservices_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_games_allowadvancedgamingservices_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_handwriting_paneldefaultmodedocked", + "displayName": "Panel Default Mode Docked", + "options": [ + { + "id": "device_vendor_msft_policy_config_handwriting_paneldefaultmodedocked_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_handwriting_paneldefaultmodedocked_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock", + "displayName": "Force Instant Lock", + "options": [ + { + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock_2", + "displayName": "Forced Off.", + "description": "ForcedOff." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock_1", + "displayName": "Forced On.", + "description": "ForcedOn." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantlock_0", + "displayName": "Default To User Choice.", + "description": "DefaultToUserChoice." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake", + "displayName": "Force Instant Wake", + "options": [ + { + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake_2", + "displayName": "Forced Off.", + "description": "ForcedOff." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake_1", + "displayName": "Forced On.", + "description": "ForcedOn." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forceinstantwake_0", + "displayName": "Default To User Choice.", + "description": "DefaultToUserChoice." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout", + "displayName": "Force Lock Timeout", + "options": [ + { + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout_120", + "displayName": "Two Minutes", + "description": "TwoMinutes" + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout_30", + "displayName": "Thirty Seconds.", + "description": "ThirtySeconds." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout_10", + "displayName": "Ten Seconds.", + "description": "TenSeconds." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout_1", + "displayName": "Immediate.", + "description": "Immediate." + }, + { + "id": "device_vendor_msft_policy_config_humanpresence_forcelocktimeout_0", + "displayName": "Default To User Choice.", + "description": "DefaultToUserChoice." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_addsearchprovider", + "displayName": "Add a specific list of search providers to the user's list of search providers", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_addsearchprovider_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_addsearchprovider_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowactivexfiltering", + "displayName": "Turn on ActiveX Filtering", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist", + "displayName": "Add-on List", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist_addonlist", + "displayName": "Add-on List (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist_addonlist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowaddonlist_addonlist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning", + "displayName": "Turn on certificate address mismatch warning", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit", + "displayName": "Allow deleting browsing history on exit", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode", + "displayName": "Turn on Enhanced Protected Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar", + "displayName": "Allow Microsoft services to provide enhanced suggestions as the user types in the Address bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu", + "displayName": "Let users turn on and use Enterprise Mode from the Tools menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_enterreportbackprompt", + "displayName": "Type the location (URL) of where to receive reports about the websites for which users turn on and use Enterprise Mode", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist", + "displayName": "Use the Enterprise Mode IE website list", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_entersitelistprompt", + "displayName": "Type the location (URL) of your Enterprise Mode IE website list", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3", + "displayName": "Allow fallback to SSL 3.0 (Internet Explorer)", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_advanced_enablessl3fallbackoptions", + "displayName": "Allow insecure fallback for:", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_advanced_enablessl3fallbackoptions_0", + "displayName": "No Sites", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_advanced_enablessl3fallbackoptions_1", + "displayName": "Non-Protected Mode Sites", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowfallbacktossl3_advanced_enablessl3fallbackoptions_3", + "displayName": "All Sites", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist", + "displayName": "Use Policy List of Internet Explorer 7 sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_compatview_sitelist", + "displayName": "List of sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode", + "displayName": "Turn on Internet Explorer Standards Mode for local intranet", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate", + "displayName": "Internet Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate", + "displayName": "Internet", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate", + "displayName": "Intranet Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate", + "displayName": "Intranet", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate", + "displayName": "Local Machine Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate", + "displayName": "Local Machine Zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate", + "displayName": "Locked-Down Internet Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate", + "displayName": "Locked-Down Internet", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate", + "displayName": "Locked-Down Intranet Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate", + "displayName": "Locked-Down Intranet", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate", + "displayName": "Locked-Down Local Machine Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate", + "displayName": "Locked-Down Local Machine Zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate", + "displayName": "Locked-Down Restricted Sites Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate", + "displayName": "Locked-Down Restricted Sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowonewordentry", + "displayName": "Go to an intranet site for a one-word entry in the Address bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowonewordentry_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowonewordentry_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode", + "displayName": "Allow \"Save Target As\" in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist", + "displayName": "Site to Zone Assignment List", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_iz_zonemapprompt", + "displayName": "Enter the zone assignments here. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_iz_zonemapprompt_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_iz_zonemapprompt_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate", + "displayName": "Locked-Down Trusted Sites Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate", + "displayName": "Locked-Down Trusted Sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid", + "displayName": "Allow software to run or install even if the signature is invalid", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate", + "displayName": "Restricted Sites Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate", + "displayName": "Restricted Sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites", + "displayName": "Turn on Suggested Sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate", + "displayName": "Trusted Sites Zone Template", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate", + "displayName": "Trusted Sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation", + "displayName": "Check for server certificate revocation", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms", + "displayName": "Check for signatures on downloaded programs", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel", + "displayName": "Configure which channel of Microsoft Edge to use for opening redirected sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser", + "displayName": "First choice (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_", + "displayName": "", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_1", + "displayName": "Microsoft Edge Stable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_2", + "displayName": "Microsoft Edge Beta version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_3", + "displayName": "Microsoft Edge Dev version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_4", + "displayName": "Microsoft Edge Canary version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_0", + "displayName": "Microsoft Edge version 45 or earlier", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2", + "displayName": "Second choice (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_", + "displayName": "", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_1", + "displayName": "Microsoft Edge Stable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_2", + "displayName": "Microsoft Edge Beta version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_3", + "displayName": "Microsoft Edge Dev version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_4", + "displayName": "Microsoft Edge Canary version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_0", + "displayName": "Microsoft Edge version 45 or earlier", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3", + "displayName": "Third choice (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_", + "displayName": "", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_1", + "displayName": "Microsoft Edge Stable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_2", + "displayName": "Microsoft Edge Beta version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_3", + "displayName": "Microsoft Edge Dev version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_4", + "displayName": "Microsoft Edge Canary version 77 or later", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_0", + "displayName": "Microsoft Edge version 45 or earlier", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses", + "displayName": "Internet Explorer Processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableadobeflash", + "displayName": "Turn off Adobe Flash in Internet Explorer and prevent applications from using Internet Explorer technology to instantiate Flash objects", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableadobeflash_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableadobeflash_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings", + "displayName": "Prevent bypassing SmartScreen Filter warnings", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles", + "displayName": "Prevent bypassing SmartScreen Filter warnings about files that are not commonly downloaded from the Internet", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecompatview", + "displayName": "Turn off Compatibility View", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecompatview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecompatview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory", + "displayName": "Disable \"Configuring History\"", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_daystokeep_prompt", + "displayName": "Days to keep pages in History", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecrashdetection", + "displayName": "Turn off Crash Detection", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecrashdetection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecrashdetection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation", + "displayName": "Prevent participation in the Customer Experience Improvement Program", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites", + "displayName": "Prevent deleting websites that the user has visited", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading", + "displayName": "Prevent downloading of enclosures", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport", + "displayName": "Turn off encryption support", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions", + "displayName": "Secure Protocol combinations", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_0", + "displayName": "Use no secure protocols", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_8", + "displayName": "Only use SSL 2.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_32", + "displayName": "Only use SSL 3.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_40", + "displayName": "Use SSL 2.0 and SSL 3.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_128", + "displayName": "Only use TLS 1.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_136", + "displayName": "Use SSL 2.0 and TLS 1.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_160", + "displayName": "Use SSL 3.0 and TLS 1.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_168", + "displayName": "Use SSL 2.0, SSL 3.0, and TLS 1.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_512", + "displayName": "Only use TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_520", + "displayName": "Use SSL 2.0 and TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_544", + "displayName": "Use SSL 3.0 and TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_552", + "displayName": "Use SSL 2.0, SSL 3.0, and TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_640", + "displayName": "Use TLS 1.0 and TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_648", + "displayName": "Use SSL 2.0, TLS 1.0, and TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_672", + "displayName": "Use SSL 3.0, TLS 1.0, and TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_680", + "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.0, and TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2048", + "displayName": "Only use TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2056", + "displayName": "Use SSL 2.0 and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2080", + "displayName": "Use SSL 3.0 and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2088", + "displayName": "Use SSL 2.0, SSL 3.0, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2176", + "displayName": "Use TLS 1.0 and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2184", + "displayName": "Use SSL 2.0, TLS 1.0, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2208", + "displayName": "Use SSL 3.0, TLS 1.0, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2216", + "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.0, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2560", + "displayName": "Use TLS 1.1 and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2568", + "displayName": "Use SSL 2.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2592", + "displayName": "Use SSL 3.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2600", + "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2688", + "displayName": "Use TLS 1.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2696", + "displayName": "Use SSL 2.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2720", + "displayName": "Use SSL 3.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2728", + "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_8192", + "displayName": "Only use TLS 1.3", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10240", + "displayName": "Use TLS 1.2 and TLS 1.3", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10752", + "displayName": "Use TLS 1.1, TLS 1.2, and TLS 1.3", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10880", + "displayName": "Use TLS 1.0, TLS 1.1, TLS 1.2, and TLS 1.3", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10912", + "displayName": "Use SSL 3.0, TLS 1.0, TLS 1.1, TLS 1.2, and TLS 1.3", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync", + "displayName": "Turn off background synchronization for feeds and Web Slices", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard", + "displayName": "Prevent running First Run wizard", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions", + "displayName": "Select your choice", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions_1", + "displayName": "Go directly to home page", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions_2", + "displayName": "Go directly to \"Welcome To IE\" page", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature", + "displayName": "Turn off the flip ahead with page prediction feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablegeolocation", + "displayName": "Turn off browser geolocation", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablegeolocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablegeolocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablehtmlapplication", + "displayName": "Disable HTML Application", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors", + "displayName": "Prevent ignoring certificate errors", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing", + "displayName": "Turn off InPrivate Browsing", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp", + "displayName": "[Deprecated] Disable Internet Explorer 11 as a standalone browser", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2", + "displayName": "Disable Internet Explorer 11 as a standalone browser", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions", + "displayName": "Notify that Internet Explorer 11 browser is disabled (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_0", + "displayName": "Never", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_1", + "displayName": "Always", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_2", + "displayName": "Once per user", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode", + "displayName": "Turn on 64-bit tab processes when running in Enhanced Protected Mode on 64-bit versions of Windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange", + "displayName": "Prevent changing proxy settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableproxychange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange", + "displayName": "Prevent changing the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange", + "displayName": "Disable changing secondary home page settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_secondaryhomepageslist", + "displayName": "Secondary home pages (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck", + "displayName": "Turn off the Security Settings Check feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableupdatecheck", + "displayName": "Disable Periodic Check for Internet Explorer software updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableupdatecheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disableupdatecheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete", + "displayName": "Turn off the auto-complete feature for web addresses", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode", + "displayName": "Do not allow ActiveX controls to run in Protected Mode when Enhanced Protected Mode is enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstoaddsites", + "displayName": "Security Zones: Do not allow users to add/delete sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstoaddsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstoaddsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstochangepolicies", + "displayName": "Security Zones: Do not allow users to change policies", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstochangepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotallowuserstochangepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols", + "displayName": "Turn off blocking of outdated ActiveX controls for Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains", + "displayName": "Turn off blocking of outdated ActiveX controls for Internet Explorer on specific domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_domainlist", + "displayName": "Domain allow list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys", + "displayName": "Enable extended hot keys in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode", + "displayName": "Enable global window list in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_includealllocalsites", + "displayName": "Intranet Sites: Include all local (intranet) sites not listed in other zones", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_includealllocalsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_includealllocalsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths", + "displayName": "Intranet Sites: Include all network paths (UNCs)", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript", + "displayName": "Allow cut, copy or paste operations from the clipboard via script", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407", + "displayName": "Allow paste operations via script", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles", + "displayName": "Allow drag and drop or copy and paste files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802", + "displayName": "Allow drag and drop or copy and paste files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles", + "displayName": "Allow loading of XAML files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402", + "displayName": "XAML Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols", + "displayName": "Allow only approved domains to use ActiveX controls without prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b", + "displayName": "Only allow approved domains to use ActiveX controls without prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol", + "displayName": "Allow only approved domains to use the TDC ActiveX control", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c", + "displayName": "Only allow approved domains to use the TDC ActiveX control", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols", + "displayName": "Allow scripting of Internet Explorer WebBrowser controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", + "displayName": "Internet Explorer web browser control", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows", + "displayName": "Allow script-initiated windows without size or position constraints", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102", + "displayName": "Allow script-initiated windows without size or position constraints", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript", + "displayName": "Allow updates to status bar via script", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103", + "displayName": "Status bar updates via script", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer", + "displayName": "Allow VBScript to run in Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c", + "displayName": "Allow VBScript to run in Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols", + "displayName": "Download signed ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001", + "displayName": "Download signed ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols", + "displayName": "Download unsigned ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004", + "displayName": "Download unsigned ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter", + "displayName": "Turn on Cross-Site Scripting Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409", + "displayName": "Turn on Cross-Site Scripting (XSS) Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows", + "displayName": "Enable dragging of content from different domains across windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709", + "displayName": "Enable dragging of content from different domains across windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows", + "displayName": "Enable dragging of content from different domains within a window", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708", + "displayName": "Enable dragging of content from different domains within a window", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing", + "displayName": "Enable MIME Sniffing", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100", + "displayName": "Enable MIME Sniffing", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode", + "displayName": "Turn on Protected Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500", + "displayName": "Protected Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver", + "displayName": "Include local path when user is uploading files to a server", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a", + "displayName": "Include local directory path when uploading files to a server", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe", + "displayName": "Launching applications and files in an IFRAME", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804", + "displayName": "Launching applications and files in an IFRAME", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions", + "displayName": "Logon options", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00", + "displayName": "Logon options", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode", + "displayName": "Run .NET Framework-reliant components signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001", + "displayName": "Run .NET Framework-reliant components signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles", + "displayName": "Show security warning for potentially unsafe files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", + "displayName": "Launching programs and unsafe files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker", + "displayName": "Use Pop-up Blocker", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809", + "displayName": "Use Pop-up Blocker", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_jscriptreplacement", + "displayName": "Replace JScript by loading JScript9Legacy in place of JScript via MSHTML/WebOC.", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_jscriptreplacement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_jscriptreplacement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer", + "displayName": "Keep all intranet sites in Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses", + "displayName": "Internet Explorer Processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage", + "displayName": "Specify default behavior for a new tab", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions", + "displayName": "New tab behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_3", + "displayName": "New tab page with my news feed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_0", + "displayName": "about:blank", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_2", + "displayName": "New tab page", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_1", + "displayName": "Home page", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter", + "displayName": "Prevent managing SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions", + "displayName": "Select SmartScreen Filter mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_0", + "displayName": "Off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_1", + "displayName": "On", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols", + "displayName": "Prevent per-user installation of ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols", + "displayName": "Remove \"Run this time\" button for outdated ActiveX controls in Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode", + "displayName": "Reset zoom to default for HTML dialogs in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting", + "displayName": "Allow active scripting", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400", + "displayName": "Allow active scripting", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors", + "displayName": "Allow binary and script behaviors", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000", + "displayName": "Allow Binary and Script Behaviors", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_65536", + "displayName": "Administrator approved", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript", + "displayName": "Allow cut, copy or paste operations from the clipboard via script", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407", + "displayName": "Allow paste operations via script", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles", + "displayName": "Allow drag and drop or copy and paste files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802", + "displayName": "Allow drag and drop or copy and paste files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads", + "displayName": "Allow file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803", + "displayName": "Allow file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles", + "displayName": "Allow loading of XAML files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402", + "displayName": "XAML Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh", + "displayName": "Allow META REFRESH", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608", + "displayName": "Allow META REFRESH", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols", + "displayName": "Allow only approved domains to use ActiveX controls without prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b", + "displayName": "Only allow approved domains to use ActiveX controls without prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol", + "displayName": "Allow only approved domains to use the TDC ActiveX control", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c", + "displayName": "Only allow approved domains to use the TDC ActiveX control", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols", + "displayName": "Allow scripting of Internet Explorer WebBrowser controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", + "displayName": "Internet Explorer web browser control", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows", + "displayName": "Allow script-initiated windows without size or position constraints", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102", + "displayName": "Allow script-initiated windows without size or position constraints", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript", + "displayName": "Allow updates to status bar via script", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103", + "displayName": "Status bar updates via script", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer", + "displayName": "Allow VBScript to run in Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c", + "displayName": "Allow VBScript to run in Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols", + "displayName": "Download signed ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001", + "displayName": "Download signed ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols", + "displayName": "Download unsigned ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004", + "displayName": "Download unsigned ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter", + "displayName": "Turn on Cross-Site Scripting Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409", + "displayName": "Turn on Cross-Site Scripting (XSS) Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows", + "displayName": "Enable dragging of content from different domains across windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709", + "displayName": "Enable dragging of content from different domains across windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows", + "displayName": "Enable dragging of content from different domains within a window", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708", + "displayName": "Enable dragging of content from different domains within a window", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing", + "displayName": "Enable MIME Sniffing", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100", + "displayName": "Enable MIME Sniffing", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver", + "displayName": "Include local path when user is uploading files to a server", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a", + "displayName": "Include local directory path when uploading files to a server", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe", + "displayName": "Launching applications and files in an IFRAME", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804", + "displayName": "Launching applications and files in an IFRAME", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions", + "displayName": "Logon options", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00", + "displayName": "Logon options", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins", + "displayName": "Run ActiveX controls and plugins", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200", + "displayName": "Run ActiveX controls and plugins", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_65536", + "displayName": "Administrator approved", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode", + "displayName": "Run .NET Framework-reliant components signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001", + "displayName": "Run .NET Framework-reliant components signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting", + "displayName": "Script ActiveX controls marked safe for scripting", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405", + "displayName": "Script ActiveX controls marked safe for scripting", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets", + "displayName": "Scripting of Java applets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402", + "displayName": "Scripting of Java applets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles", + "displayName": "Show security warning for potentially unsafe files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", + "displayName": "Launching programs and unsafe files", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode", + "displayName": "Turn on Protected Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500", + "displayName": "Protected Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker", + "displayName": "Use Pop-up Blocker", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809", + "displayName": "Use Pop-up Blocker", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses", + "displayName": "Internet Explorer Processes", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_searchproviderlist", + "displayName": "Restrict search providers to a specific list", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_searchproviderlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_searchproviderlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_securityzonesuseonlymachinesettings", + "displayName": "Security Zones: Use only machine settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_securityzonesuseonlymachinesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_securityzonesuseonlymachinesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge", + "displayName": "Send all sites not included in the Enterprise Mode Site List to Microsoft Edge.", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice", + "displayName": "Specify use of ActiveX Installer Service for installation of ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder", + "displayName": "Use forest search order", + "options": [ + { + "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kerberos_allowforestsearchorder_forestsearchlist", + "displayName": "Forests to Search (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_kerberos_kerberosclientsupportsclaimscompoundarmor", + "displayName": "Kerberos client support for claims, compound authentication and Kerberos armoring", + "options": [ + { + "id": "device_vendor_msft_policy_config_kerberos_kerberosclientsupportsclaimscompoundarmor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_kerberos_kerberosclientsupportsclaimscompoundarmor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kerberos_requirekerberosarmoring", + "displayName": "Fail authentication requests when Kerberos armoring is not available", + "options": [ + { + "id": "device_vendor_msft_policy_config_kerberos_requirekerberosarmoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_kerberos_requirekerberosarmoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation", + "displayName": "Require strict KDC validation", + "options": [ + { + "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_kerberos_requirestrictkdcvalidation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize", + "displayName": "Set maximum Kerberos SSPI context token buffer size", + "options": [ + { + "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kerberos_setmaximumcontexttokensize_maxtokensize", + "displayName": "Maximum size (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_kerberos_upnnamehints", + "displayName": "UPN Name Hints", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_blockedurlexceptions", + "displayName": "Blocked Url Exceptions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_blockedurls", + "displayName": "Blocked Urls", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_defaulturl", + "displayName": "Default URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton", + "displayName": "Enable End Session Button", + "options": [ + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enablehomebutton", + "displayName": "Enable Home Button", + "options": [ + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enablehomebutton_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enablehomebutton_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons", + "displayName": "Enable Navigation Buttons", + "options": [ + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_kioskbrowser_restartonidletime", + "displayName": "Restart On Idle Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_lanmanworkstation_enableinsecureguestlogons", + "displayName": "Enable Insecure Guest Logons", + "options": [ + { + "id": "device_vendor_msft_policy_config_lanmanworkstation_enableinsecureguestlogons_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_lanmanworkstation_enableinsecureguestlogons_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_licensing_allowwindowsentitlementreactivation", + "displayName": "Allow Windows Entitlement Reactivation", + "options": [ + { + "id": "device_vendor_msft_policy_config_licensing_allowwindowsentitlementreactivation_0", + "displayName": "Block", + "description": "Disable Windows license reactivation on managed devices." + }, + { + "id": "device_vendor_msft_policy_config_licensing_allowwindowsentitlementreactivation_1", + "displayName": "Allow", + "description": "Enable Windows license reactivation on managed devices." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_licensing_disallowkmsclientonlineavsvalidation", + "displayName": "Disallow KMS Client Online AVS Validation", + "options": [ + { + "id": "device_vendor_msft_policy_config_licensing_disallowkmsclientonlineavsvalidation_0", + "displayName": "Block", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_licensing_disallowkmsclientonlineavsvalidation_1", + "displayName": "Allow", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_blockmicrosoftaccounts", + "displayName": "Accounts Block Microsoft Accounts", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_blockmicrosoftaccounts_0", + "displayName": "Disabled (users will be able to use Microsoft accounts with Windows).", + "description": "Disabled (users will be able to use Microsoft accounts with Windows)." + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_blockmicrosoftaccounts_1", + "displayName": "Enabled (users can't add Microsoft accounts).", + "description": "Enabled (users can't add Microsoft accounts)." + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_blockmicrosoftaccounts_3", + "displayName": "Users can't add or log on with Microsoft accounts", + "description": "Users can't add or log on with Microsoft accounts" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus", + "displayName": "Accounts Enable Administrator Account Status", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableadministratoraccountstatus_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableguestaccountstatus", + "displayName": "Accounts Enable Guest Account Status", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableguestaccountstatus_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_enableguestaccountstatus_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly", + "displayName": "Accounts Limit Local Account Use Of Blank Passwords To Console Logon Only", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_limitlocalaccountuseofblankpasswordstoconsolelogononly_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_renameadministratoraccount", + "displayName": "Accounts Rename Administrator Account", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_accounts_renameguestaccount", + "displayName": "Accounts Rename Guest Account", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_allowedtoformatandejectremovablemedia", + "displayName": "Devices Allowed To Format And Eject Removable Media", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_allowundockwithouthavingtologon", + "displayName": "Devices Allow Undock Without Having To Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_allowundockwithouthavingtologon_1", + "displayName": "Allow", + "description": "Allow" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_allowundockwithouthavingtologon_0", + "displayName": "Block", + "description": "Block" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_preventusersfrominstallingprinterdriverswhenconnectingtosharedprinters", + "displayName": "Devices Prevent Users From Installing Printer Drivers When Connecting To Shared Printers", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_preventusersfrominstallingprinterdriverswhenconnectingtosharedprinters_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_preventusersfrominstallingprinterdriverswhenconnectingtosharedprinters_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_devices_restrictcdromaccesstolocallyloggedonuseronly", + "displayName": "Devices Restrict CDROM Access To Locally Logged On User Only", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_displayuserinformationwhenthesessionislocked", + "displayName": "Interactive Logon Display User Information When The Session Is Locked", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_displayuserinformationwhenthesessionislocked_1", + "displayName": "User display name, domain and user names", + "description": "User display name, domain and user names" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_displayuserinformationwhenthesessionislocked_2", + "displayName": "User display name only", + "description": "User display name only" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_displayuserinformationwhenthesessionislocked_3", + "displayName": "Do not display user information", + "description": "Do not display user information" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_displayuserinformationwhenthesessionislocked_4", + "displayName": "Domain and user names only", + "description": "Domain and user names only" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotdisplaylastsignedin", + "displayName": "Interactive Logon Do Not Display Last Signed In", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotdisplaylastsignedin_0", + "displayName": "Disabled (username will be shown)", + "description": "Disabled (username will be shown)" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotdisplaylastsignedin_1", + "displayName": "Enabled (username will not be shown)", + "description": "Enabled (username will not be shown)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotdisplayusernameatsignin", + "displayName": "Interactive Logon Do Not Display Username At Sign In", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotdisplayusernameatsignin_0", + "displayName": "Disabled (username will be shown)", + "description": "Disabled (username will be shown)" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotdisplayusernameatsignin_1", + "displayName": "Enabled (username will not be shown)", + "description": "Enabled (username will not be shown)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotrequirectrlaltdel", + "displayName": "Interactive Logon Do Not Require CTRLALTDEL", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotrequirectrlaltdel_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_donotrequirectrlaltdel_1", + "displayName": "Enabled (a user is not required to press CTRL+ALT+DEL to log on)", + "description": "Enabled (a user is not required to press CTRL+ALT+DEL to log on)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_machineinactivitylimit", + "displayName": "[Deprecated] Interactive Logon Machine Inactivity Limit (Deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_machineinactivitylimit_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_machineinactivitylimit_1", + "displayName": "Enabled (session will lock after amount of inactive time exceeds the inactivity limit)", + "description": "Enabled (session will lock after amount of inactive time exceeds the inactivity limit)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_machineinactivitylimit_v2", + "displayName": "Interactive Logon Machine Inactivity Limit", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_messagetextforusersattemptingtologon", + "displayName": "Interactive Logon Message Text For Users Attempting To Log On", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_messagetitleforusersattemptingtologon", + "displayName": "Interactive Logon Message Title For Users Attempting To Log On", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior", + "displayName": "Interactive Logon Smart Card Removal Behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior_0", + "displayName": "No Action", + "description": "No Action" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior_1", + "displayName": "Lock Workstation", + "description": "Lock Workstation" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior_2", + "displayName": "Force Logoff", + "description": "Force Logoff" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_interactivelogon_smartcardremovalbehavior_3", + "displayName": "Disconnect Remote Desktop Session", + "description": "Disconnect Remote Desktop Session" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways", + "displayName": "Microsoft Network Client Digitally Sign Communications Always", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsalways_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsifserveragrees", + "displayName": "Microsoft Network Client Digitally Sign Communications If Server Agrees", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsifserveragrees_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_digitallysigncommunicationsifserveragrees_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers", + "displayName": "Microsoft Network Client Send Unencrypted Password To Third Party SMB Servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkclient_sendunencryptedpasswordtothirdpartysmbservers_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways", + "displayName": "Microsoft Network Server Digitally Sign Communications Always", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsalways_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsifclientagrees", + "displayName": "Microsoft Network Server Digitally Sign Communications If Client Agrees", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsifclientagrees_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_microsoftnetworkserver_digitallysigncommunicationsifclientagrees_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts", + "displayName": "Network Access Do Not Allow Anonymous Enumeration Of SAM Accounts", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts_1", + "displayName": "Enabled", + "description": "Enabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccounts_0", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares", + "displayName": "Network Access Do Not Allow Anonymous Enumeration Of Sam Accounts And Shares", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares_1", + "displayName": "Enabled", + "description": "Enabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_donotallowanonymousenumerationofsamaccountsandshares_0", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares", + "displayName": "Network Access Restrict Anonymous Access To Named Pipes And Shares", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictanonymousaccesstonamedpipesandshares_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networkaccess_restrictclientsallowedtomakeremotecallstosam", + "displayName": "Network Access Restrict Clients Allowed To Make Remote Calls To SAM", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowlocalsystemtousecomputeridentityforntlm", + "displayName": "Network Security Allow Local System To Use Computer Identity For NTLM", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowlocalsystemtousecomputeridentityforntlm_1", + "displayName": "Allow", + "description": "Allow" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowlocalsystemtousecomputeridentityforntlm_0", + "displayName": "Block", + "description": "Block" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests", + "displayName": "Network Security Allow PKU2U Authentication Requests", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests_0", + "displayName": "Block", + "description": "Block" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_allowpku2uauthenticationrequests_1", + "displayName": "Allow", + "description": "Allow" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange", + "displayName": "Network Security Do Not Store LAN Manager Hash Value On Next Password Change", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_donotstorelanmanagerhashvalueonnextpasswordchange_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel", + "displayName": "Network Security LAN Manager Authentication Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_0", + "displayName": "Send LM and NTLM responses", + "description": "Send LM and NTLM responses" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_1", + "displayName": "Send LM and NTLM-use NTLMv2 session security if negotiated", + "description": "Send LM and NTLM-use NTLMv2 session security if negotiated" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_2", + "displayName": "Send LM and NTLM responses only", + "description": "Send LM and NTLM responses only" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_3", + "displayName": "Send LM and NTLMv2 responses only", + "description": "Send LM and NTLMv2 responses only" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_4", + "displayName": "Send LM and NTLMv2 responses only. Refuse LM", + "description": "Send LM and NTLMv2 responses only. Refuse LM" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_lanmanagerauthenticationlevel_5", + "displayName": "Send LM and NTLMv2 responses only. Refuse LM and NTLM", + "description": "Send LM and NTLMv2 responses only. Refuse LM and NTLM" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients", + "displayName": "Network Security Minimum Session Security For NTLMSSP Based Clients", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients_0", + "displayName": "None", + "description": "None" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients_524288", + "displayName": "Require NTLMv2 session security", + "description": "Require NTLMv2 session security" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients_536870912", + "displayName": "Require 128-bit encryption", + "description": "Require 128-bit encryption" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedclients_537395200", + "displayName": "Require NTLM and 128-bit encryption", + "description": "Require NTLM and 128-bit encryption" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers", + "displayName": "Network Security Minimum Session Security For NTLMSSP Based Servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers_0", + "displayName": "None", + "description": "None" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers_524288", + "displayName": "Require NTLMv2 session security", + "description": "Require NTLMv2 session security" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers_536870912", + "displayName": "Require 128-bit encryption", + "description": "Require 128-bit encryption" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_minimumsessionsecurityforntlmsspbasedservers_537395200", + "displayName": "Require NTLM and 128-bit encryption", + "description": "Require NTLM and 128-bit encryption" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_addremoteserverexceptionsforntlmauthentication", + "displayName": "Network Security Restrict NTLM Add Remote Server Exceptions For NTLM Authentication", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_auditincomingntlmtraffic", + "displayName": "Network Security Restrict NTLM Audit Incoming NTLM Traffic", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_auditincomingntlmtraffic_0", + "displayName": "Disable", + "description": "Disable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_auditincomingntlmtraffic_1", + "displayName": "Enable auditing for domain accounts", + "description": "Enable auditing for domain accounts" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_auditincomingntlmtraffic_2", + "displayName": "Enable auditing for all accounts", + "description": "Enable auditing for all accounts" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_incomingntlmtraffic", + "displayName": "Network Security Restrict NTLM Incoming NTLM Traffic", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_incomingntlmtraffic_0", + "displayName": "Allow all", + "description": "Allow all" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_incomingntlmtraffic_1", + "displayName": "Deny all domain accounts", + "description": "Deny all domain accounts" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_incomingntlmtraffic_2", + "displayName": "Deny all accounts", + "description": "Deny all accounts" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_outgoingntlmtraffictoremoteservers", + "displayName": "Network Security Restrict NTLM Outgoing NTLM Traffic To Remote Servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_outgoingntlmtraffictoremoteservers_0", + "displayName": "Allow all", + "description": "Allow all" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_outgoingntlmtraffictoremoteservers_1", + "displayName": "Deny all domain accounts", + "description": "Deny all domain accounts" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_networksecurity_restrictntlm_outgoingntlmtraffictoremoteservers_2", + "displayName": "Deny all accounts", + "description": "Deny all accounts" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_allowsystemtobeshutdownwithouthavingtologon", + "displayName": "Shutdown Allow System To Be Shut Down Without Having To Log On", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_allowsystemtobeshutdownwithouthavingtologon_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_allowsystemtobeshutdownwithouthavingtologon_1", + "displayName": "Enabled (Allow system to be shut down without having to log on)", + "description": "Enabled (Allow system to be shut down without having to log on)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_clearvirtualmemorypagefile", + "displayName": "Shutdown Clear Virtual Memory Page File", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_clearvirtualmemorypagefile_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_shutdown_clearvirtualmemorypagefile_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_allowuiaccessapplicationstopromptforelevation", + "displayName": "User Account Control Allow UI Access Applications To Prompt For Elevation", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_allowuiaccessapplicationstopromptforelevation_0", + "displayName": "disabled", + "description": "disabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_allowuiaccessapplicationstopromptforelevation_1", + "displayName": "enabled (allow UIAccess applications to prompt for elevation without using the secure desktop)", + "description": "enabled (allow UIAccess applications to prompt for elevation without using the secure desktop)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministratorprotection", + "displayName": "User Account Control Behavior Of The Elevation Prompt For Administrator Protection (Windows Insiders only)", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministratorprotection_1", + "displayName": "Prompt for credentials on the secure desktop", + "description": "Prompt for credentials on the secure desktop" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministratorprotection_2", + "displayName": "Prompt for consent on the secure desktop", + "description": "Prompt for consent on the secure desktop" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators", + "displayName": "User Account Control Behavior Of The Elevation Prompt For Administrators", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_0", + "displayName": "Elevate without prompting", + "description": "Elevate without prompting" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_1", + "displayName": "Prompt for credentials on the secure desktop", + "description": "Prompt for credentials on the secure desktop" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_2", + "displayName": "Prompt for consent on the secure desktop", + "description": "Prompt for consent on the secure desktop" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_3", + "displayName": "Prompt for credentials", + "description": "Prompt for credentials" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_4", + "displayName": "Prompt for consent", + "description": "Prompt for consent" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforadministrators_5", + "displayName": "Prompt for consent for non-Windows binaries", + "description": "Prompt for consent for non-Windows binaries" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforstandardusers", + "displayName": "User Account Control Behavior Of The Elevation Prompt For Standard Users", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforstandardusers_0", + "displayName": "Automatically deny elevation requests", + "description": "Automatically deny elevation requests" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforstandardusers_1", + "displayName": "Prompt for credentials on the secure desktop", + "description": "Prompt for credentials on the secure desktop" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_behavioroftheelevationpromptforstandardusers_3", + "displayName": "Prompt for credentials", + "description": "Prompt for credentials" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation", + "displayName": "User Account Control Detect Application Installations And Prompt For Elevation", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_detectapplicationinstallationsandpromptforelevation_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateexecutablefilesthataresignedandvalidated", + "displayName": "User Account Control Only Elevate Executable Files That Are Signed And Validated", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateexecutablefilesthataresignedandvalidated_0", + "displayName": "Disabled: Does not enforce validation.", + "description": "Disabled: Does not enforce validation." + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateexecutablefilesthataresignedandvalidated_1", + "displayName": "Enabled: Enforces validation.", + "description": "Enabled: Enforces validation." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateuiaccessapplicationsthatareinstalledinsecurelocations", + "displayName": "User Account Control Only Elevate UI Access Applications That Are Installed In Secure Locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateuiaccessapplicationsthatareinstalledinsecurelocations_0", + "displayName": "Disabled: Application runs with UIAccess integrity even if it does not reside in a secure location.", + "description": "Disabled: Application runs with UIAccess integrity even if it does not reside in a secure location." + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_onlyelevateuiaccessapplicationsthatareinstalledinsecurelocations_1", + "displayName": "Enabled: Application runs with UIAccess integrity only if it resides in secure location.", + "description": "Enabled: Application runs with UIAccess integrity only if it resides in secure location." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode", + "displayName": "User Account Control Run All Administrators In Admin Approval Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_runalladministratorsinadminapprovalmode_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation", + "displayName": "User Account Control Switch To The Secure Desktop When Prompting For Elevation", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_switchtothesecuredesktopwhenpromptingforelevation_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_typeofadminapprovalmode", + "displayName": "User Account Control Type Of Admin Approval Mode (Windows Insiders only)", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_typeofadminapprovalmode_1", + "displayName": "Legacy Admin Approval Mode", + "description": "Legacy Admin Approval Mode" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_typeofadminapprovalmode_2", + "displayName": "Admin Approval Mode with Administrator protection", + "description": "Admin Approval Mode with Administrator protection" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_useadminapprovalmode", + "displayName": "User Account Control Use Admin Approval Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_useadminapprovalmode_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_useadminapprovalmode_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_virtualizefileandregistrywritefailurestoperuserlocations", + "displayName": "User Account Control Virtualize File And Registry Write Failures To Per User Locations", + "options": [ + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_virtualizefileandregistrywritefailurestoperuserlocations_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_localpoliciessecurityoptions_useraccountcontrol_virtualizefileandregistrywritefailurestoperuserlocations_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localsecurityauthority_allowcustomsspsaps", + "displayName": "Allow Custom SSPs and APs to be loaded into LSASS", + "options": [ + { + "id": "device_vendor_msft_policy_config_localsecurityauthority_allowcustomsspsaps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localsecurityauthority_allowcustomsspsaps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localsecurityauthority_configurelsaprotectedprocess", + "displayName": "Configure Lsa Protected Process", + "options": [ + { + "id": "device_vendor_msft_policy_config_localsecurityauthority_configurelsaprotectedprocess_0", + "displayName": "Disabled. Default value. LSA will not run as protected process.", + "description": "Disabled. Default value. LSA will not run as protected process." + }, + { + "id": "device_vendor_msft_policy_config_localsecurityauthority_configurelsaprotectedprocess_1", + "displayName": "Enabled with UEFI lock. LSA will run as protected process and this configuration is UEFI locked.", + "description": "Enabled with UEFI lock. LSA will run as protected process and this configuration is UEFI locked." + }, + { + "id": "device_vendor_msft_policy_config_localsecurityauthority_configurelsaprotectedprocess_2", + "displayName": "Enabled without UEFI lock. LSA will run as protected process and this configuration is not UEFI locked.", + "description": "Enabled without UEFI lock. LSA will run as protected process and this configuration is not UEFI locked." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure", + "displayName": "Group Configuration", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup", + "displayName": "access group", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_action", + "displayName": "Group and user action", + "options": [ + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_action_add_update", + "displayName": "Add (Update)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_action_remove_update", + "displayName": "Remove (Update)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_action_add_restrict", + "displayName": "Add (Replace)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc", + "displayName": "Local group", + "options": [ + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_administrators", + "displayName": "Administrators", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_users", + "displayName": "Users", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_guests", + "displayName": "Guests", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_powerusers", + "displayName": "Power Users", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_remotedesktopusers", + "displayName": "Remote Desktop Users", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_desc_remotemanagementusers", + "displayName": "Remote Management Users", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_users", + "displayName": "Selected user(s)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_userselectiontype", + "displayName": "User selection type", + "options": [ + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_userselectiontype_users", + "displayName": "Users/Groups", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_localusersandgroups_configure_groupconfiguration_accessgroup_userselectiontype_manual", + "displayName": "Manual", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lockdown_allowedgeswipe", + "displayName": "Allow Edge Swipe", + "options": [ + { + "id": "device_vendor_msft_policy_config_lockdown_allowedgeswipe_0", + "displayName": "Block", + "description": "Disallow edge swipe." + }, + { + "id": "device_vendor_msft_policy_config_lockdown_allowedgeswipe_1", + "displayName": "Allow", + "description": "Allow edge swipe." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode", + "displayName": "Specify server", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_l_serveraddressexternal_value", + "displayName": "DNS name of the external server (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_l_serveraddressinternal_value", + "displayName": "DNS name of the internal server (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues", + "displayName": "Additional server versions supported", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_l_configuredservercheckvalues_value", + "displayName": "Server version names (semicolon separated list): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing", + "displayName": "Disable automatic upload of sign-in failure logs", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect", + "displayName": "Disable HTTP fallback for SIP connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials", + "displayName": "Require logon credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck", + "displayName": "Disable server version check", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload", + "displayName": "Enable using BITS to download Address Book Service files", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode", + "displayName": "Configure SIP security mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay", + "displayName": "Global Address Book Download Initial Delay", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_l_galdownloadinitialdelay_value", + "displayName": "Maximum possible number of minutes to delay download: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun", + "displayName": "Prevent users from running Microsoft Lync", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword", + "displayName": "Allow storage of user passwords", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression", + "displayName": "Configure SIP compression mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_l_policysipcompression", + "displayName": "Configure SIP compression mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_l_policysipcompression_0", + "displayName": "Always disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_l_policysipcompression_1", + "displayName": "Always enabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_l_policysipcompression_2", + "displayName": "Based on adaptor speed (default)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_l_policysipcompression_3", + "displayName": "Based on ping round-trip time", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata", + "displayName": "Trusted Domain List", + "options": [ + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_l_trustmodeldata_value", + "displayName": "Trusted Domains (comma separated list): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_maps_allowofflinemapsdownloadovermeteredconnection", + "displayName": "Allow Offline Maps Download Over Metered Connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_maps_allowofflinemapsdownloadovermeteredconnection_0", + "displayName": "Disabled. Force disable auto-update over metered connection.", + "description": "Disabled. Force disable auto-update over metered connection." + }, + { + "id": "device_vendor_msft_policy_config_maps_allowofflinemapsdownloadovermeteredconnection_1", + "displayName": "Enabled. Force enable auto-update over metered connection.", + "description": "Enabled. Force enable auto-update over metered connection." + }, + { + "id": "device_vendor_msft_policy_config_maps_allowofflinemapsdownloadovermeteredconnection_65535", + "displayName": "Not configured. User's choice.", + "description": "Not configured. User's choice." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_maps_enableofflinemapsautoupdate", + "displayName": "Enable Offline Maps Auto Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_maps_enableofflinemapsautoupdate_0", + "displayName": "Disabled. Force off auto-update.", + "description": "Disabled. Force off auto-update." + }, + { + "id": "device_vendor_msft_policy_config_maps_enableofflinemapsautoupdate_1", + "displayName": "Enabled. Force on auto-update.", + "description": "Enabled. Force on auto-update." + }, + { + "id": "device_vendor_msft_policy_config_maps_enableofflinemapsautoupdate_65535", + "displayName": "Not configured. User's choice.", + "description": "Not configured. User's choice." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_memorydump_allowcrashdump", + "displayName": "Allow Crash Dump", + "options": [ + { + "id": "device_vendor_msft_policy_config_memorydump_allowcrashdump_0", + "displayName": "Block", + "description": "Disable crash dump collection." + }, + { + "id": "device_vendor_msft_policy_config_memorydump_allowcrashdump_1", + "displayName": "Allow", + "description": "Allow crash dump collection." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_memorydump_allowlivedump", + "displayName": "Allow Live Dump", + "options": [ + { + "id": "device_vendor_msft_policy_config_memorydump_allowlivedump_0", + "displayName": "Block", + "description": "Disable live dump collection." + }, + { + "id": "device_vendor_msft_policy_config_memorydump_allowlivedump_1", + "displayName": "Allow", + "description": "Allow live dump collection." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_messaging_allowmessagesync", + "displayName": "Allow Message Sync", + "options": [ + { + "id": "device_vendor_msft_policy_config_messaging_allowmessagesync_0", + "displayName": "message sync is not allowed and cannot be changed by the user.", + "description": "message sync is not allowed and cannot be changed by the user." + }, + { + "id": "device_vendor_msft_policy_config_messaging_allowmessagesync_1", + "displayName": "message sync is allowed. The user can change this setting.", + "description": "message sync is allowed. The user can change this setting." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder", + "displayName": "Configure the location of the browser executable folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_browserexecutablefolderdesc", + "displayName": "Set value name to the Application User Model ID or the executable file name. You can use the \"*\" wildcard as value name to apply to all applications. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_browserexecutablefolderdesc_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_browserexecutablefolderdesc_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference", + "displayName": "Set the release channel search order preference", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc", + "displayName": "Set value name to the Application User Model ID or the executable file name. You can use the \"*\" wildcard as value name to apply to all applications. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_2", + "displayName": "Retrieve configurations and experiments", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_1", + "displayName": "Retrieve configurations only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_0", + "displayName": "Disable communication with the Experimentation and Configuration Service", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled", + "displayName": "Controls whether unload event handlers can be disabled.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist", + "displayName": "HTTP Allowlist", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_httpallowlistdesc", + "displayName": "HTTP Allowlist (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_httpallowlistdesc_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_httpallowlistdesc_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed", + "displayName": "Allows enabling the feature NewBaseUrlInheritanceBehavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list", + "displayName": "Enable built-in PDF reader powered by Adobe Acrobat for WebView2", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_newpdfreaderwebview2listdesc", + "displayName": "Set value name to the Application User Model ID or the executable file name. You can use the \"*\" wildcard as value name to apply to all applications. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_newpdfreaderwebview2listdesc_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_newpdfreaderwebview2listdesc_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled", + "displayName": "Check RSA key usage for server certificates issued by local trust anchors", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory", + "displayName": "Enable deleting browser and download history", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs", + "displayName": "Allow file selection dialogs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally", + "displayName": "Always open PDF files externally", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue", + "displayName": "Set application locale", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_applicationlocalevalue", + "displayName": "Application locale (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed", + "displayName": "Allow or block audio capture", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls", + "displayName": "Sites that can access audio capture devices without requesting permission", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_audiocaptureallowedurlsdesc", + "displayName": "Sites that can access audio capture devices without requesting permission (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled", + "displayName": "Enable AutoFill for addresses", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled", + "displayName": "Enable AutoFill for payment instruments", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun", + "displayName": "Automatically import another browser's data and settings at first run", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun", + "displayName": "Automatically import another browser's data and settings at first run (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_0", + "displayName": "Automatically imports all supported datatypes and settings from the default browser", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_1", + "displayName": "Automatically imports all supported datatypes and settings from Internet Explorer", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_2", + "displayName": "Automatically imports all supported datatypes and settings from Google Chrome", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_3", + "displayName": "Automatically imports all supported datatypes and settings from Safari", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_4", + "displayName": "Disables automatic import, and the import section of the first-run experience is skipped", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled", + "displayName": "Continue running background apps after Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies", + "displayName": "Block third party cookies", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled", + "displayName": "Enable profile creation from the Identity flyout menu or the Settings page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled", + "displayName": "Enable guest mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled", + "displayName": "Allow queries to a Browser Network Time service", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin", + "displayName": "Browser sign-in settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin", + "displayName": "Browser sign-in settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_0", + "displayName": "Disable browser sign-in", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_1", + "displayName": "Enable browser sign-in", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_2", + "displayName": "Force users to sign-in to use the browser", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled", + "displayName": "Use built-in DNS client", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_certificatetransparencyenforcementdisabledforcasdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas", + "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_certificatetransparencyenforcementdisabledforlegacycasdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls", + "displayName": "Disable Certificate Transparency enforcement for specific URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_certificatetransparencyenforcementdisabledforurlsdesc", + "displayName": "Disable Certificate Transparency enforcement for specific URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled", + "displayName": "Enable component updates in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack", + "displayName": "Configure Do Not Track", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech", + "displayName": "Configure Online Text To Speech", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability", + "displayName": "Control where developer tools can be used", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability", + "displayName": "Control where developer tools can be used (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability_0", + "displayName": "Block the developer tools on extensions installed by enterprise policy, allow in other contexts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability_1", + "displayName": "Allow using the developer tools", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability_2", + "displayName": "Don't allow using the developer tools", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis", + "displayName": "Disable support for 3D graphics APIs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots", + "displayName": "Disable taking screenshots", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir", + "displayName": "Set disk cache directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_diskcachedir", + "displayName": "Set disk cache directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize", + "displayName": "Set disk cache size, in bytes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_diskcachesize", + "displayName": "Set disk cache size: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory", + "displayName": "Set download directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_downloaddirectory", + "displayName": "Set download directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions", + "displayName": "Allow download restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions", + "displayName": "Download restrictions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_1", + "displayName": "Block dangerous downloads", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_2", + "displayName": "Block potentially dangerous downloads", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled", + "displayName": "Allows users to edit favorites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures", + "displayName": "Re-enable deprecated web platform features for a limited time", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_enabledeprecatedwebplatformfeaturesdesc", + "displayName": "Re-enable deprecated web platform features for a limited time (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload", + "displayName": "Enable Domain Actions Download from Microsoft (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks", + "displayName": "Enable online OCSP/CRL checks", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_2", + "displayName": "Retrieve configurations and experiments", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_1", + "displayName": "Retrieve configurations only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_0", + "displayName": "Disable communication with the Experimentation and Configuration Service", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled", + "displayName": "Enable favorites bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch", + "displayName": "Enforce Bing SafeSearch", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch", + "displayName": "Enforce Bing SafeSearch (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch_0", + "displayName": "Don't configure search restrictions in Bing", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch_1", + "displayName": "Configure moderate search restrictions in Bing", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch_2", + "displayName": "Configure strict search restrictions in Bing", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles", + "displayName": "Enable use of ephemeral profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch", + "displayName": "Enforce Google SafeSearch", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict_0", + "displayName": "Do not enforce Restricted Mode on YouTube", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict_1", + "displayName": "Enforce at least Moderate Restricted Mode on YouTube", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict_2", + "displayName": "Enforce Strict Restricted Mode for YouTube", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed", + "displayName": "Allow full screen mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled", + "displayName": "Use hardware acceleration when available", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata", + "displayName": "Allow importing of autofill form data", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites", + "displayName": "Allow importing of favorites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory", + "displayName": "Allow importing of browsing history", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage", + "displayName": "Allow importing of home page settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo", + "displayName": "Allow importing of payment info", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords", + "displayName": "Allow importing of saved passwords", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine", + "displayName": "Allow importing of search engine settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability", + "displayName": "Configure InPrivate mode availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability", + "displayName": "Configure InPrivate mode availability (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_0", + "displayName": "InPrivate mode available", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_1", + "displayName": "InPrivate mode disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_2", + "displayName": "InPrivate mode forced", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel", + "displayName": "Configure Internet Explorer integration", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel", + "displayName": "Configure Internet Explorer integration (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel_1", + "displayName": "Internet Explorer mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel_2", + "displayName": "Internet Explorer 11", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins", + "displayName": "Enable site isolation for specific origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_isolateorigins", + "displayName": "Enable site isolation for specific origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites", + "displayName": "Configure favorites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_managedfavorites", + "displayName": "Configure favorites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines", + "displayName": "Manage Search Engines", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_managedsearchengines", + "displayName": "Manage Search Engines (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy", + "displayName": "Maximum number of concurrent connections to the proxy server", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_maxconnectionsperproxy", + "displayName": "Maximum number of concurrent connections to the proxy server: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips", + "displayName": "Allow Google Cast to connect to Cast devices on all IP addresses", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled", + "displayName": "Enable usage and crash-related data reporting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions", + "displayName": "Enable network prediction", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions", + "displayName": "Enable network prediction (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular.\r\n(Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions_2", + "displayName": "Don't predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin", + "displayName": "Control where security restrictions on insecure origins apply", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_overridesecurityrestrictionsoninsecureorigindesc", + "displayName": "Control where security restrictions on insecure origins apply (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled", + "displayName": "Enable Proactive Authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled", + "displayName": "Enable full-tab promotional content", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation", + "displayName": "Ask where to save downloaded files", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed", + "displayName": "Allow QUIC protocol", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended", + "displayName": "Set application locale", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended_applicationlocalevalue", + "displayName": "Application locale (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofilladdressenabled_recommended", + "displayName": "Enable AutoFill for addresses", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofilladdressenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofilladdressenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofillcreditcardenabled_recommended", + "displayName": "Enable AutoFill for credit cards", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofillcreditcardenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofillcreditcardenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_backgroundmodeenabled_recommended", + "displayName": "Continue running background apps after Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_backgroundmodeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_backgroundmodeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended", + "displayName": "Block third party cookies", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended", + "displayName": "Set download directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended_downloaddirectory", + "displayName": "Set download directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended", + "displayName": "Allow download restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions", + "displayName": "Download restrictions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_1", + "displayName": "Block dangerous downloads", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_2", + "displayName": "Block potentially dangerous downloads", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended", + "displayName": "Enable favorites bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importautofillformdata_recommended", + "displayName": "Allow importing of autofill form data", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importautofillformdata_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importautofillformdata_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended", + "displayName": "Allow importing of favorites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importhistory_recommended", + "displayName": "Allow importing of browsing history", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importhistory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importhistory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended", + "displayName": "Allow importing of payment info", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsavedpasswords_recommended", + "displayName": "Allow importing of saved passwords", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsavedpasswords_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsavedpasswords_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsearchengine_recommended", + "displayName": "Allow importing of search engine settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsearchengine_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsearchengine_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended", + "displayName": "Enable network prediction", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions", + "displayName": "Enable network prediction (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular.\r\n(Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions_2", + "displayName": "Don't predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_resolvenavigationerrorsusewebservice_recommended", + "displayName": "Enable resolution of navigation errors using a web service", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_resolvenavigationerrorsusewebservice_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_resolvenavigationerrorsusewebservice_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended", + "displayName": "Enable search suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended", + "displayName": "Disable synchronization of data using Microsoft sync services", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended", + "displayName": "Enable Translate", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended", + "displayName": "Register protocol handlers", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_registeredprotocolhandlers", + "displayName": "Register protocol handlers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended", + "displayName": "Enable saving passwords to the password manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended", + "displayName": "Print headers and footers", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended", + "displayName": "Set the system default printer as the default printer", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended", + "displayName": "Configure Microsoft Defender SmartScreen", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepageisnewtabpage_recommended", + "displayName": "Set the new tab page as the home page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepageisnewtabpage_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepageisnewtabpage_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended", + "displayName": "Configure the home page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended_homepagelocation", + "displayName": "Home page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended", + "displayName": "Configure the new tab page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended_newtabpagelocation", + "displayName": "New tab page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended", + "displayName": "Action to take on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup", + "displayName": "Action to take on startup (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_5", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended", + "displayName": "Sites to open when the browser starts", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended_restoreonstartupurlsdesc", + "displayName": "Sites to open when the browser starts (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended", + "displayName": "Show Home button on toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification", + "displayName": "Notify a user that a browser restart is recommended or required for pending updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_relaunchnotification", + "displayName": "Notify a user that a browser restart is recommended or required for pending updates (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_relaunchnotification_1", + "displayName": "Recommended - Show a recurring prompt to the user indicating that a restart is recommended", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_relaunchnotification_2", + "displayName": "Required - Show a recurring prompt to the user indicating that a restart is required", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod", + "displayName": "Set the time period for update notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_relaunchnotificationperiod", + "displayName": "Set the time period for update notifications: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors", + "displayName": "Specify if online OCSP/CRL checks are required for local trust anchors", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice", + "displayName": "Enable resolution of navigation errors using a web service", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern", + "displayName": "Restrict which accounts can be used to sign in to Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_restrictsignintopattern", + "displayName": "Restrict which accounts can be used as Microsoft Edge primary accounts (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode", + "displayName": "Extend Adobe Flash content setting to all content", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled", + "displayName": "Disable saving browser history", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled", + "displayName": "Enable search suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation", + "displayName": "Websites or domains that don't need permission to use direct Security Key attestation", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_securitykeypermitattestationdesc", + "displayName": "Websites or domains that don't need permission to use direct Security Key attestation (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer", + "displayName": "Send all intranet sites to Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices", + "displayName": "Send site information to improve Microsoft services", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar", + "displayName": "Show Microsoft Office shortcut in favorites bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess", + "displayName": "Enable site isolation for every site", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled", + "displayName": "Enable spellcheck", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage", + "displayName": "Enable specific spellcheck languages", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_spellchecklanguagedesc", + "displayName": "Enable specific spellcheck languages (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed", + "displayName": "Allow users to proceed from the HTTPS warning page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin", + "displayName": "Minimum TLS version enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin", + "displayName": "Minimum SSL version enabled (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1", + "displayName": "TLS 1.0", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1.1", + "displayName": "TLS 1.1", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1.2", + "displayName": "TLS 1.2", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning", + "displayName": "Suppress the unsupported OS warning", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled", + "displayName": "Disable synchronization of data using Microsoft sync services", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled", + "displayName": "Configure tab lifecycles", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled", + "displayName": "Enable ending processes in the Browser task manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled", + "displayName": "Enable Translate", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist", + "displayName": "Define a list of allowed URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_urlallowlistdesc", + "displayName": "Define a list of allowed URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist", + "displayName": "Block access to a list of URLs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_urlblocklistdesc", + "displayName": "Block access to a list of URLs (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir", + "displayName": "Set the user data directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_userdatadir", + "displayName": "Set the user data directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed", + "displayName": "Allow user feedback", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed", + "displayName": "Allow or block video capture", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls", + "displayName": "Sites that can access video capture devices without requesting permission", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_videocaptureallowedurlsdesc", + "displayName": "Sites that can access video capture devices without requesting permission (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies", + "displayName": "Allow WebDriver to Override Incompatible Policies (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling", + "displayName": "Restrict exposure of local IP address by WebRTC", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling", + "displayName": "Restrict exposure of localhost IP address by WebRTC (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling_default", + "displayName": "Allow all interfaces. This exposes the local IP address", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling_default_public_and_private_interfaces", + "displayName": "Allow public and private interfaces over http default route. This exposes the local IP address", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling_default_public_interface_only", + "displayName": "Allow public interface over http default route. This doesn't expose the local IP address", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling_disable_non_proxied_udp", + "displayName": "Use TCP unless proxy server supports UDP. This doesn't expose the local IP address", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled", + "displayName": "Set WPAD optimization", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls", + "displayName": "Automatically select client certificates for these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_autoselectcertificateforurlsdesc", + "displayName": "Automatically select client certificates for these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls", + "displayName": "Allow cookies on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_cookiesallowedforurlsdesc", + "displayName": "Allow cookies on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls", + "displayName": "Block cookies on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_cookiesblockedforurlsdesc", + "displayName": "Block cookies on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls", + "displayName": "Limit cookies from specific websites to the current session", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_cookiessessiononlyforurlsdesc", + "displayName": "Limit cookies from specific websites to the current session (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting", + "displayName": "Configure cookies", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting", + "displayName": "Configure cookies (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting_1", + "displayName": "Let all sites create cookies", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting_2", + "displayName": "Don't let any site create cookies", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting_4", + "displayName": "Keep cookies for the duration of the session", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting", + "displayName": "Default geolocation setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting", + "displayName": "Default geolocation setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_1", + "displayName": "Allow sites to track users' physical location", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_2", + "displayName": "Don't allow any site to track users' physical location", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_3", + "displayName": "Ask whenever a site wants to track users' physical location", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting", + "displayName": "Default images setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_defaultimagessetting", + "displayName": "Default images setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_defaultimagessetting_1", + "displayName": "Allow all sites to show all images", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_defaultimagessetting_2", + "displayName": "Don't allow any site to show images", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting", + "displayName": "Default JavaScript setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting", + "displayName": "Default JavaScript setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_1", + "displayName": "Allow all sites to run JavaScript", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_2", + "displayName": "Don't allow any site to run JavaScript", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting", + "displayName": "Default notification setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting", + "displayName": "Default notification setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting_1", + "displayName": "Allow sites to show desktop notifications", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting_2", + "displayName": "Don't allow any site to show desktop notifications", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting_3", + "displayName": "Ask every time a site wants to show desktop notifications", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting", + "displayName": "Default Adobe Flash setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting", + "displayName": "Default Adobe Flash setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting_2", + "displayName": "Block the Adobe Flash plugin", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting_3", + "displayName": "Click to play", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting", + "displayName": "Default pop-up window setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_defaultpopupssetting", + "displayName": "Default pop-up window setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_defaultpopupssetting_1", + "displayName": "Allow all sites to show pop-ups", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_defaultpopupssetting_2", + "displayName": "Do not allow any site to show popups", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting_2", + "displayName": "Do not allow any site to request access to Bluetooth devices via the Web Bluetooth API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a nearby Bluetooth device", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_2", + "displayName": "Do not allow any site to request access to USB devices via the WebUSB API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a connected USB device", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls", + "displayName": "Allow images on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_imagesallowedforurlsdesc", + "displayName": "Allow images on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls", + "displayName": "Block images on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_imagesblockedforurlsdesc", + "displayName": "Block images on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls", + "displayName": "Allow JavaScript on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_javascriptallowedforurlsdesc", + "displayName": "Allow JavaScript on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls", + "displayName": "Block JavaScript on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_javascriptblockedforurlsdesc", + "displayName": "Block JavaScript on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls", + "displayName": "Allow notifications on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_notificationsallowedforurlsdesc", + "displayName": "Allow notifications on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls", + "displayName": "Block notifications on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_notificationsblockedforurlsdesc", + "displayName": "Block notifications on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls", + "displayName": "Allow the Adobe Flash plug-in on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_pluginsallowedforurlsdesc", + "displayName": "Allow the Adobe Flash plug-in on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls", + "displayName": "Block the Adobe Flash plug-in on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_pluginsblockedforurlsdesc", + "displayName": "Block the Adobe Flash plug-in on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls", + "displayName": "Allow pop-up windows on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_popupsallowedforurlsdesc", + "displayName": "Allow pop-up windows on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls", + "displayName": "Block pop-up windows on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_popupsblockedforurlsdesc", + "displayName": "Block pop-up windows on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls", + "displayName": "Grant access to specific sites to connect to specific USB devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_webusballowdevicesforurls", + "displayName": "Grant access to specific sites to connect to specific USB devices (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls", + "displayName": "Allow WebUSB on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_webusbaskforurlsdesc", + "displayName": "Allow WebUSB on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls", + "displayName": "Block WebUSB on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_webusbblockedforurlsdesc", + "displayName": "Block WebUSB on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled", + "displayName": "Enable the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings", + "displayName": "Default search provider encodings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_defaultsearchproviderencodingsdesc", + "displayName": "Default search provider encodings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl", + "displayName": "Specifies the search-by-image feature for the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_defaultsearchproviderimageurl", + "displayName": "Specifies the search-by-image feature for the default search provider (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for an image URL that uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for an image URL that uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername", + "displayName": "Default search provider name", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_defaultsearchprovidername", + "displayName": "Default search provider name (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl", + "displayName": "Default search provider URL for suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_defaultsearchprovidersuggesturl", + "displayName": "Default search provider URL for suggestions (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes", + "displayName": "Configure allowed extension types", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_extensionallowedtypesdesc", + "displayName": "Types of extensions/apps that are allowed to be installed (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist", + "displayName": "Allow specific extensions to be installed", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_extensioninstallallowlistdesc", + "displayName": "Extension IDs to exempt from the block list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist", + "displayName": "Control which extensions cannot be installed", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_extensioninstallblocklistdesc", + "displayName": "Extension IDs the user should be prevented from installing (or * for all) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist", + "displayName": "Control which extensions are installed silently", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_extensioninstallforcelistdesc", + "displayName": "Extension/App IDs and update URLs to be silently installed (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources", + "displayName": "Configure extension and user script install sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_extensioninstallsourcesdesc", + "displayName": "URL patterns to allow extension, app, and user script installs from (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings", + "displayName": "Configure extension management settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings_extensionsettings", + "displayName": "Configure extension management settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter", + "displayName": "Enable Google Cast", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar", + "displayName": "Show the cast icon in the toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt", + "displayName": "Allow cross-origin HTTP Basic Auth prompts", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist", + "displayName": "Specifies a list of servers that Microsoft Edge can delegate user credentials to", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_authnegotiatedelegateallowlist", + "displayName": "Specifies a list of servers that Microsoft Edge can delegate user credentials to (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes", + "displayName": "Supported authentication schemes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_authschemes", + "displayName": "Supported authentication schemes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist", + "displayName": "Configure list of allowed authentication servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_authserverallowlist", + "displayName": "Configure list of allowed authentication servers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup", + "displayName": "Disable CNAME lookup when negotiating Kerberos authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport", + "displayName": "Include non-standard port in Kerberos SPN", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist", + "displayName": "Control which native messaging hosts users can use", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_nativemessagingallowlistdesc", + "displayName": "Names of the native messaging hosts to exempt from the block list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist", + "displayName": "Configure native messaging block list", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_nativemessagingblocklistdesc", + "displayName": "Names of the forbidden native messaging hosts (or * for all) (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts", + "displayName": "Allow user-level native messaging hosts (installed without admin permissions)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled", + "displayName": "Enable saving passwords to the password manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture fingerprint of password", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_passwordprotectionloginurlsdesc", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture fingerprint of password (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger", + "displayName": "Configure password protection warning trigger", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger", + "displayName": "Configure password protection warning trigger (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_0", + "displayName": "Password protection warning is off", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_1", + "displayName": "Password protection warning is triggered by password reuse", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_defaultprinterselection", + "displayName": "Default printer selection rules", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_defaultprinterselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_defaultprinterselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_defaultprinterselection_defaultprinterselection", + "displayName": "Default printer selection rules (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printheaderfooter", + "displayName": "Print headers and footers", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printheaderfooter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printheaderfooter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printingenabled", + "displayName": "Enable printing", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter", + "displayName": "Set the system default printer as the default printer", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_usesystemprintdialog", + "displayName": "Print using system print dialog", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_usesystemprintdialog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_usesystemprintdialog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist", + "displayName": "Configure proxy bypass rules", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist_proxybypasslist", + "displayName": "Comma-separated list of proxy bypass rules (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode", + "displayName": "Configure proxy server settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode", + "displayName": "Configure proxy server settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_direct", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_auto_detect", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_pac_script", + "displayName": "Use a .pac proxy script", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_fixed_servers", + "displayName": "Use fixed proxy servers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_system", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl", + "displayName": "Set the proxy .pac file URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl_proxypacurl", + "displayName": "Set the proxy .pac file URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxyserver", + "displayName": "Configure address or URL of proxy server", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxyserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxyserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxyserver_proxyserver", + "displayName": "Configure address or URL of proxy server (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings", + "displayName": "Proxy settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings_proxysettings", + "displayName": "Proxy settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride", + "displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles", + "displayName": "Prevent bypassing of Microsoft Defender SmartScreen warnings about downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains", + "displayName": "Configure the list of domains for which Microsoft Defender SmartScreen won't trigger warnings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_smartscreenallowlistdomainsdesc", + "displayName": "Configure the list of domains for which SmartScreen won't trigger warnings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled", + "displayName": "Configure Microsoft Defender SmartScreen", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepageisnewtabpage", + "displayName": "Set the new tab page as the home page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepageisnewtabpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepageisnewtabpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepagelocation", + "displayName": "Configure the home page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepagelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepagelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepagelocation_homepagelocation", + "displayName": "Home page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites", + "displayName": "Hide the default top sites from the new tab page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation", + "displayName": "Configure the new tab page URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation_newtabpagelocation", + "displayName": "New tab page URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup", + "displayName": "Action to take on startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup", + "displayName": "Action to take on startup (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_5", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls", + "displayName": "Sites to open when the browser starts", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls_restoreonstartupurlsdesc", + "displayName": "Sites to open when the browser starts (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_showhomebutton", + "displayName": "Show Home button on toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_showhomebutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_showhomebutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions", + "displayName": "Allow download restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions", + "displayName": "Download restrictions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_1", + "displayName": "Block malicious downloads and dangerous file types", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_2", + "displayName": "Block potentially dangerous or unwanted downloads and dangerous file types", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_4", + "displayName": "Block malicious downloads", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended", + "displayName": "Allow download restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions", + "displayName": "Download restrictions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_1", + "displayName": "Block malicious downloads and dangerous file types", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_2", + "displayName": "Block potentially dangerous or unwanted downloads and dangerous file types", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_4", + "displayName": "Block malicious downloads", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled", + "displayName": "Configure if the ads transparency feature is enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled", + "displayName": "Hide restore pages dialog after browser crash", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode", + "displayName": "Secure mode and Certificate-based Digital Signature validation in native PDF reader", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates", + "displayName": "Prompt the user to select a certificate when multiple certificates match", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting", + "displayName": "Control use of the WebHID API", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_defaultwebhidguardsetting", + "displayName": "Control use of the WebHID API (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_defaultwebhidguardsetting_2", + "displayName": "Do not allow any site to request access to HID devices via the WebHID API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_defaultwebhidguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a HID device", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls", + "displayName": "Allow the WebHID API on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_webhidaskforurlsdesc", + "displayName": "Allow the WebHID API on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls", + "displayName": "Block the WebHID API on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_webhidblockedforurlsdesc", + "displayName": "Block the WebHID API on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts", + "displayName": "Configure the list of commands for which to disable keyboard shortcuts", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_configurekeyboardshortcuts", + "displayName": "Configure the list of commands for which to disable keyboard shortcuts (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled", + "displayName": "Allow features to download assets from the Asset Delivery Service", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas", + "displayName": "Allow Save page as in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended", + "displayName": "Allow features to download assets from the Asset Delivery Service", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended", + "displayName": "Allow users to configure Site safety services", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended", + "displayName": "Configure default state of Allow extensions from other stores setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled", + "displayName": "Allow users to configure Site safety services", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled", + "displayName": "Default Profile Setting Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_edgedefaultprofileenabled", + "displayName": "Default Profile Setting Enabled (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled", + "displayName": "Swipe gestures in Microsoft Edge kiosk mode enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled", + "displayName": "Enable the network service sandbox", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled", + "displayName": "Allow users to access the Outlook menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended", + "displayName": "Allow users to access the Outlook menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled", + "displayName": "Control Javascript setTimeout() function minimum timeout (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled", + "displayName": "Control the User-Agent Client Hints GREASE Update feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins", + "displayName": "List of origins that allow all HTTP authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_allhttpauthschemesallowedfororiginsdesc", + "displayName": "List of origins that allow all HTTP authentication (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay", + "displayName": "Display zoom in IE Mode tabs with DPI Scale included like it is in Internet Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed", + "displayName": "Live captions allowed", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled", + "displayName": "Origin-keyed agent clustering enabled by default", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled", + "displayName": "Guided Switch Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled", + "displayName": "Get user confirmation before closing a browser window with multiple tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting", + "displayName": "Configure browser process code integrity guard setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting", + "displayName": "Configure browser process code integrity guard setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_0", + "displayName": "Do not enable code integrity guard in the browser process.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_1", + "displayName": "Enable code integrity guard audit mode in the browser process.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_2", + "displayName": "Enable code integrity guard enforcement in the browser process.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled", + "displayName": "Double Click feature in Microsoft Edge enabled (only available in China)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled", + "displayName": "Enable Drop feature in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch", + "displayName": "Allow import of data from other browsers on each Microsoft Edge launch", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled", + "displayName": "XFA support in native PDF reader enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu", + "displayName": "Enables Microsoft Edge mini menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended", + "displayName": "Get user confirmation before closing a browser window with multiple tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended", + "displayName": "Enables Microsoft Edge mini menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled", + "displayName": "Text prediction enabled by default", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled", + "displayName": "Restrict the length of passwords that can be saved in the Password Manager", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_exemptfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload", + "displayName": "Wait for Internet Explorer mode tabs to completely unload before ending the browser session", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled", + "displayName": "Spell checking provided by Microsoft Editor", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled", + "displayName": "Synonyms are provided when using Microsoft Editor spell checker", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat_1", + "displayName": "The plain URL without any extra information, such as the page's title. This is the recommended option when this policy is configured. For more information, see the description.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat_3", + "displayName": "Titled Hyperlink: A hyperlink that points to the copied URL, but whose visible text is the title of the destination page. This is the Friendly URL format.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat_4", + "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled", + "displayName": "JavaScript setTimeout will not be clamped until a higher nesting threshold is set (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture", + "displayName": "Always use the OS capture engine to avoid issues with capturing Internet Explorer mode tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended", + "displayName": "Efficiency mode enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended", + "displayName": "Enable efficiency mode when the device is connected to a power source", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled", + "displayName": "Efficiency mode enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled", + "displayName": "Enable efficiency mode when the device is connected to a power source", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault", + "displayName": "Print PDF as Image Default", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet", + "displayName": "Enhanced Security Mode configuration for Intranet zone sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled", + "displayName": "Re-enable the Event.path API until Microsoft Edge version 115", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed", + "displayName": "Allow local MHTML files to open automatically in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended", + "displayName": "Performance Detector Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled", + "displayName": "Web Select Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess", + "displayName": "Force WebSQL to be enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled", + "displayName": "Force WebSQL in non-secure contexts to be enabled (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled", + "displayName": "Enable Workspaces", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~identity_linkedaccountenabled", + "displayName": "Enable the linked account feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~identity_linkedaccountenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~identity_linkedaccountenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~performance_performancedetectorenabled", + "displayName": "Performance Detector Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~performance_performancedetectorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~performance_performancedetectorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled", + "displayName": "Allow users to add and remove their own sites during startup when the RestoreOnStartupURLs policy is configured", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting", + "displayName": "Set the default \"share additional operating system region\" setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting", + "displayName": "'Set the default \"share additional operating system region\" setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting_0", + "displayName": "Limited", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting_1", + "displayName": "Always share the OS Regional format", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting_2", + "displayName": "Never share the OS Regional format", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled", + "displayName": "TLS Encrypted ClientHello Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended", + "displayName": "Set the default \"share additional operating system region\" setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting", + "displayName": "'Set the default \"share additional operating system region\" setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_0", + "displayName": "Limited", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_1", + "displayName": "Always share the OS Regional format", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_2", + "displayName": "Never share the OS Regional format", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled", + "displayName": "Hide App Launcher on Microsoft Edge new tab page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls", + "displayName": "Allow clipboard use on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_clipboardallowedforurlsdesc", + "displayName": "Allow clipboard use on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls", + "displayName": "Block clipboard use on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_clipboardblockedforurlsdesc", + "displayName": "Block clipboard use on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting", + "displayName": "Default clipboard site permission", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting", + "displayName": "Default clipboard site permission (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting_2", + "displayName": "Do not allow any site to use the clipboard site permission", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting_3", + "displayName": "Allow sites to ask the user to grant the clipboard site permission", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled", + "displayName": "Determines whether the Microsoft Root Store and built-in certificate verifier will be used to verify server certificates (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls", + "displayName": "Allow listed sites to connect to any HID device", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_webhidallowalldevicesforurlsdesc", + "displayName": "Allow listed sites to connect to any HID device (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls", + "displayName": "Allow listed sites connect to specific HID devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_webhidallowdevicesforurls", + "displayName": "Allow listed sites connect to specific HID devices (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls", + "displayName": "Automatically grant permission to these sites to connect to HID devices containing top-level collections with the given HID usage", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_webhidallowdeviceswithhidusagesforurls", + "displayName": "Automatically grant permission to these sites to connect to HID devices containing top-level collections with the given HID usage (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled", + "displayName": "Save and fill memberships", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended", + "displayName": "Save and fill memberships", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended", + "displayName": "Search Filters Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended", + "displayName": "Configure the sticky print preview settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_printpreviewstickysettings", + "displayName": "Configure the sticky print preview settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled", + "displayName": "Search Filters Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled", + "displayName": "Search in Sidebar enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled", + "displayName": "Search in Sidebar enabled (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled_0", + "displayName": "Enable search in sidebar", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled_1", + "displayName": "Disable search in sidebar for Kids Mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled_2", + "displayName": "Disable search in sidebar", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls", + "displayName": "Allow multiple automatic downloads in quick succession on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_automaticdownloadsallowedforurlsdesc", + "displayName": "Allow multiple automatic downloads in quick succession on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls", + "displayName": "Block multiple automatic downloads in quick succession on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_automaticdownloadsblockedforurlsdesc", + "displayName": "Block multiple automatic downloads in quick succession on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting", + "displayName": "Default automatic downloads setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting", + "displayName": "Default automatic downloads setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting_1", + "displayName": "Allow all websites to perform automatic downloads", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting_2", + "displayName": "Don't allow any website to perform automatic downloads", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings", + "displayName": "Configure navigation settings per groups of URLs in Microsoft Edge Workspaces", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_workspacesnavigationsettings", + "displayName": "Configure navigation settings per groups of URLs in Microsoft Edge Workspaces (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled", + "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled", + "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings", + "displayName": "Configure the sticky print preview settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_printpreviewstickysettings", + "displayName": "Configure the sticky print preview settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled", + "displayName": "Clear history for IE and IE mode every time you exit", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled", + "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended", + "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed", + "displayName": "Specifies whether SharedArrayBuffers can be used in a non cross-origin-isolated context", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton", + "displayName": "Shows button on native PDF viewer in Microsoft Edge that allows users to sign up for Adobe Acrobat subscription", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled", + "displayName": "Enable CryptoWallet feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled", + "displayName": "Mouse Gesture Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled", + "displayName": "Enable Read Aloud feature in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview", + "displayName": "Restore PDF view", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled", + "displayName": "Enable tab organization suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled", + "displayName": "Enables default browser settings campaigns", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled", + "displayName": "Enable Discover access to page contents for AAD profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled", + "displayName": "Determines whether the built-in certificate verifier will enforce constraints encoded into trust anchors loaded from the platform trust store (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton", + "displayName": "Show Downloads button on the toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled", + "displayName": "Standalone Sidebar Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled", + "displayName": "Compose is enabled for writing on the web", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled", + "displayName": "Manage the indicator UI of the Enhanced Security Mode (ESM) feature in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled", + "displayName": "Manage opt-out user experience for Enhanced Security Mode (ESM) in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended", + "displayName": "Wallet Donation Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled", + "displayName": "Search for image enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled", + "displayName": "Wallet Donation Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled", + "displayName": "Microsoft Edge management enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken", + "displayName": "Microsoft Edge management enrollment token", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken_edgemanagementenrollmenttoken", + "displayName": "Microsoft Edge management enrollment token (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementextensionsfeedbackenabled", + "displayName": "Microsoft Edge management extensions feedback enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementextensionsfeedbackenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementextensionsfeedbackenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_recommended~performance_recommended_pinbrowseressentialstoolbarbutton_recommended", + "displayName": "Pin browser essentials toolbar button", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_recommended~performance_recommended_pinbrowseressentialstoolbarbutton_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_recommended~performance_recommended_pinbrowseressentialstoolbarbutton_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed", + "displayName": "Allows enabling throttling of non-visible, cross-origin iframes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting", + "displayName": "Default setting for third-party storage partitioning", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_defaultthirdpartystoragepartitioningsetting", + "displayName": "Default setting for third-party storage partitioning (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_defaultthirdpartystoragepartitioningsetting_1", + "displayName": "Let third-party storage partitioning to be enabled.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_defaultthirdpartystoragepartitioningsetting_2", + "displayName": "Block third-party storage partitioning from being enabled.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins", + "displayName": "Block third-party storage partitioning for these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins_thirdpartystoragepartitioningblockedfororiginsdesc", + "displayName": "Block third-party storage partitioning for these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~performance_pinbrowseressentialstoolbarbutton", + "displayName": "Pin browser essentials toolbar button", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~performance_pinbrowseressentialstoolbarbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~performance_pinbrowseressentialstoolbarbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications", + "displayName": "Allows system notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled", + "displayName": "Edge Wallet E-Tree Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed", + "displayName": "Automatically open downloaded MHT or MHTML files from the web in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended_edgewalletetreeenabled_recommended", + "displayName": "Edge Wallet E-Tree Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended_edgewalletetreeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended_edgewalletetreeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended", + "displayName": "Enable Gamer Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed", + "displayName": "Enable the Search bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup", + "displayName": "Allow the Search bar at Windows startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails", + "displayName": "Show thumbnail images for browsing history", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled", + "displayName": "Enable split screen feature in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled", + "displayName": "Enable upload files from phone in Microsoft Edge desktop", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled", + "displayName": "Enable Gamer Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled", + "displayName": "Control the behavior for the cancel dialog produced by the beforeunload event", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient", + "displayName": "Forces Microsoft Edge to use its built-in WNS push client to connect to the Windows Push Notification Service.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled", + "displayName": "Controls whether unload event handlers can be disabled.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled", + "displayName": "Enable Picture in Picture overlay feature on supported webpages in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_recommended~passwordmanager_recommended_passworddeleteonbrowsercloseenabled_recommended", + "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_recommended~passwordmanager_recommended_passworddeleteonbrowsercloseenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_recommended~passwordmanager_recommended_passworddeleteonbrowsercloseenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled", + "displayName": "Control the new behavior for event dispatching on disabled form controls", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled", + "displayName": "Data URL support for SVGUseElement", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled", + "displayName": "Enable compression dictionary transport support", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~passwordmanager_passworddeleteonbrowsercloseenabled", + "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~passwordmanager_passworddeleteonbrowsercloseenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~passwordmanager_passworddeleteonbrowsercloseenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings", + "displayName": "Disable SmartScreen AppRep based warnings for specified file types on specified domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings_exemptsmartscreendownloadwarnings", + "displayName": "Disable SmartScreen AppRep based warnings for specified file types on specified domains (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagebingchatenabled", + "displayName": "Disable Bing chat entry-points on Microsoft Edge Enterprise new tab page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagebingchatenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagebingchatenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled", + "displayName": "Hide the company logo on the Microsoft Edge new tab page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge_recommended_organizationalbrandingonworkprofileuienabled_recommended", + "displayName": "Allow the use of your organization's branding assets from M365 on the profile-related UI of a work profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge_recommended_organizationalbrandingonworkprofileuienabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge_recommended_organizationalbrandingonworkprofileuienabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile", + "displayName": "Switch intranet sites to a work profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile", + "displayName": "Switch sites on the IE mode site list to a work profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy", + "displayName": "Microsoft Edge management service policy overrides platform policy.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy", + "displayName": "Allow Microsoft Edge management service user policies to override policies set through an enrollment token.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled", + "displayName": "Edge 3P SERP Telemetry Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended", + "displayName": "Edge 3P SERP Telemetry Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_organizationlogooverlayonappiconenabled_recommended", + "displayName": "Allow your organization's logo from Microsoft Entra to be overlaid on the Microsoft Edge app icon of a work profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_organizationlogooverlayonappiconenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_organizationlogooverlayonappiconenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended", + "displayName": "Configure the automatic profile switching site list", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_automaticprofileswitchingsitelist", + "displayName": "Configure the automatic profile switching site list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended", + "displayName": "Configure auto discard sleeping tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings", + "displayName": "Web App management settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_webappsettings", + "displayName": "Web App management settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist", + "displayName": "Configure the automatic profile switching site list", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_automaticprofileswitchingsitelist", + "displayName": "Configure the automatic profile switching site list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled", + "displayName": "Configure auto discard sleeping tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly", + "displayName": "Force Windows executable Native Messaging hosts to launch directly", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled", + "displayName": "Enable post-quantum key agreement for TLS", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery", + "displayName": "Disable DIAL protocol for cast device discovery", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled", + "displayName": "Enable Related Website Sets", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides", + "displayName": "Override Related Website Sets.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_relatedwebsitesetsoverrides", + "displayName": "Override Related Website Sets. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride", + "displayName": "Prevent bypassing Edge Website Typo Protection prompts for sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains", + "displayName": "Configure the list of domains for which Edge Website Typo Protection won't trigger warnings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_typosquattingallowlistdomainsdesc", + "displayName": "Configure the list of domains for which Edge Website Typo Protection won't trigger warnings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled", + "displayName": "Enables DALL-E themes generation", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass", + "displayName": "Allow users to bypass Enhanced Security Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled", + "displayName": "Super Drag Drop Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled", + "displayName": "URL reporting in Edge diagnostic data enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled", + "displayName": "Check RSA key usage for server certificates issued by local trust anchors", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins", + "displayName": "Allow screen capture without prior user gesture", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_screencapturewithoutgestureallowedfororiginsdesc", + "displayName": "Allow screen capture without prior user gesture (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting", + "displayName": "Default Window Management permission setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting", + "displayName": "Default Window Management permission setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting_2", + "displayName": "Denies the Window Management permission on all sites by default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting_3", + "displayName": "Ask every time a site wants obtain the Window Management permission", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls", + "displayName": "Allow Window Management permission on specified sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_windowmanagementallowedforurlsdesc", + "displayName": "Allow Window Management permission on specified sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls", + "displayName": "Block Window Management permission on specified sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_windowmanagementblockedforurlsdesc", + "displayName": "Block Window Management permission on specified sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist", + "displayName": "Blocklist for extension install types", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_extensioninstalltypeblocklistdesc", + "displayName": "Blocklist for extension install types (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability", + "displayName": "Control Manifest v2 extension availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability", + "displayName": "Control Manifest v2 extension availability (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_0", + "displayName": "Default browser behavior", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_1", + "displayName": "Manifest v2 is disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_2", + "displayName": "Manifest v2 is enabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_3", + "displayName": "Manifest v2 is enabled for forced extensions only", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext", + "displayName": "Control Copilot with Commerical Data Protection access to browser context for Microsoft Entra ID profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext", + "displayName": "Control Copilot access to browser context for Microsoft Entra ID profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled", + "displayName": "Enable deprecated/removed Mutation Events", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled", + "displayName": "Enable the Designer for Image Editor feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled", + "displayName": "Enable QR Code Generator", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled", + "displayName": "Enable zstd content encoding support", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive", + "displayName": "Keep the active Microsoft Edge window with an Internet Explorer mode tab always in the foreground.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled", + "displayName": "Enable proactive authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled", + "displayName": "Controls whether the deprecated :--foo syntax for CSS custom state is enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist", + "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_edgesidebarappurlhostblocklistdesc", + "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128.1~policy~microsoft_edge_applicationboundencryptionenabled", + "displayName": "Enable Application Bound Encryption", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128.1~policy~microsoft_edge_applicationboundencryptionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128.1~policy~microsoft_edge_applicationboundencryptionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings", + "displayName": "Dynamic Code Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings", + "displayName": "Dynamic Code Settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings_0", + "displayName": "Default dynamic code settings", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings_1", + "displayName": "Prevent the browser process from creating dynamic code", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled", + "displayName": "Enable open in sidebar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled", + "displayName": "Enable sidebar customize", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled", + "displayName": "Enable keyboard focusable scrollers", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended", + "displayName": "Enable insecure download warnings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled", + "displayName": "Enable insecure download warnings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings", + "displayName": "Control the availability of developer mode on extensions page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings", + "displayName": "Control the availability of developer mode on extensions page (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings_0", + "displayName": "Allow the usage of developer mode on extensions page", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings_1", + "displayName": "Do not allow the usage of developer mode on extensions page", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls", + "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_extensionextendedbackgroundlifetimeforportconnectionstourlsdesc", + "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended", + "displayName": "Action to take on Microsoft Edge startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup", + "displayName": "Action to take on Microsoft Edge startup (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_5", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_6", + "displayName": "Open a list of URLs and restore the last session", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup", + "displayName": "Action to take on Microsoft Edge startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup", + "displayName": "Action to take on Microsoft Edge startup (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_5", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_6", + "displayName": "Open a list of URLs and restore the last session", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites_1", + "displayName": "Allow ads on all sites", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites_2", + "displayName": "Block ads on sites with intrusive ads. (Default value)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload", + "displayName": "Allows a page to show popups during its unloading", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowtrackingforurls", + "displayName": "Configure tracking prevention exceptions for specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowtrackingforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowtrackingforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowtrackingforurls_allowtrackingforurlsdesc", + "displayName": "Configure tracking prevention exceptions for specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_autoplayallowed", + "displayName": "Allow media autoplay for websites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_autoplayallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_autoplayallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit", + "displayName": "Clear browsing data when Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clickonceenabled", + "displayName": "Allow users to open files using the ClickOnce protocol", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clickonceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clickonceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled", + "displayName": "Enable security warnings for command-line flags", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_directinvokeenabled", + "displayName": "Allow users to open files using the DirectInvoke protocol", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_directinvokeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_directinvokeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_edgecollectionsenabled", + "displayName": "Enable the Collections feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_edgecollectionsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_edgecollectionsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled", + "displayName": "Allow managed extensions to use the Enterprise Hardware Platform API", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_forcenetworkinprocess", + "displayName": "Force networking code to run in the browser process", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_forcenetworkinprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_forcenetworkinprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar", + "displayName": "Force direct intranet site navigation instead of searching on single word entries in the Address Bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_importbrowsersettings", + "displayName": "Allow importing of browser settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_importbrowsersettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_importbrowsersettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist", + "displayName": "Configure the Enterprise Mode Site List", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist_internetexplorerintegrationsitelist", + "displayName": "Configure the Enterprise Mode Site List (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled", + "displayName": "Configure whether a user always has a default profile automatically signed in with their work or school account", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended", + "displayName": "Clear browsing data when Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended", + "displayName": "Allow importing of browser settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenfortrusteddownloadsenabled_recommended", + "displayName": "Force Microsoft Defender SmartScreen checks on downloads from trusted sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenfortrusteddownloadsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenfortrusteddownloadsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled", + "displayName": "Enable renderer code integrity", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled", + "displayName": "Enable Signed HTTP Exchange (SXG) support", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist", + "displayName": "Force disable spellcheck languages", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist_spellchecklanguageblocklistdesc", + "displayName": "Force disable spellcheck languages (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention", + "displayName": "Block tracking of users' web-browsing activity", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention", + "displayName": "Block tracking of users' web-browsing activity (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_0", + "displayName": "Off (no tracking prevention)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_1", + "displayName": "Basic (blocks harmful trackers, content and ads will be personalized)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_2", + "displayName": "Balanced (blocks harmful trackers and trackers from sites user has not visited; content and ads will be less personalized)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_3", + "displayName": "Strict (blocks harmful trackers and majority of trackers from all sites; content and ads will have minimal personalization. Some parts of sites might not work)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled", + "displayName": "Force Microsoft Defender SmartScreen checks on downloads from trusted sources", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal", + "displayName": "Allow pages to send synchronous XHR requests during page dismissal", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_backgroundtemplatelistupdatesenabled", + "displayName": "Enables background updates to the list of available templates for Collections and other features that use templates", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_backgroundtemplatelistupdatesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_backgroundtemplatelistupdatesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink", + "displayName": "Specify custom help link", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink_customhelplink", + "displayName": "Specify custom help link (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_externalprotocoldialogshowalwaysopencheckbox", + "displayName": "Show an \"Always open\" checkbox in external protocol dialog", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_externalprotocoldialogshowalwaysopencheckbox_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_externalprotocoldialogshowalwaysopencheckbox_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist", + "displayName": "Configure the list of names that will bypass the HSTS policy check", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist_hstspolicybypasslistdesc", + "displayName": "Configure the list of names that will bypass the HSTS policy check (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_importopentabs", + "displayName": "Allow importing of open tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_importopentabs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_importopentabs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended", + "displayName": "Allow importing of open tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended", + "displayName": "Set new tab page quick links", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_newtabpagemanagedquicklinks", + "displayName": "Set new tab page quick links (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended", + "displayName": "Configure the Microsoft Edge new tab page experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype", + "displayName": "New tab page experience (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype_0", + "displayName": "Microsoft News feed experience", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype_1", + "displayName": "Office 365 feed experience", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_tabfreezingenabled", + "displayName": "Allow freezing of background tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_tabfreezingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_tabfreezingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo", + "displayName": "Set new tab page company logo (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo_newtabpagecompanylogo", + "displayName": "New tab page company logo (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks", + "displayName": "Set new tab page quick links", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks_newtabpagemanagedquicklinks", + "displayName": "Set new tab page quick links (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype", + "displayName": "Configure the Microsoft Edge new tab page experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_newtabpagesetfeedtype", + "displayName": "New tab page experience (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_newtabpagesetfeedtype_0", + "displayName": "Microsoft News feed experience", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_newtabpagesetfeedtype_1", + "displayName": "Office 365 feed experience", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled", + "displayName": "Suggest similar pages when a webpage can’t be found", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled", + "displayName": "DNS interception checks enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience", + "displayName": "Hide the First-run experience and splash screen", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled", + "displayName": "Allow websites to query for available payment methods", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled", + "displayName": "Allow personalization of ads, search and news by sending browsing history to Microsoft", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_pinningwizardallowed", + "displayName": "Allow Pin to taskbar wizard", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_pinningwizardallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_pinningwizardallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended_alternateerrorpagesenabled_recommended", + "displayName": "Suggest similar pages when a webpage can’t be found", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended_alternateerrorpagesenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended_alternateerrorpagesenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenpuaenabled_recommended", + "displayName": "Configure Microsoft Defender SmartScreen to block potentially unwanted apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenpuaenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenpuaenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb", + "displayName": "Set limit on megabytes of memory a single Microsoft Edge instance can use.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb_totalmemorylimitmb", + "displayName": "Set memory limit for Microsoft Edge instances: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist", + "displayName": "Configure list of force-installed Web Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist_webappinstallforcelist", + "displayName": "URLs for Web Apps to be silently installed. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webcomponentsv0enabled", + "displayName": "Re-enable Web Components v0 API until M84. (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webcomponentsv0enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webcomponentsv0enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls", + "displayName": "Manage exposure of local IP addressess by WebRTC", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls_webrtclocalipsallowedurlsdesc", + "displayName": "Manage exposure of local IP addressess by WebRTC (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_2", + "displayName": "Do not allow any site to load blockable mixed content", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_3", + "displayName": "Allow users to add exceptions to allow blockable mixed content", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls", + "displayName": "Allow insecure content on specified sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls_insecurecontentallowedforurlsdesc", + "displayName": "Allow insecure content on specified sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls", + "displayName": "Block insecure content on specified sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls_insecurecontentblockedforurlsdesc", + "displayName": "Block insecure content on specified sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled", + "displayName": "Enable default legacy SameSite cookie behavior setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled", + "displayName": "Enable default legacy SameSite cookie behavior setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_1", + "displayName": "Revert to legacy SameSite behavior for cookies on all sites", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_2", + "displayName": "Use SameSite-by-default behavior for cookies on all sites", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist", + "displayName": "Revert to legacy SameSite behavior for cookies on specified sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_legacysamesitecookiebehaviorenabledfordomainlistdesc", + "displayName": "Revert to legacy SameSite behavior for cookies on specified sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled", + "displayName": "Configure Microsoft Defender SmartScreen to block potentially unwanted apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_addressbarmicrosoftsearchinbingproviderenabled", + "displayName": "Enable Microsoft Search in Bing suggestions in the address bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_addressbarmicrosoftsearchinbingproviderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_addressbarmicrosoftsearchinbingproviderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for InPrivate and Guest profiles", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for InPrivate and Guest profiles (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Enable ambient authentication in regular sessions only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enable ambient authentication in InPrivate and regular sessions", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_2", + "displayName": "Enable ambient authentication in guest and regular sessions", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_3", + "displayName": "Enable ambient authentication in regular, InPrivate and guest sessions", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_audiosandboxenabled", + "displayName": "Allow the audio sandbox to run", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_audiosandboxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_audiosandboxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin", + "displayName": "Configure automatic sign in with an Active Directory domain account when there is no Azure AD domain account", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_configureonpremisesaccountautosignin", + "displayName": "Configure automatic sign in with an Active Directory domain account when there is no Azure AD domain account (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_configureonpremisesaccountautosignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_configureonpremisesaccountautosignin_1", + "displayName": "Sign in and make domain account non-removable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy", + "displayName": "Use a default referrer policy of no-referrer-when-downgrade. (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled", + "displayName": "Enable globally scoped HTTP auth cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importcookies", + "displayName": "Allow importing of Cookies", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importcookies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importcookies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importextensions", + "displayName": "Allow importing of extensions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importshortcuts", + "displayName": "Allow importing of shortcuts", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importshortcuts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importshortcuts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect", + "displayName": "Specify how \"in-page\" navigations to unconfigured sites behave when started from Internet Explorer mode pages", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_internetexplorerintegrationsiteredirect", + "displayName": "Specify how \"in-page\" navigations to unconfigured sites behave when started from Internet Explorer mode pages (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_internetexplorerintegrationsiteredirect_0", + "displayName": "Default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_internetexplorerintegrationsiteredirect_1", + "displayName": "Keep only automatic navigations in Internet Explorer mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_internetexplorerintegrationsiteredirect_2", + "displayName": "Keep all in-page navigations in Internet Explorer mode", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended", + "displayName": "Allow importing of Cookies", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended", + "displayName": "Allow importing of extensions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended", + "displayName": "Allow importing of shortcuts", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled", + "displayName": "Enable stricter treatment for mixed content", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_tls13hardeningforlocalanchorsenabled", + "displayName": "Enable a TLS 1.3 security feature for local trust anchors.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_tls13hardeningforlocalanchorsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_tls13hardeningforlocalanchorsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81identitydiff~policy~microsoft_edge_forcecertificatepromptsonmultiplematches", + "displayName": "Configure whether Microsoft Edge should automatically select a certificate when there are multiple certificate matches for a site configured with \"AutoSelectCertificateForUrls\"", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81identitydiff~policy~microsoft_edge_forcecertificatepromptsonmultiplematches_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev81identitydiff~policy~microsoft_edge_forcecertificatepromptsonmultiplematches_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowsurfgame", + "displayName": "Allow surf game", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowsurfgame_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowsurfgame_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls", + "displayName": "Configure the list of sites for which Microsoft Edge will attempt to establish a Token Binding with.", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls_allowtokenbindingforurlsdesc", + "displayName": "Configure the list of sites for which Microsoft Edge will attempt to establish a Token Binding with. (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_bingadssuppression", + "displayName": "Block all ads on Bing search results", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_bingadssuppression_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_bingadssuppression_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit", + "displayName": "Clear cached images and files when Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare", + "displayName": "Configure the Share experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_configureshare", + "displayName": "Configure the Share experience (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_configureshare_0", + "displayName": "Allow using the Share experience", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_configureshare_1", + "displayName": "Don't allow using the Share experience", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_deletedataonmigration", + "displayName": "Delete old browser data on migration", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_deletedataonmigration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_deletedataonmigration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode", + "displayName": "Control the mode of DNS-over-HTTPS", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode", + "displayName": "Control the mode of DNS-over-HTTPS (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode_off", + "displayName": "Disable DNS-over-HTTPS", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode_automatic", + "displayName": "Enable DNS-over-HTTPS with insecure fallback", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode_secure", + "displayName": "Enable DNS-over-HTTPS without insecure fallback", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled", + "displayName": "Allow users to configure Family safety", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_localprovidersenabled", + "displayName": "Allow suggestions from local providers", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_localprovidersenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_localprovidersenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended", + "displayName": "Clear cached images and files when Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_localprovidersenabled_recommended", + "displayName": "Allow suggestions from local providers", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_localprovidersenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_localprovidersenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_screencaptureallowed", + "displayName": "Allow or deny screen capture", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_screencaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_screencaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled", + "displayName": "Enable scrolling to text specified in URL fragments", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled", + "displayName": "Configure the list of types that are excluded from synchronization", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled_synctypeslistdisableddesc", + "displayName": "Configure the list of types that are excluded from synchronization (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_appcacheforceenabled", + "displayName": "Allows the AppCache feature to be re-enabled, even if it's turned off by default", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_appcacheforceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_appcacheforceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload", + "displayName": "Require that the Enterprise Mode Site List is available before tab navigation", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload", + "displayName": "Require that the Enterprise Mode Site List is available before tab navigation (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload_0", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload_1", + "displayName": "All eligible navigations", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection", + "displayName": "Configure enhanced hang detection for Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_internetexplorerintegrationenhancedhangdetection", + "displayName": "Configure enhanced hang detection for Internet Explorer mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_internetexplorerintegrationenhancedhangdetection_0", + "displayName": "Enhanced hang detection disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_internetexplorerintegrationenhancedhangdetection_1", + "displayName": "Enhanced hang detection enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled", + "displayName": "Enable Hiding of Native Windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout", + "displayName": "Set a timeout for delay of tab navigation for the Enterprise Mode Site List", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_navigationdelayforinitialsitelistdownloadtimeout", + "displayName": "Set a timeout for delay of tab navigation for the Enterprise Mode Site List: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended", + "displayName": "Manage Search Engines", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_managedsearchengines", + "displayName": "Manage Search Engines (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended", + "displayName": "Enable the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended", + "displayName": "Default search provider encodings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_defaultsearchproviderencodingsdesc", + "displayName": "Default search provider encodings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended", + "displayName": "Specifies the search-by-image feature for the default search provider", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_defaultsearchproviderimageurl", + "displayName": "Specifies the search-by-image feature for the default search provider (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended", + "displayName": "Parameters for an image URL that uses POST", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for an image URL that uses POST (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended", + "displayName": "Default search provider keyword", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended", + "displayName": "Default search provider name", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_defaultsearchprovidername", + "displayName": "Default search provider name (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended", + "displayName": "Default search provider search URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended", + "displayName": "Default search provider URL for suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_defaultsearchprovidersuggesturl", + "displayName": "Default search provider URL for suggestions (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_winhttpproxyresolverenabled", + "displayName": "Use Windows proxy resolver (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_winhttpproxyresolverenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_winhttpproxyresolverenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy", + "displayName": "Application Guard Container Proxy", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy_applicationguardcontainerproxy", + "displayName": "Application Guard Container Proxy (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins_autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls", + "displayName": "URLs where AutoOpenFileTypes can apply", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls_autoopenallowedforurlsdesc", + "displayName": "URLs where AutoOpenFileTypes can apply (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes", + "displayName": "List of file types that should be automatically opened on download", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes_autoopenfiletypesdesc", + "displayName": "List of file types that should be automatically opened on download (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_defaultsearchprovidercontextmenuaccessallowed", + "displayName": "Allow default search provider context menu search access", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_defaultsearchprovidercontextmenuaccessallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_defaultsearchprovidercontextmenuaccessallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_enablesha1forlocalanchors", + "displayName": "Allow certificates signed using SHA-1 when issued by local trust anchors (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_enablesha1forlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_enablesha1forlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings_exemptdomainfiletypepairsfromfiletypedownloadwarningsdesc", + "displayName": "Disable download file type extension-based warnings for specified file types on domains (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_intensivewakeupthrottlingenabled", + "displayName": "Control the IntensiveWakeUpThrottling feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_intensivewakeupthrottlingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_intensivewakeupthrottlingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended", + "displayName": "Configure the new tab page search box experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_newtabpagesearchbox", + "displayName": "New tab page search box experience (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_newtabpagesearchbox_bing", + "displayName": "Search box (Recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_newtabpagesearchbox_redirect", + "displayName": "Address bar", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmonitorallowed_recommended", + "displayName": "Allow users to be alerted if their passwords are found to be unsafe", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmonitorallowed_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmonitorallowed_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~startup_recommended_newtabpageprerenderenabled_recommended", + "displayName": "Enable preload of the new tab page for faster rendering", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~startup_recommended_newtabpageprerenderenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~startup_recommended_newtabpageprerenderenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation", + "displayName": "Set the roaming profile directory", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation_roamingprofilelocation", + "displayName": "Set the roaming profile directory (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilesupportenabled", + "displayName": "Enable using roaming copies for Microsoft Edge profile data", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilesupportenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilesupportenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist", + "displayName": "Specify the TLS cipher suites to disable", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist_tlsciphersuitedenylistdesc", + "displayName": "Specify the TLS cipher suites to disable (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox", + "displayName": "Configure the new tab page search box experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox", + "displayName": "New tab page search box experience (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox_bing", + "displayName": "Search box (Recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox_redirect", + "displayName": "Address bar", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed", + "displayName": "Allow users to be alerted if their passwords are found to be unsafe", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~startup_newtabpageprerenderenabled", + "displayName": "Enable preload of the new tab page for faster rendering", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~startup_newtabpageprerenderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~startup_newtabpageprerenderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist", + "displayName": "Block access to a specified list of services and export targets in Collections", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_collectionsservicesandexportsblocklistdesc", + "displayName": "Block access to a specified list of services and export targets in Collections (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting", + "displayName": "Default sensors setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting", + "displayName": "Default sensors setting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting_1", + "displayName": "Allow sites to access sensors", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting_2", + "displayName": "Do not allow any site to access sensors", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting", + "displayName": "Control use of the Serial API", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_defaultserialguardsetting", + "displayName": "Control use of the Serial API (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_defaultserialguardsetting_2", + "displayName": "Do not allow any site to request access to serial ports via the Serial API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_defaultserialguardsetting_3", + "displayName": "Allow sites to ask for user permission to access a serial port", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata", + "displayName": "Send required and optional diagnostic data about browser usage", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata", + "displayName": "Send required and optional diagnostic data about browser usage (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata_0", + "displayName": "Off (Not recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata_1", + "displayName": "Required data", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata_2", + "displayName": "Optional data", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed", + "displayName": "Allow access to the Enterprise Mode Site List Manager tool", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync", + "displayName": "Force synchronization of browser data and do not show the sync consent prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_insecureformswarningsenabled", + "displayName": "Enable warnings for insecure forms", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_insecureformswarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_insecureformswarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed", + "displayName": "Allow Internet Explorer mode testing", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit", + "displayName": "Save cookies when Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit_savecookiesonexitdesc", + "displayName": "Save cookies when Microsoft Edge closes (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsallowedforurls", + "displayName": "Allow access to sensors on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsallowedforurls_sensorsallowedforurlsdesc", + "displayName": "Allow access to sensors on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls", + "displayName": "Block access to sensors on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls_sensorsblockedforurlsdesc", + "displayName": "Block access to sensors on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls", + "displayName": "Allow the Serial API on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls_serialaskforurlsdesc", + "displayName": "Allow the Serial API on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls", + "displayName": "Block the Serial API on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls_serialblockedforurlsdesc", + "displayName": "Block the Serial API on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_useragentclienthintsenabled", + "displayName": "Enable the User-Agent Client Hints feature (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_useragentclienthintsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_useragentclienthintsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit", + "displayName": "Limits the number of user data snapshots retained for use in case of emergency rollback", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit_userdatasnapshotretentionlimit", + "displayName": "Limits the number of user data snapshots retained for use in case of emergency rollback: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting_2", + "displayName": "Don't allow any site to request read access to files and directories via the File System API", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting_3", + "displayName": "Allow sites to ask the user to grant read access to files and directories via the File System API", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_2", + "displayName": "Don't allow any site to request write access to files and directories", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_3", + "displayName": "Allow sites to ask the user to grant write access to files and directories", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls", + "displayName": "Allow read access via the File System API on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls_filesystemreadaskforurlsdesc", + "displayName": "Allow read access via the File System API on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls", + "displayName": "Block read access via the File System API on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls_filesystemreadblockedforurlsdesc", + "displayName": "Block read access via the File System API on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls", + "displayName": "Allow write access to files and directories on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls_filesystemwriteaskforurlsdesc", + "displayName": "Allow write access to files and directories on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls", + "displayName": "Block write access to files and directories on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls_filesystemwriteblockedforurlsdesc", + "displayName": "Block write access to files and directories on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_spotlightexperiencesandrecommendationsenabled", + "displayName": "Choose whether users can receive customized background images and text, suggestions, notifications,\r\nand tips for Microsoft services", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_spotlightexperiencesandrecommendationsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_spotlightexperiencesandrecommendationsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes", + "displayName": "Configure the background types allowed for the new tab page layout", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes", + "displayName": "New tab page experience (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes_1", + "displayName": "Disable daily background image type", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes_2", + "displayName": "Disable custom background image type", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes_3", + "displayName": "Disable all background image types", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat_1", + "displayName": "The plain URL without any extra information, such as the page's title. This is the recommended option when this policy is configured. For more information, see the description.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat_3", + "displayName": "Titled Hyperlink: A hyperlink that points to the copied URL, but whose visible text is the title of the destination page. This is the Friendly URL format.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat_4", + "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled", + "displayName": "Shopping in Microsoft Edge Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled", + "displayName": "Hide the one-time redirection dialog and the banner on Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended", + "displayName": "Shopping in Microsoft Edge Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended", + "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode", + "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode_0", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode_1", + "displayName": "Redirect sites based on the incompatible sites sitelist", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended", + "displayName": "Enable Password reveal button", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerpreventbhoinstall", + "displayName": "Prevent install of the BHO to redirect incompatible sites from Internet Explorer to Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerpreventbhoinstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerpreventbhoinstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode", + "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode", + "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode_0", + "displayName": "Disable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode_1", + "displayName": "Redirect sites based on the incompatible sites sitelist", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_speechrecognitionenabled", + "displayName": "Configure Speech Recognition", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_speechrecognitionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_speechrecognitionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_webcaptureenabled", + "displayName": "Enable web capture feature in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_webcaptureenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_webcaptureenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskaddressbareditingenabled", + "displayName": "Configure address bar editing for kiosk mode public browsing experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskaddressbareditingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskaddressbareditingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit", + "displayName": "Delete files downloaded as part of kiosk session when Microsoft Edge closes", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault", + "displayName": "Default printing page size", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault_printingpapersizedefault", + "displayName": "Default printing page size (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.0.705.23~policy~microsoft_edge_targetblankimpliesnoopener", + "displayName": "Do not set window.opener for links targeting _blank", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.0.705.23~policy~microsoft_edge_targetblankimpliesnoopener_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.0.705.23~policy~microsoft_edge_targetblankimpliesnoopener_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.0.705.23~policy~microsoft_edge~httpauthentication_basicauthoverhttpenabled", + "displayName": "Allow Basic authentication for HTTP", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.0.705.23~policy~microsoft_edge~httpauthentication_basicauthoverhttpenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.0.705.23~policy~microsoft_edge~httpauthentication_basicauthoverhttpenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended", + "displayName": "Set the background tab inactivity timeout for sleeping tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for sleeping tabs (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_30", + "displayName": "30 seconds of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_300", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_900", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_1800", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_3600", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_7200", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_10800", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_21600", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_43200", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for sleeping tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for sleeping tabs (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_30", + "displayName": "30 seconds of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_300", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_900", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_1800", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_3600", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_7200", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_10800", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_21600", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_43200", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed", + "displayName": "Allow launching of local files in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist", + "displayName": "Open local files in Internet Explorer mode file extension allow list", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist_internetexplorerintegrationlocalfileextensionallowlistdesc", + "displayName": "Open local files in Internet Explorer mode file extension allow list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileshowcontextmenu", + "displayName": "Show context menu to open a link in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileshowcontextmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileshowcontextmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_0", + "displayName": "Use default browser behavior.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_1", + "displayName": "Disable DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_2", + "displayName": "Disable DNS interception checks; allow did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_3", + "displayName": "Allow DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended", + "displayName": "Show Microsoft Rewards experiences", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended", + "displayName": "Enable startup boost", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended", + "displayName": "Block Sleeping Tabs on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_sleepingtabsblockedforurlsdesc", + "displayName": "Block Sleeping Tabs on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended", + "displayName": "Configure Sleeping Tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_300", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_900", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_1800", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_3600", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_7200", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_10800", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_21600", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_43200", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards", + "displayName": "Show Microsoft Rewards experiences", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_verticaltabsallowed", + "displayName": "Configures availability of a vertical layout for tabs on the side of the browser", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_verticaltabsallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_verticaltabsallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webrtcallowlegacytlsprotocols", + "displayName": "Allow legacy TLS/DTLS downgrade in WebRTC (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webrtcallowlegacytlsprotocols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webrtcallowlegacytlsprotocols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetallowed", + "displayName": "Enable the Web widget", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup", + "displayName": "Allow the Web widget at Windows startup", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~extensions_blockexternalextensions", + "displayName": "Blocks external extensions from being installed", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~extensions_blockexternalextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~extensions_blockexternalextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~performance_startupboostenabled", + "displayName": "Enable startup boost", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~performance_startupboostenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~performance_startupboostenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~printing_printertypedenylist", + "displayName": "Disable printer types on the deny list", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~printing_printertypedenylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~printing_printertypedenylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~printing_printertypedenylist_printertypedenylistdesc", + "displayName": "Disable printer types on the deny list (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls", + "displayName": "Block Sleeping Tabs on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls_sleepingtabsblockedforurlsdesc", + "displayName": "Block Sleeping Tabs on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled", + "displayName": "Configure Sleeping Tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_300", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_900", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_1800", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_3600", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_7200", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_10800", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_21600", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_43200", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime_browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_definepreferredlanguages", + "displayName": "Define an ordered list of preferred languages that websites should display in if the site supports the language", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_definepreferredlanguages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_definepreferredlanguages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_definepreferredlanguages_definepreferredlanguages", + "displayName": "Define an ordered list of preferred languages that websites should display in if the site supports the language (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended", + "displayName": "Block smart actions for a list of services", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended_smartactionsblocklistdesc", + "displayName": "Block smart actions for a list of services (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_showrecommendationsenabled", + "displayName": "Allow feature recommendations and browser assistance notifications from Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_showrecommendationsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_showrecommendationsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_smartactionsblocklist", + "displayName": "Block smart actions for a list of services", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_smartactionsblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_smartactionsblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_smartactionsblocklist_smartactionsblocklistdesc", + "displayName": "Block smart actions for a list of services (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~manageability_mamenabled", + "displayName": "Mobile App Management Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~manageability_mamenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~manageability_mamenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_any", + "displayName": "Allow printing with and without background graphics", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_enabled", + "displayName": "Allow printing only with background graphics", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_disabled", + "displayName": "Allow printing only without background graphics", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_enabled", + "displayName": "Enable background graphics printing mode by default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_disabled", + "displayName": "Disable background graphics printing mode by default", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on shutdown", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on shutdown: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin", + "displayName": "Sets managed configuration values for websites to specific origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin_managedconfigurationperorigin", + "displayName": "Sets managed configuration values for websites to specific origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_quickviewofficefilesenabled", + "displayName": "Manage QuickView Office files capability in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_quickviewofficefilesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_quickviewofficefilesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_recommended~httpauthentication_recommended_windowshelloforhttpauthenabled_recommended", + "displayName": "Windows Hello For HTTP Auth Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_recommended~httpauthentication_recommended_windowshelloforhttpauthenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_recommended~httpauthentication_recommended_windowshelloforhttpauthenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_sslerroroverrideallowedfororigins", + "displayName": "Allow users to proceed from the HTTPS warning page for specific origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_sslerroroverrideallowedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_sslerroroverrideallowedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_sslerroroverrideallowedfororigins_sslerroroverrideallowedfororiginsdesc", + "displayName": "Allow users to proceed from the HTTPS warning page for specific origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~applicationguard_applicationguardfavoritessyncenabled", + "displayName": "Application Guard Favorites Sync Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~applicationguard_applicationguardfavoritessyncenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~applicationguard_applicationguardfavoritessyncenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~httpauthentication_windowshelloforhttpauthenabled", + "displayName": "Windows Hello For HTTP Auth Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~httpauthentication_windowshelloforhttpauthenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~httpauthentication_windowshelloforhttpauthenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode", + "displayName": "Print Rasterization Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_printrasterizationmode", + "displayName": "Print Rasterization Mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_printrasterizationmode_0", + "displayName": "Full page rasterization", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_printrasterizationmode_1", + "displayName": "Avoid rasterization if possible", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_explicitlyallowednetworkports", + "displayName": "Explicitly allowed network ports", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_explicitlyallowednetworkports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_explicitlyallowednetworkports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_explicitlyallowednetworkports_explicitlyallowednetworkportsdesc", + "displayName": "Explicitly allowed network ports (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_importstartuppagesettings", + "displayName": "Allow importing of startup page settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_importstartuppagesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_importstartuppagesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_mathsolverenabled", + "displayName": "Let users snip a Math problem and get the solution with a step-by-step explanation in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_mathsolverenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_mathsolverenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_recommended_importstartuppagesettings_recommended", + "displayName": "Allow importing of startup page settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_recommended_importstartuppagesettings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_recommended_importstartuppagesettings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~applicationguard_applicationguardtrafficidentificationenabled", + "displayName": "Application Guard Traffic Identification", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~applicationguard_applicationguardtrafficidentificationenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~applicationguard_applicationguardtrafficidentificationenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagecontentenabled", + "displayName": "Allow Microsoft News content on the new tab page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagecontentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagecontentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagequicklinksenabled", + "displayName": "Allow quick links on the new tab page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagequicklinksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagequicklinksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_aadwebsitessousingthisprofileenabled", + "displayName": "Single sign-on for work or school sites using this profile enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_aadwebsitessousingthisprofileenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_aadwebsitessousingthisprofileenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault", + "displayName": "Configure Automatic HTTPS", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_automatichttpsdefault", + "displayName": "Configure Automatic HTTPS (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_automatichttpsdefault_0", + "displayName": "Automatic HTTPS functionality is disabled.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_automatichttpsdefault_1", + "displayName": "Navigations delivered over HTTP are switched to HTTPS, only on domains likely to support HTTPS.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_automatichttpsdefault_2", + "displayName": "All navigations delivered over HTTP are switched to HTTPS. Connection errors might occur more often.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_headlessmodeenabled", + "displayName": "Control use of the Headless Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_headlessmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_headlessmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationlocalsitelistexpirationdays", + "displayName": "Specify the number of days that a site remains on the local IE mode site list", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationlocalsitelistexpirationdays_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationlocalsitelistexpirationdays_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationlocalsitelistexpirationdays_internetexplorerintegrationlocalsitelistexpirationdays", + "displayName": "Specify the number of days that a site remains on the local IE mode site list: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationreloadiniemodeallowed", + "displayName": "Allow unconfigured sites to be reloaded in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationreloadiniemodeallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationreloadiniemodeallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_aadwebsitessousingthisprofileenabled_recommended", + "displayName": "Single sign-on for work or school sites using this profile enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_aadwebsitessousingthisprofileenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_aadwebsitessousingthisprofileenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended", + "displayName": "Configure Automatic HTTPS", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_automatichttpsdefault", + "displayName": "Configure Automatic HTTPS (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_automatichttpsdefault_0", + "displayName": "Automatic HTTPS functionality is disabled.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_automatichttpsdefault_1", + "displayName": "Navigations delivered over HTTP are switched to HTTPS, only on domains likely to support HTTPS.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_automatichttpsdefault_2", + "displayName": "All navigations delivered over HTTP are switched to HTTPS. Connection errors might occur more often.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_internetexplorerintegrationreloadiniemodeallowed_recommended", + "displayName": "Allow unconfigured sites to be reloaded in Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_internetexplorerintegrationreloadiniemodeallowed_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_internetexplorerintegrationreloadiniemodeallowed_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowed", + "displayName": "Specifies whether to allow insecure websites to make requests to more-private network endpoints", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowedforurls", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from insecure contexts", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowedforurls_insecureprivatenetworkrequestsallowedforurlsdesc", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from insecure contexts (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_0", + "displayName": "Automatically", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_1", + "displayName": "With device password", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_2", + "displayName": "With custom primary password", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_3", + "displayName": "Autofill off", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_autoplayallowlist", + "displayName": "Allow media autoplay on specific sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_autoplayallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_autoplayallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_autoplayallowlist_autoplayallowlistdesc", + "displayName": "Allow media autoplay on specific sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_cecpq2enabled", + "displayName": "CECPQ2 post-quantum key-agreement enabled for TLS", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_cecpq2enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_cecpq2enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_configureviewinfileexplorer", + "displayName": "Configure the View in File Explorer feature for SharePoint pages in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_configureviewinfileexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_configureviewinfileexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_configureviewinfileexplorer_configureviewinfileexplorer", + "displayName": "Configure the View in File Explorer feature for SharePoint pages in Microsoft Edge (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationcloudsitelist", + "displayName": "Configure the Enterprise Mode Cloud Site List", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationcloudsitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationcloudsitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationcloudsitelist_internetexplorerintegrationcloudsitelist", + "displayName": "Configure the Enterprise Mode Cloud Site List (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationsitelistrefreshinterval", + "displayName": "Configure how frequently the Enterprise Mode Site List is refreshed", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationsitelistrefreshinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationsitelistrefreshinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationsitelistrefreshinterval_internetexplorerintegrationsitelistrefreshinterval", + "displayName": "Configure how frequently the Enterprise Mode Site List is refreshed: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_localbrowserdatashareenabled", + "displayName": "Enable Windows to search local Microsoft Edge browsing data", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_localbrowserdatashareenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_localbrowserdatashareenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_msawebsitessousingthisprofileallowed", + "displayName": "Allow single sign-on for Microsoft sites using this profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_msawebsitessousingthisprofileallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_msawebsitessousingthisprofileallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_localbrowserdatashareenabled_recommended", + "displayName": "Enable Windows to search local Microsoft Edge browsing data", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_localbrowserdatashareenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_localbrowserdatashareenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_msawebsitessousingthisprofileallowed_recommended", + "displayName": "Allow single sign-on for Microsoft sites using this profile", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_msawebsitessousingthisprofileallowed_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_msawebsitessousingthisprofileallowed_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_travelassistanceenabled_recommended", + "displayName": "Enable travel assistance", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_travelassistanceenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_travelassistanceenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended", + "displayName": "Sets layout for printing", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_printingwebpagelayout", + "displayName": "Sets layout for printing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_printingwebpagelayout_0", + "displayName": "Sets layout option as portrait", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_printingwebpagelayout_1", + "displayName": "Sets layout option as landscape", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_relaunchwindow", + "displayName": "Set the time interval for relaunch", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_relaunchwindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_relaunchwindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_relaunchwindow_relaunchwindow", + "displayName": "Relaunch time window (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_remotedebuggingallowed", + "displayName": "Allow remote debugging", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_remotedebuggingallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_remotedebuggingallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_travelassistanceenabled", + "displayName": "Enable travel assistance", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_travelassistanceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_travelassistanceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_tripledesenabled", + "displayName": "Enable 3DES cipher suites in TLS", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_tripledesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_tripledesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting_1", + "displayName": "Allow any site to run JavaScript JIT", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting_2", + "displayName": "Do not allow any site to run JavaScript JIT", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitallowedforsites", + "displayName": "Allow JavaScript to use JIT on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitallowedforsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitallowedforsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitallowedforsites_javascriptjitallowedforsitesdesc", + "displayName": "Allow JavaScript to use JIT on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitblockedforsites", + "displayName": "Block JavaScript from using JIT on these sites", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitblockedforsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitblockedforsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitblockedforsites_javascriptjitblockedforsitesdesc", + "displayName": "Block JavaScript from using JIT on these sites (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_showpdfdefaultrecommendationsenabled", + "displayName": "Allow notifications to set Microsoft Edge as default PDF reader", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_showpdfdefaultrecommendationsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_showpdfdefaultrecommendationsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol", + "displayName": "Configure users ability to override feature flags", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_featureflagoverridescontrol", + "displayName": "Configure users ability to override feature flags (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_featureflagoverridescontrol_2", + "displayName": "Allow users to override feature flags using command line arguments only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_featureflagoverridescontrol_1", + "displayName": "Allow users to override feature flags", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_featureflagoverridescontrol_0", + "displayName": "Prevent users from overriding feature flags", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_implicitsigninenabled", + "displayName": "Enable implicit sign-in", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_implicitsigninenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_implicitsigninenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_oneauthauthenticationenforced", + "displayName": "OneAuth Authentication Flow Enforced for signin", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_oneauthauthenticationenforced_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_oneauthauthenticationenforced_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_passwordgeneratorenabled", + "displayName": "Allow users to get a strong password suggestion whenever they are creating an account online", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_passwordgeneratorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_passwordgeneratorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_0", + "displayName": "Automatically", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_1", + "displayName": "With device password", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout", + "displayName": "Sets layout for printing", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_printingwebpagelayout", + "displayName": "Sets layout for printing (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_printingwebpagelayout_0", + "displayName": "Sets layout option as portrait", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_printingwebpagelayout_1", + "displayName": "Sets layout option as landscape", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge_webrtcrespectosroutingtableenabled", + "displayName": "Enable support for Windows OS routing table rules when making peer to peer connections via WebRTC", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge_webrtcrespectosroutingtableenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge_webrtcrespectosroutingtableenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~applicationguard_applicationguardpassivemodeenabled", + "displayName": "Ignore Application Guard site list configuration and browse Edge normally", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~applicationguard_applicationguardpassivemodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~applicationguard_applicationguardpassivemodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~identity_onlyonpremisesimplicitsigninenabled", + "displayName": "Only on-premises account enabled for implicit sign-in", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~identity_onlyonpremisesimplicitsigninenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~identity_onlyonpremisesimplicitsigninenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_browserlegacyextensionpointsblockingenabled", + "displayName": "Enable browser legacy extension point blocking", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_browserlegacyextensionpointsblockingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_browserlegacyextensionpointsblockingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_crossoriginwebassemblymodulesharingenabled", + "displayName": "Specifies whether WebAssembly modules can be sent cross-origin", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_crossoriginwebassemblymodulesharingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_crossoriginwebassemblymodulesharingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_displaycapturepermissionspolicyenabled", + "displayName": "Specifies whether the display-capture permissions-policy is checked or skipped", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_displaycapturepermissionspolicyenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_displaycapturepermissionspolicyenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenheightadjustment", + "displayName": "Configure the pixel adjustment between window.open heights sourced from IE mode pages vs. Edge mode pages", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenheightadjustment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenheightadjustment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenheightadjustment_internetexplorerintegrationwindowopenheightadjustment", + "displayName": "Configure the pixel adjustment between window.open heights sourced from IE mode pages vs. Edge mode pages: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenwidthadjustment", + "displayName": "Configure the pixel adjustment between window.open widths sourced from IE mode pages vs. Edge mode pages", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenwidthadjustment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenwidthadjustment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenwidthadjustment_internetexplorerintegrationwindowopenwidthadjustment", + "displayName": "Configure the pixel adjustment between window.open widths sourced from IE mode pages vs. Edge mode pages: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended_visualsearchenabled_recommended", + "displayName": "Visual search enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended_visualsearchenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended_visualsearchenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended~smartscreen_recommended_newsmartscreenlibraryenabled_recommended", + "displayName": "Enable new SmartScreen library", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended~smartscreen_recommended_newsmartscreenlibraryenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended~smartscreen_recommended_newsmartscreenlibraryenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior", + "displayName": "Configure ShadowStack crash rollback behavior", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_shadowstackcrashrollbackbehavior", + "displayName": "Configure ShadowStack crash rollback behavior (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_shadowstackcrashrollbackbehavior_0", + "displayName": "Disable Hardware-enforced Stack Protection", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_shadowstackcrashrollbackbehavior_1", + "displayName": "Disable Hardware-enforced Stack Protection until the next Microsoft Edge update", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_shadowstackcrashrollbackbehavior_2", + "displayName": "Enable Hardware-enforced Stack Protection", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_visualsearchenabled", + "displayName": "Visual search enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_visualsearchenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_visualsearchenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~contentsettings_intranetfilelinksenabled", + "displayName": "Allow intranet zone file URL links from Microsoft Edge to open in Windows File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~contentsettings_intranetfilelinksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~contentsettings_intranetfilelinksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~smartscreen_newsmartscreenlibraryenabled", + "displayName": "Enable new SmartScreen library", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~smartscreen_newsmartscreenlibraryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~smartscreen_newsmartscreenlibraryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended", + "displayName": "Configure when efficiency mode should become active", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode", + "displayName": "Configure when efficiency mode should become active (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_4", + "displayName": "When the device is unplugged, efficiency mode takes moderate steps to save battery. When the device is unplugged and the battery is low, efficiency mode takes additional steps to save battery.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_5", + "displayName": "When the device is unplugged or unplugged and the battery is low, efficiency mode takes additional steps to save battery.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode", + "displayName": "Configure when efficiency mode should become active", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode", + "displayName": "Configure when efficiency mode should become active (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_4", + "displayName": "When the device is unplugged, efficiency mode takes moderate steps to save battery. When the device is unplugged and the battery is low, efficiency mode takes additional steps to save battery.", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_5", + "displayName": "When the device is unplugged or unplugged and the battery is low, efficiency mode takes additional steps to save battery.", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_audioprocesshighpriorityenabled", + "displayName": "Allow the audio process to run with priority above normal on Windows", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_audioprocesshighpriorityenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_audioprocesshighpriorityenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_autolaunchprotocolscomponentenabled", + "displayName": "AutoLaunch Protocols Component Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_autolaunchprotocolscomponentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_autolaunchprotocolscomponentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_forcesynctypes", + "displayName": "Configure the list of types that are included for synchronization", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_forcesynctypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_forcesynctypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_forcesynctypes_forcesynctypesdesc", + "displayName": "Configure the list of types that are included for synchronization (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes", + "displayName": "Configure whether form data and HTTP headers will be sent when entering or exiting Internet Explorer mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes", + "displayName": "Configure whether form data and HTTP headers will be sent when entering or exiting Internet Explorer mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes_0", + "displayName": "Do not send form data or headers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes_1", + "displayName": "Send form data only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes_2", + "displayName": "Send additional headers only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes_3", + "displayName": "Send form data and additional headers", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorermodetoolbarbuttonenabled", + "displayName": "Show the Reload in Internet Explorer mode button in the toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorermodetoolbarbuttonenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorermodetoolbarbuttonenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended_internetexplorermodetoolbarbuttonenabled_recommended", + "displayName": "Show the Reload in Internet Explorer mode button in the toolbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended_internetexplorermodetoolbarbuttonenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended_internetexplorermodetoolbarbuttonenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended", + "displayName": "Configure when efficiency mode should become active", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode", + "displayName": "Configure when efficiency mode should become active (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~typosquattingchecker_recommended_typosquattingcheckerenabled_recommended", + "displayName": "Configure Edge TyposquattingChecker", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~typosquattingchecker_recommended_typosquattingcheckerenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~typosquattingchecker_recommended_typosquattingcheckerenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_rendererappcontainerenabled", + "displayName": "Enable renderer in app container", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_rendererappcontainerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_rendererappcontainerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_sharedlinksenabled", + "displayName": "Show links shared from Microsoft 365 apps in History", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_sharedlinksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_sharedlinksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~applicationguard_applicationguarduploadblockingenabled", + "displayName": "Prevents files from being uploaded while in Application Guard", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~applicationguard_applicationguarduploadblockingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~applicationguard_applicationguarduploadblockingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode", + "displayName": "Configure when efficiency mode should become active", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode", + "displayName": "Configure when efficiency mode should become active (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode", + "displayName": "Print PostScript Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_printpostscriptmode", + "displayName": "Print PostScript Mode (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_printpostscriptmode_0", + "displayName": "Default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_printpostscriptmode_1", + "displayName": "Type42", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printrasterizepdfdpi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printrasterizepdfdpi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printrasterizepdfdpi_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~typosquattingchecker_typosquattingcheckerenabled", + "displayName": "Configure Edge TyposquattingChecker", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~typosquattingchecker_typosquattingcheckerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~typosquattingchecker_typosquattingcheckerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_accessibilityimagelabelsenabled", + "displayName": "Get Image Descriptions from Microsoft Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_accessibilityimagelabelsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_accessibilityimagelabelsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_corsnonwildcardrequestheaderssupport", + "displayName": "CORS non-wildcard request header support enabled (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_corsnonwildcardrequestheaderssupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_corsnonwildcardrequestheaderssupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgediscoverenabled", + "displayName": "Discover feature In Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgediscoverenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgediscoverenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgeenhanceimagesenabled", + "displayName": "Enhance images enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgeenhanceimagesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgeenhanceimagesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_internetexplorermodetabinedgemodeallowed", + "displayName": "Allow sites configured for Internet Explorer mode to open in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_internetexplorermodetabinedgemodeallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_internetexplorermodetabinedgemodeallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_openmicrosoftlinksinedgeenabled", + "displayName": "Always open links from certain Microsoft apps in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_openmicrosoftlinksinedgeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_openmicrosoftlinksinedgeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended_edgediscoverenabled_recommended", + "displayName": "Discover feature In Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended_edgediscoverenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended_edgediscoverenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreendnsrequestsenabled_recommended", + "displayName": "Enable Microsoft Defender SmartScreen DNS requests", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreendnsrequestsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreendnsrequestsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_websqlinthirdpartycontextenabled", + "displayName": "Force WebSQL in third-party contexts to be re-enabled (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_websqlinthirdpartycontextenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_websqlinthirdpartycontextenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowallportsforurls", + "displayName": "Automatically grant sites permission to connect all serial ports", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowallportsforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowallportsforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowallportsforurls_serialallowallportsforurlsdesc", + "displayName": "Automatically grant sites permission to connect all serial ports (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowusbdevicesforurls", + "displayName": "Automatically grant sites permission to connect to USB serial devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowusbdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowusbdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowusbdevicesforurls_serialallowusbdevicesforurls", + "displayName": "Automatically grant sites permission to connect to USB serial devices (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_sameorigintabcaptureallowedbyorigins", + "displayName": "Allow Same Origin Tab capture by these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_sameorigintabcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_sameorigintabcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_sameorigintabcaptureallowedbyorigins_sameorigintabcaptureallowedbyoriginsdesc", + "displayName": "Allow Same Origin Tab capture by these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_screencaptureallowedbyorigins", + "displayName": "Allow Desktop, Window, and Tab capture by these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_screencaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_screencaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_screencaptureallowedbyorigins_screencaptureallowedbyoriginsdesc", + "displayName": "Allow Desktop, Window, and Tab capture by these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_tabcaptureallowedbyorigins", + "displayName": "Allow Tab capture by these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_tabcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_tabcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_tabcaptureallowedbyorigins_tabcaptureallowedbyoriginsdesc", + "displayName": "Allow Tab capture by these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_windowcaptureallowedbyorigins", + "displayName": "Allow Window and Tab capture by these origins", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_windowcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_windowcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_windowcaptureallowedbyorigins_windowcaptureallowedbyoriginsdesc", + "displayName": "Allow Window and Tab capture by these origins (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~smartscreen_smartscreendnsrequestsenabled", + "displayName": "Enable Microsoft Defender SmartScreen DNS requests", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~smartscreen_smartscreendnsrequestsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~smartscreen_smartscreendnsrequestsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_0", + "displayName": "Standard mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_1", + "displayName": "Balanced mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_2", + "displayName": "Strict mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_3", + "displayName": "Basic mode", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_edgefollowenabled", + "displayName": "Enable Follow service in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_edgefollowenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_edgefollowenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_0", + "displayName": "Standard mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_1", + "displayName": "Balanced mode", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_2", + "displayName": "Strict mode", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodebypasslistdomains", + "displayName": "Configure the list of domains for which enhance security mode will not be enforced", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodebypasslistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodebypasslistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodebypasslistdomains_enhancesecuritymodebypasslistdomainsdesc", + "displayName": "Configure the list of domains for which enhance security mode will not be enforced (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodeenforcelistdomains", + "displayName": "Configure the list of domains for which enhance security mode will always be enforced", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodeenforcelistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodeenforcelistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodeenforcelistdomains_enhancesecuritymodeenforcelistdomainsdesc", + "displayName": "Configure the list of domains for which enhance security mode will always be enforced (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_inappsupportenabled", + "displayName": "In-app support Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_inappsupportenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_inappsupportenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_microsoftedgeinsiderpromotionenabled", + "displayName": "Microsoft Edge Insider Promotion Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_microsoftedgeinsiderpromotionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_microsoftedgeinsiderpromotionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_u2fsecuritykeyapienabled", + "displayName": "Allow using the deprecated U2F Security Key API (deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_u2fsecuritykeyapienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_u2fsecuritykeyapienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings", + "displayName": "Print preview sticky settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings", + "displayName": "Print preview sticky settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings_0", + "displayName": "Enable sticky settings for PDF and Webpages", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings_1", + "displayName": "Disable sticky settings for PDF and Webpages", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings_2", + "displayName": "Disable sticky settings for PDF", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings_3", + "displayName": "Disable sticky settings for Webpages", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_addressbareditingenabled", + "displayName": "Configure address bar editing", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_addressbareditingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_addressbareditingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_allowgamesmenu", + "displayName": "Allow users to access the games menu", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_allowgamesmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_allowgamesmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_donotsilentlyblockprotocolsfromorigins", + "displayName": "Define a list of protocols that can not be silently blocked by anti-flood protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_donotsilentlyblockprotocolsfromorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_donotsilentlyblockprotocolsfromorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_donotsilentlyblockprotocolsfromorigins_donotsilentlyblockprotocolsfromorigins", + "displayName": "Define a list of protocols that can not be silently blocked by anti-flood protection (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_hubssidebarenabled", + "displayName": "Show Hubs Sidebar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_hubssidebarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_hubssidebarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudneutralsitesreporting", + "displayName": "Configure reporting of potentially misconfigured neutral site URLs to the M365 Admin Center Site Lists app", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudneutralsitesreporting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudneutralsitesreporting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudneutralsitesreporting_internetexplorerintegrationcloudneutralsitesreporting", + "displayName": "Configure reporting of potentially misconfigured neutral site URLs to the M365 Admin Center Site Lists app (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudusersitesreporting", + "displayName": "Configure reporting of IE Mode user list entries to the M365 Admin Center Site Lists app", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudusersitesreporting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudusersitesreporting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudusersitesreporting_internetexplorerintegrationcloudusersitesreporting", + "displayName": "Configure reporting of IE Mode user list entries to the M365 Admin Center Site Lists app (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended_hubssidebarenabled_recommended", + "displayName": "Show Hubs Sidebar", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended_hubssidebarenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended_hubssidebarenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended~identity_recommended_signinctaonntpenabled_recommended", + "displayName": "Enable sign in click to action dialog", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended~identity_recommended_signinctaonntpenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended~identity_recommended_signinctaonntpenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_relatedmatchescloudserviceenabled", + "displayName": "Configure Related Matches in Find on Page", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_relatedmatchescloudserviceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_relatedmatchescloudserviceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_sandboxexternalprotocolblocked", + "displayName": "Allow Microsoft Edge to block navigations to external protocols in a sandboxed iframe", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_sandboxexternalprotocolblocked_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_sandboxexternalprotocolblocked_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction", + "displayName": "Enable or disable the User-Agent Reduction", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_useragentreduction", + "displayName": "Enable or disable the User-Agent Reduction (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_useragentreduction_0", + "displayName": "User-Agent reduction will be controllable via Experimentation", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_useragentreduction_1", + "displayName": "User-Agent reduction diabled, and not enabled by Experimentation", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_useragentreduction_2", + "displayName": "User-Agent reduction will be enabled for all origins", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge~passwordmanager_passwordmanagerblocklist", + "displayName": "Configure the list of domains for which the password manager UI (Save and Fill) will be disabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge~passwordmanager_passwordmanagerblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge~passwordmanager_passwordmanagerblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge~passwordmanager_passwordmanagerblocklist_passwordmanagerblocklistdesc", + "displayName": "Configure the list of domains for which the password manager UI (Save and Fill) will be disabled (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_aadgroupmembershipcachevalidityindays", + "displayName": "AAD Group Membership Cache Validity In Days", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_allowcaptiveportalbeforelogon", + "displayName": "Allow Captive Portal Before Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_allowcaptiveportalbeforelogon_0", + "displayName": "Displaying captive portal is not allowed.", + "description": "Displaying captive portal is not allowed." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_allowcaptiveportalbeforelogon_1", + "displayName": "Displaying captive portal is allowed.", + "description": "Displaying captive portal is allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_allowlaunchuriinsingleappkiosk", + "displayName": "Allow Launch Uri In Single App Kiosk", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_allowlaunchuriinsingleappkiosk_0", + "displayName": "Applications are not allowed to be launched with Launcher API, when in single app kiosk mode.", + "description": "Applications are not allowed to be launched with Launcher API, when in single app kiosk mode." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_allowlaunchuriinsingleappkiosk_1", + "displayName": "Applications are allowed to be launched with Launcher API, when in single app kiosk mode.", + "description": "Applications are allowed to be launched with Launcher API, when in single app kiosk mode." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_autologonuser", + "displayName": "Auto Logon User", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_automaticdisplayadjustment", + "displayName": "Automatic Display Adjustment", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_automaticdisplayadjustment_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_automaticdisplayadjustment_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_brightnessbuttondisabled", + "displayName": "Brightness Button Disabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_brightnessbuttondisabled_0", + "displayName": "Disabled", + "description": "Brightness can be changed with press of brightness button." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_brightnessbuttondisabled_1", + "displayName": "Enabled", + "description": "Brightness cannot be changed with press of brightness button." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_configuremovingplatform", + "displayName": "Configure Moving Platform", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_configuremovingplatform_0", + "displayName": "Last set user's preference. Initial state is OFF and after that user's preference is persisted across reboots and is used to initialize the system.", + "description": "Last set user's preference. Initial state is OFF and after that user's preference is persisted across reboots and is used to initialize the system." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_configuremovingplatform_1", + "displayName": "Moving platform is disabled and cannot be changed by user.", + "description": "Moving platform is disabled and cannot be changed by user." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_configuremovingplatform_2", + "displayName": "Moving platform is enabled and cannot be changed by user.", + "description": "Moving platform is enabled and cannot be changed by user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_disallownetworkconnectivitypassivepolling", + "displayName": "Disallow Network Connectivity Passive Polling", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_disallownetworkconnectivitypassivepolling_0", + "displayName": "Allowed.", + "description": "Allowed." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_disallownetworkconnectivitypassivepolling_1", + "displayName": "Not allowed.", + "description": "Not allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_eyetrackingcalibrationprompt", + "displayName": "Eye Tracking Calibration Prompt", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_eyetrackingcalibrationprompt_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_eyetrackingcalibrationprompt_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_fallbackdiagnostics", + "displayName": "Fallback Diagnostics", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_fallbackdiagnostics_0", + "displayName": "Not allowed. Diagnostic logs cannot be collected by pressing the button combination.", + "description": "Not allowed. Diagnostic logs cannot be collected by pressing the button combination." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_fallbackdiagnostics_1", + "displayName": "Allowed for device owners only. Diagnostics logs can be collected by pressing the button combination only if signed-in user is considered as device owner.", + "description": "Allowed for device owners only. Diagnostics logs can be collected by pressing the button combination only if signed-in user is considered as device owner." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_fallbackdiagnostics_2", + "displayName": "Allowed for all users. Diagnostic logs can be collected by pressing the button combination.", + "description": "Allowed for all users. Diagnostic logs can be collected by pressing the button combination." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_headtrackingmode", + "displayName": "Head Tracking Mode", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_manualdowndirectiondisabled", + "displayName": "Manual Down Direction Disabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_manualdowndirectiondisabled_0", + "displayName": "User is allowed to manually change down direction.", + "description": "User is allowed to manually change down direction." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_manualdowndirectiondisabled_1", + "displayName": "User is not allowed to manually change down direction.", + "description": "User is not allowed to manually change down direction." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_microphonedisabled", + "displayName": "Microphone Disabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_microphonedisabled_0", + "displayName": "Disabled", + "description": "Microphone can be used for voice." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_microphonedisabled_1", + "displayName": "Enabled", + "description": "Microphone cannot be used for voice." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_skipcalibrationduringsetup", + "displayName": "Skip Calibration During Setup", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_skipcalibrationduringsetup_0", + "displayName": "Eye tracking calibration process will be shown during device setup and first time user setup.", + "description": "Eye tracking calibration process will be shown during device setup and first time user setup." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_skipcalibrationduringsetup_1", + "displayName": "Eye tracking calibration process will not be shown during device setup and first time user setup.", + "description": "Eye tracking calibration process will not be shown during device setup and first time user setup." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_skiptrainingduringsetup", + "displayName": "Skip Training During Setup", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_skiptrainingduringsetup_0", + "displayName": "Training process will be shown during device setup and first time user setup.", + "description": "Training process will be shown during device setup and first time user setup." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_skiptrainingduringsetup_1", + "displayName": "Training process will not be shown during device setup and first time user setup.", + "description": "Training process will not be shown during device setup and first time user setup." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_visitorautologon", + "displayName": "Visitor Auto Logon", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_visitorautologon_0", + "displayName": "Visitor user will not be signed in automatically.", + "description": "Visitor user will not be signed in automatically." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_visitorautologon_1", + "displayName": "Visitor user will be signed in automatically.", + "description": "Visitor user will be signed in automatically." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_volumebuttondisabled", + "displayName": "Volume Button Disabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_mixedreality_volumebuttondisabled_0", + "displayName": "Disabled", + "description": "Volume can be changed with press of the volume button." + }, + { + "id": "device_vendor_msft_policy_config_mixedreality_volumebuttondisabled_1", + "displayName": "Enabled", + "description": "Volume cannot be changed with press of the volume button." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_applyuacrestrictionstolocalaccountsonnetworklogon", + "displayName": "Apply UAC restrictions to local accounts on network logons", + "options": [ + { + "id": "device_vendor_msft_policy_config_mssecurityguide_applyuacrestrictionstolocalaccountsonnetworklogon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_applyuacrestrictionstolocalaccountsonnetworklogon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1clientdriver", + "displayName": "Configure SMB v1 client driver", + "options": [ + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1clientdriver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1clientdriver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1clientdriver_pol_secguide_smb1clientdriver", + "displayName": "Configure MrxSmb10 driver", + "options": [ + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1clientdriver_pol_secguide_smb1clientdriver_4", + "displayName": "Disable driver (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1clientdriver_pol_secguide_smb1clientdriver_3", + "displayName": "Manual start (default for Win7/2008/2008R2/2012)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1clientdriver_pol_secguide_smb1clientdriver_2", + "displayName": "Automatic start (default for Win8.1/2012R2/newer)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1server", + "displayName": "Configure SMB v1 server", + "options": [ + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1server_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_configuresmbv1server_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_enablestructuredexceptionhandlingoverwriteprotection", + "displayName": "Enable Structured Exception Handling Overwrite Protection (SEHOP)", + "options": [ + { + "id": "device_vendor_msft_policy_config_mssecurityguide_enablestructuredexceptionhandlingoverwriteprotection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_enablestructuredexceptionhandlingoverwriteprotection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_turnonwindowsdefenderprotectionagainstpotentiallyunwantedapplications", + "displayName": "Turn on Windows Defender protection against Potentially Unwanted Applications (DEPRECATED)", + "options": [ + { + "id": "device_vendor_msft_policy_config_mssecurityguide_turnonwindowsdefenderprotectionagainstpotentiallyunwantedapplications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_turnonwindowsdefenderprotectionagainstpotentiallyunwantedapplications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_wdigestauthentication", + "displayName": "WDigest Authentication (disabling may require KB2871997)", + "options": [ + { + "id": "device_vendor_msft_policy_config_mssecurityguide_wdigestauthentication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_mssecurityguide_wdigestauthentication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_allowicmpredirectstooverrideospfgeneratedroutes", + "displayName": "MSS: (EnableICMPRedirect) Allow ICMP redirects to override OSPF generated routes", + "options": [ + { + "id": "device_vendor_msft_policy_config_msslegacy_allowicmpredirectstooverrideospfgeneratedroutes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_allowicmpredirectstooverrideospfgeneratedroutes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_allowthecomputertoignorenetbiosnamereleaserequestsexceptfromwinsservers", + "displayName": "MSS: (NoNameReleaseOnDemand) Allow the computer to ignore NetBIOS name release requests except from WINS servers", + "options": [ + { + "id": "device_vendor_msft_policy_config_msslegacy_allowthecomputertoignorenetbiosnamereleaserequestsexceptfromwinsservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_allowthecomputertoignorenetbiosnamereleaserequestsexceptfromwinsservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipsourceroutingprotectionlevel", + "displayName": "MSS: (DisableIPSourceRouting) IP source routing protection level (protects against packet spoofing)", + "options": [ + { + "id": "device_vendor_msft_policy_config_msslegacy_ipsourceroutingprotectionlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipsourceroutingprotectionlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipsourceroutingprotectionlevel_disableipsourcerouting", + "displayName": "DisableIPSourceRouting (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_msslegacy_ipsourceroutingprotectionlevel_disableipsourcerouting_0", + "displayName": "No additional protection, source routed packets are allowed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipsourceroutingprotectionlevel_disableipsourcerouting_1", + "displayName": "Medium, source routed packets ignored when IP forwarding is enabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipsourceroutingprotectionlevel_disableipsourcerouting_2", + "displayName": "Highest protection, source routing is completely disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipv6sourceroutingprotectionlevel", + "displayName": "MSS: (DisableIPSourceRouting IPv6) IP source routing protection level (protects against packet spoofing)", + "options": [ + { + "id": "device_vendor_msft_policy_config_msslegacy_ipv6sourceroutingprotectionlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipv6sourceroutingprotectionlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipv6sourceroutingprotectionlevel_disableipsourceroutingipv6", + "displayName": "DisableIPSourceRoutingIPv6 (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_msslegacy_ipv6sourceroutingprotectionlevel_disableipsourceroutingipv6_0", + "displayName": "No additional protection, source routed packets are allowed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipv6sourceroutingprotectionlevel_disableipsourceroutingipv6_1", + "displayName": "Medium, source routed packets ignored when IP forwarding is enabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_msslegacy_ipv6sourceroutingprotectionlevel_disableipsourceroutingipv6_2", + "displayName": "Highest protection, source routing is completely disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterprisecloudresources", + "displayName": "Enterprise Cloud Resources", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseinternalproxyservers", + "displayName": "Enterprise Internal Proxy Servers", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseiprange", + "displayName": "Enterprise IP Range", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseiprangesareauthoritative", + "displayName": "Enterprise IP Ranges Are Authoritative", + "options": [ + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseiprangesareauthoritative_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseiprangesareauthoritative_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterprisenetworkdomainnames", + "displayName": "Enterprise Network Domain Names", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseproxyservers", + "displayName": "Enterprise Proxy Servers", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseproxyserversareauthoritative", + "displayName": "Enterprise Proxy Servers Are Authoritative", + "options": [ + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseproxyserversareauthoritative_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_enterpriseproxyserversareauthoritative_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_networkisolation_neutralresources", + "displayName": "Neutral Resources", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_networklistmanager_allowedtlsauthenticationendpoints", + "displayName": "Allowed Tls Authentication Endpoints", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_networklistmanager_configuredtlsauthenticationnetworkname", + "displayName": "Configured Tls Authentication Network Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_newsandinterests_allownewsandinterests", + "displayName": "Allow widgets", + "options": [ + { + "id": "device_vendor_msft_policy_config_newsandinterests_allownewsandinterests_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_newsandinterests_allownewsandinterests_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_notifications_disallowcloudnotification", + "displayName": "Disallow Cloud Notification", + "options": [ + { + "id": "device_vendor_msft_policy_config_notifications_disallowcloudnotification_0", + "displayName": "Block", + "description": "Enable cloud notification." + }, + { + "id": "device_vendor_msft_policy_config_notifications_disallowcloudnotification_1", + "displayName": "Allow", + "description": "Disable cloud notification." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_graphsettings_l_mapchartitadminoptin", + "displayName": "Allow Map Charts to send geographic data to Bing", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_graphsettings_l_mapchartitadminoptin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_graphsettings_l_mapchartitadminoptin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingmachine", + "displayName": "Disable Training of all features on the computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingmachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingmachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingofadaptivefloatiemachine", + "displayName": "Disable Training of the Adaptive Floatie feature on the computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingofadaptivefloatiemachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingofadaptivefloatiemachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_orgideduenabledcentennial", + "displayName": "Enable EDU Org ID Sign In in Office from Windows Store", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_orgideduenabledcentennial_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_orgideduenabledcentennial_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_sclcacheoverride", + "displayName": "Specify the location to save the licensing token used by shared computer activation", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_sclcacheoverride_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_sclcacheoverride_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_sclcacheoverride_l_sclcacheoverride", + "displayName": "Folder location: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_sharedcomputerlicensing", + "displayName": "Use shared computer activation", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_sharedcomputerlicensing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_licensingsettings_l_sharedcomputerlicensing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_ageoutpolicy", + "displayName": "Age out documents older than n days", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_ageoutpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_ageoutpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_documentinspector", + "displayName": "Prevent document inspectors from running", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_documentinspector_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_documentinspector_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_documentinspector_l_empty197", + "displayName": "", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_evictserverversionspolicy", + "displayName": "Age out the locally cached copies of server document versions that are more than n days old.", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_evictserverversionspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_evictserverversionspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_filepreviewing", + "displayName": "File Previewing", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_filepreviewing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_filepreviewing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_filepreviewing_l_empty196", + "displayName": "", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_maximplicitcachesize", + "displayName": "Set the max size of the Office Document Cache", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_maximplicitcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_maximplicitcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_opendirectlyinapp", + "displayName": "Open Directly in Office Client Application", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_opendirectlyinapp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_miscellaneous_l_opendirectlyinapp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablepackagerepair", + "displayName": "Disable Package Repair", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablepackagerepair_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablepackagerepair_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablepasswordcaching", + "displayName": "Disable Password Caching", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablepasswordcaching_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablepasswordcaching_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablevbaforofficeapplications", + "displayName": "Disable VBA for Office applications", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablevbaforofficeapplications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_disablevbaforofficeapplications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_graphicsfilterimport", + "displayName": "Graphics filter import", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_graphicsfilterimport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine_l_graphicsfilterimport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement", + "displayName": "Add-on Management", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_excelexe15", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_excelexe15_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_excelexe15_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_exprwdexe24", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_exprwdexe24_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_exprwdexe24_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_grooveexe14", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_grooveexe14_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_grooveexe14_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_msaccessexe25", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_msaccessexe25_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_msaccessexe25_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_mse7exe27", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_mse7exe27_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_mse7exe27_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_mspubexe16", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_mspubexe16_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_mspubexe16_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_onenoteexe26", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_onenoteexe26_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_onenoteexe26_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_outlookexe22", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_outlookexe22_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_outlookexe22_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_powerpntexe17", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_powerpntexe17_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_powerpntexe17_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_pptviewexe18", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_pptviewexe18_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_pptviewexe18_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_spdesignexe23", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_spdesignexe23_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_spdesignexe23_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_visioexe19", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_visioexe19_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_visioexe19_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_winprojexe20", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_winprojexe20_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_winprojexe20_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_winwordexe21", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_winwordexe21_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_addonmanagement_l_winwordexe21_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject", + "displayName": "Bind to object", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_excelexe141", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_excelexe141_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_excelexe141_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_exprwdexe150", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_exprwdexe150_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_exprwdexe150_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_grooveexe140", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_grooveexe140_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_grooveexe140_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_msaccessexe151", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_msaccessexe151_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_msaccessexe151_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_mse7exe153", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_mse7exe153_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_mse7exe153_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_mspubexe142", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_mspubexe142_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_mspubexe142_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_onenoteexe152", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_onenoteexe152_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_onenoteexe152_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_outlookexe148", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_outlookexe148_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_outlookexe148_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_powerpntexe143", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_powerpntexe143_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_powerpntexe143_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_pptviewexe144", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_pptviewexe144_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_pptviewexe144_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_spdesignexe149", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_spdesignexe149_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_spdesignexe149_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_visioexe145", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_visioexe145_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_visioexe145_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_winprojexe146", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_winprojexe146_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_winprojexe146_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_winwordexe147", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_winwordexe147_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_bindtoobject_l_winwordexe147_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups", + "displayName": "Block popups", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_excelexe183", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_excelexe183_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_excelexe183_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_exprwdexe192", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_exprwdexe192_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_exprwdexe192_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_grooveexe182", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_grooveexe182_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_grooveexe182_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_msaccessexe193", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_msaccessexe193_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_msaccessexe193_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_mse7exe195", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_mse7exe195_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_mse7exe195_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_mspubexe184", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_mspubexe184_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_mspubexe184_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_onenoteexe194", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_onenoteexe194_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_onenoteexe194_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_outlookexe190", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_outlookexe190_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_outlookexe190_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_powerpntexe185", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_powerpntexe185_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_powerpntexe185_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_pptviewexe186", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_pptviewexe186_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_pptviewexe186_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_spdesignexe191", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_spdesignexe191_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_spdesignexe191_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_visioexe187", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_visioexe187_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_visioexe187_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_winprojexe188", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_winprojexe188_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_winprojexe188_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_winwordexe189", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_winwordexe189_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_blockpopups_l_winwordexe189_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling", + "displayName": "Consistent Mime Handling", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_excelexe43", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_excelexe43_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_excelexe43_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_exprwdexe52", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_exprwdexe52_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_exprwdexe52_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_grooveexe42", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_grooveexe42_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_grooveexe42_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_msaccessexe53", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_msaccessexe53_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_msaccessexe53_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_mse7exe55", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_mse7exe55_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_mse7exe55_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_mspubexe44", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_mspubexe44_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_mspubexe44_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_onenoteexe54", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_onenoteexe54_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_onenoteexe54_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_outlookexe50", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_outlookexe50_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_outlookexe50_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_powerpntexe45", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_powerpntexe45_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_powerpntexe45_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_pptviewexe46", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_pptviewexe46_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_pptviewexe46_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_spdesignexe51", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_spdesignexe51_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_spdesignexe51_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_visioexe47", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_visioexe47_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_visioexe47_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_winprojexe48", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_winprojexe48_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_winprojexe48_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_winwordexe49", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_winwordexe49_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_consistentmimehandling_l_winwordexe49_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword", + "displayName": "Disable user name and password", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_excelexe127", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_excelexe127_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_excelexe127_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_exprwdexe136", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_exprwdexe136_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_exprwdexe136_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_grooveexe126", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_grooveexe126_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_grooveexe126_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_msaccessexe137", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_msaccessexe137_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_msaccessexe137_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_mse7exe139", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_mse7exe139_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_mse7exe139_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_mspubexe128", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_mspubexe128_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_mspubexe128_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_onenoteexe138", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_onenoteexe138_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_onenoteexe138_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_outlookexe134", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_outlookexe134_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_outlookexe134_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_powerpntexe129", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_powerpntexe129_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_powerpntexe129_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_pptviewexe130", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_pptviewexe130_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_pptviewexe130_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_spdesignexe135", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_spdesignexe135_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_spdesignexe135_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_visioexe131", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_visioexe131_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_visioexe131_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_winprojexe132", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_winprojexe132_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_winprojexe132_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_winwordexe133", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_winwordexe133_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_disableusernameandpassword_l_winwordexe133_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar", + "displayName": "Information Bar", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_excelexe113", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_excelexe113_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_excelexe113_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_exprwdexe122", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_exprwdexe122_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_exprwdexe122_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_grooveexe112", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_grooveexe112_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_grooveexe112_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_msaccessexe123", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_msaccessexe123_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_msaccessexe123_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_mse7exe125", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_mse7exe125_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_mse7exe125_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_mspubexe114", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_mspubexe114_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_mspubexe114_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_onenoteexe124", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_onenoteexe124_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_onenoteexe124_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_outlookexe120", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_outlookexe120_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_outlookexe120_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_powerpntexe115", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_powerpntexe115_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_powerpntexe115_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_pptviewexe116", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_pptviewexe116_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_pptviewexe116_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_spdesignexe121", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_spdesignexe121_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_spdesignexe121_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_visioexe117", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_visioexe117_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_visioexe117_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_winprojexe118", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_winprojexe118_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_winprojexe118_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_winwordexe119", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_winwordexe119_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_informationbar_l_winwordexe119_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity", + "displayName": "Local Machine Zone Lockdown Security", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_excelexe29", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_excelexe29_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_excelexe29_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_exprwdexe38", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_exprwdexe38_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_exprwdexe38_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_grooveexe28", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_grooveexe28_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_grooveexe28_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_msaccessexe39", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_msaccessexe39_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_msaccessexe39_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_mse7exe41", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_mse7exe41_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_mse7exe41_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_mspubexe30", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_mspubexe30_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_mspubexe30_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_onenoteexe40", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_onenoteexe40_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_onenoteexe40_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_outlookexe36", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_outlookexe36_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_outlookexe36_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_powerpntexe31", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_powerpntexe31_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_powerpntexe31_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_pptviewexe32", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_pptviewexe32_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_pptviewexe32_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_spdesignexe37", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_spdesignexe37_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_spdesignexe37_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_visioexe33", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_visioexe33_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_visioexe33_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_winprojexe34", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_winprojexe34_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_winprojexe34_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_winwordexe35", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_winwordexe35_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_localmachinezonelockdownsecurity_l_winwordexe35_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature", + "displayName": "Mime Sniffing Safety Feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_excelexe57", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_excelexe57_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_excelexe57_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_exprwdexe66", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_exprwdexe66_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_exprwdexe66_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_grooveexe56", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_grooveexe56_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_grooveexe56_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_msaccessexe67", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_msaccessexe67_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_msaccessexe67_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_mse7exe69", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_mse7exe69_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_mse7exe69_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_mspubexe58", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_mspubexe58_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_mspubexe58_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_onenoteexe68", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_onenoteexe68_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_onenoteexe68_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_outlookexe64", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_outlookexe64_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_outlookexe64_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_powerpntexe59", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_powerpntexe59_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_powerpntexe59_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_pptviewexe60", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_pptviewexe60_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_pptviewexe60_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_spdesignexe65", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_spdesignexe65_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_spdesignexe65_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_visioexe61", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_visioexe61_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_visioexe61_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_winprojexe62", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_winprojexe62_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_winprojexe62_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_winwordexe63", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_winwordexe63_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_mimesniffingsafetyfature_l_winwordexe63_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl", + "displayName": "Navigate URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_excelexe169", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_excelexe169_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_excelexe169_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_exprwdexe178", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_exprwdexe178_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_exprwdexe178_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_grooveexe168", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_grooveexe168_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_grooveexe168_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_msaccessexe179", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_msaccessexe179_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_msaccessexe179_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_mse7exe181", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_mse7exe181_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_mse7exe181_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_mspubexe170", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_mspubexe170_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_mspubexe170_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_onenoteexe180", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_onenoteexe180_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_onenoteexe180_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_outlookexe176", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_outlookexe176_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_outlookexe176_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_powerpntexe171", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_powerpntexe171_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_powerpntexe171_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_pptviewexe172", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_pptviewexe172_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_pptviewexe172_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_spdesignexe177", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_spdesignexe177_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_spdesignexe177_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_visioexe173", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_visioexe173_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_visioexe173_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_winprojexe174", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_winprojexe174_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_winprojexe174_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_winwordexe175", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_winwordexe175_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_navigateurl_l_winwordexe175_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection", + "displayName": "Object Caching Protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_excelexe71", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_excelexe71_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_excelexe71_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_exprwdexe80", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_exprwdexe80_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_exprwdexe80_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_grooveexe70", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_grooveexe70_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_grooveexe70_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_msaccessexe81", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_msaccessexe81_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_msaccessexe81_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_mse7exe83", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_mse7exe83_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_mse7exe83_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_mspubexe72", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_mspubexe72_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_mspubexe72_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_onenoteexe82", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_onenoteexe82_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_onenoteexe82_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_outlookexe78", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_outlookexe78_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_outlookexe78_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_powerpntexe73", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_powerpntexe73_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_powerpntexe73_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_pptviewexe74", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_pptviewexe74_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_pptviewexe74_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_spdesignexe79", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_spdesignexe79_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_spdesignexe79_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_visioexe75", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_visioexe75_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_visioexe75_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_winprojexe76", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_winprojexe76_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_winprojexe76_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_winwordexe77", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_winwordexe77_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_objectcachingprotection_l_winwordexe77_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation", + "displayName": "Protection From Zone Elevation", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_excelexe99", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_excelexe99_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_excelexe99_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_exprwdexe108", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_exprwdexe108_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_exprwdexe108_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_grooveexe98", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_grooveexe98_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_grooveexe98_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_msaccessexe109", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_msaccessexe109_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_msaccessexe109_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_mse7exe111", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_mse7exe111_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_mse7exe111_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_mspubexe100", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_mspubexe100_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_mspubexe100_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_onenoteexe110", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_onenoteexe110_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_onenoteexe110_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_outlookexe106", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_outlookexe106_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_outlookexe106_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_powerpntexe101", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_powerpntexe101_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_powerpntexe101_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_pptviewexe102", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_pptviewexe102_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_pptviewexe102_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_spdesignexe107", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_spdesignexe107_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_spdesignexe107_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_visioexe103", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_visioexe103_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_visioexe103_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_winprojexe104", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_winprojexe104_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_winprojexe104_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_winwordexe105", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_winwordexe105_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_protectionfromzoneelevation_l_winwordexe105_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall", + "displayName": "Restrict ActiveX Install", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_excelexe", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_excelexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_excelexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_exprwdexe", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_exprwdexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_exprwdexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_grooveexe", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_grooveexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_grooveexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_msaccessexe", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_msaccessexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_msaccessexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_mse7exe", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_mse7exe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_mse7exe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_mspubexe", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_mspubexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_mspubexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_onenoteexe", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_onenoteexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_onenoteexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_outlookexe", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_outlookexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_outlookexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_powerpntexe", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_powerpntexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_powerpntexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_pptviewexe", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_pptviewexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_pptviewexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_spdesignexe", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_spdesignexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_spdesignexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_visioexe", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_visioexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_visioexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_winprojexe", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_winprojexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_winprojexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_winwordexe", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_winwordexe_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictactivexinstall_l_winwordexe_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload", + "displayName": "Restrict File Download", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_excelexe1", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_excelexe1_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_excelexe1_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_exprwdexe10", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_exprwdexe10_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_exprwdexe10_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_grooveexe0", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_grooveexe0_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_grooveexe0_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_msaccessexe11", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_msaccessexe11_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_msaccessexe11_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_mse7exe13", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_mse7exe13_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_mse7exe13_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_mspubexe2", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_mspubexe2_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_mspubexe2_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_onenoteexe12", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_onenoteexe12_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_onenoteexe12_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_outlookexe8", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_outlookexe8_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_outlookexe8_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_powerpntexe3", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_powerpntexe3_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_powerpntexe3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_pptviewexe4", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_pptviewexe4_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_pptviewexe4_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_spdesignexe9", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_spdesignexe9_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_spdesignexe9_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_visioexe5", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_visioexe5_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_visioexe5_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_winprojexe6", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_winprojexe6_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_winprojexe6_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_winwordexe7", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_winwordexe7_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_restrictfiledownload_l_winwordexe7_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl", + "displayName": "Saved from URL", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_excelexe155", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_excelexe155_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_excelexe155_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_exprwdexe164", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_exprwdexe164_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_exprwdexe164_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_grooveexe154", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_grooveexe154_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_grooveexe154_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_msaccessexe165", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_msaccessexe165_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_msaccessexe165_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_mse7exe167", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_mse7exe167_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_mse7exe167_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_mspubexe156", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_mspubexe156_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_mspubexe156_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_onenoteexe166", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_onenoteexe166_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_onenoteexe166_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_outlookexe162", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_outlookexe162_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_outlookexe162_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_powerpntexe157", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_powerpntexe157_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_powerpntexe157_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_pptviewexe158", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_pptviewexe158_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_pptviewexe158_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_spdesignexe163", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_spdesignexe163_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_spdesignexe163_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_visioexe159", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_visioexe159_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_visioexe159_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_winprojexe160", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_winprojexe160_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_winprojexe160_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_winwordexe161", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_winwordexe161_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_savedfromurl_l_winwordexe161_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions", + "displayName": "Scripted Window Security Restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_excelexe85", + "displayName": "excel.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_excelexe85_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_excelexe85_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_exprwdexe94", + "displayName": "exprwd.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_exprwdexe94_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_exprwdexe94_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_grooveexe84", + "displayName": "groove.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_grooveexe84_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_grooveexe84_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_msaccessexe95", + "displayName": "msaccess.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_msaccessexe95_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_msaccessexe95_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_mse7exe97", + "displayName": "mse7.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_mse7exe97_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_mse7exe97_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_mspubexe86", + "displayName": "mspub.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_mspubexe86_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_mspubexe86_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_onenoteexe96", + "displayName": "onent.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_onenoteexe96_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_onenoteexe96_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_outlookexe92", + "displayName": "outlook.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_outlookexe92_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_outlookexe92_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_powerpntexe87", + "displayName": "powerpnt.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_powerpntexe87_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_powerpntexe87_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_pptviewexe88", + "displayName": "pptview.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_pptviewexe88_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_pptviewexe88_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_spdesignexe93", + "displayName": "spDesign.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_spdesignexe93_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_spdesignexe93_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_visioexe89", + "displayName": "visio.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_visioexe89_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_visioexe89_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_winprojexe90", + "displayName": "winproj.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_winprojexe90_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_winprojexe90_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_winwordexe91", + "displayName": "winword.exe (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_winwordexe91_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_securitysettingsmachine~l_iesecurity_l_scriptedwindowsecurityrestrictions_l_winwordexe91_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_enableautomaticupdates", + "displayName": "Enable Automatic Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_enableautomaticupdates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_enableautomaticupdates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_hideenabledisableupdates", + "displayName": "Hide option to enable or disable updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_hideenabledisableupdates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_hideenabledisableupdates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_hideupdatenotifications", + "displayName": "Hide Update Notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_hideupdatenotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_hideupdatenotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_officemgmtcom", + "displayName": "Office 365 Client Management", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_officemgmtcom_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_officemgmtcom_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair", + "displayName": "Online Repair", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_l_fallbacktocdn", + "displayName": "Use Office CDN (if needed) (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_l_fallbacktocdn_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_l_fallbacktocdn_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_onlinerepair_l_localodtpath", + "displayName": "Location of Office Deployment Tool: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_setbitsasprimary", + "displayName": "Prioritize BITS", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_setbitsasprimary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_setbitsasprimary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updateblockversion", + "displayName": "Prevent Office from being updated to a specific version", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updateblockversion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updateblockversion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updateblockversion_l_updateblockversionid", + "displayName": "Block version: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch", + "displayName": "Update Channel (Deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid", + "displayName": "Channel Name: (Device) (Deprecated)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_current", + "displayName": "Monthly Channel", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_firstreleasecurrent", + "displayName": "Monthly Channel (Targeted)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_deferred", + "displayName": "Semi-Annual Channel", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_firstreleasedeferred", + "displayName": "Semi-Annual Channel (Targeted)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_insiderfast", + "displayName": "Insider Fast", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatedeadline", + "displayName": "Update Deadline", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatedeadline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatedeadline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatedeadline_l_updatedeadlineid", + "displayName": "Deadline: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatepath", + "displayName": "Update Path", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatepath_l_updatepathid", + "displayName": "Location for updates: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatetargetversion", + "displayName": "Target Version", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatetargetversion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatetargetversion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_updatetargetversion_l_updatetargetversionid", + "displayName": "Update version: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_vltosubscription", + "displayName": "Upgrade Office 2019 to Office 365 ProPlus", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_vltosubscription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_updates_l_vltosubscription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_volumeactivation_l_preventtokenactivationdialogfromclosing", + "displayName": "Prevent Token Activation dialog from closing", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_volumeactivation_l_preventtokenactivationdialogfromclosing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_volumeactivation_l_preventtokenactivationdialogfromclosing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_volumeactivation_l_useonlytokenactivation", + "displayName": "Use only Token Activation", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_volumeactivation_l_useonlytokenactivation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v2~policy~l_microsoftofficemachine~l_volumeactivation_l_useonlytokenactivation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_globaloptionsmachine~l_customizemachine_l_defaultuithememachine", + "displayName": "Default Office theme", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_globaloptionsmachine~l_customizemachine_l_defaultuithememachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_globaloptionsmachine~l_customizemachine_l_defaultuithememachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_globaloptionsmachine~l_customizemachine_l_defaultuithememachine_l_defaultuithemeenum", + "displayName": "Theme: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_globaloptionsmachine~l_customizemachine_l_defaultuithememachine_l_defaultuithemeenum_0", + "displayName": "Colorful", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_globaloptionsmachine~l_customizemachine_l_defaultuithememachine_l_defaultuithemeenum_3", + "displayName": "Dark Gray", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_globaloptionsmachine~l_customizemachine_l_defaultuithememachine_l_defaultuithemeenum_4", + "displayName": "Black", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_globaloptionsmachine~l_customizemachine_l_defaultuithememachine_l_defaultuithemeenum_5", + "displayName": "White", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_licensingsettings_l_dbs", + "displayName": "Use a device-based license for Office 365 ProPlus", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_licensingsettings_l_dbs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_licensingsettings_l_dbs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_updates_l_deferupdatedays", + "displayName": "Delay downloading and installing updates for Office", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_updates_l_deferupdatedays_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_updates_l_deferupdatedays_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_updates_l_deferupdatedays_l_deferupdatedaysid", + "displayName": "Days: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_updates_l_preventteamsinstall", + "displayName": "Don’t install Microsoft Teams with new installations or updates of Office", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_updates_l_preventteamsinstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v3~policy~l_microsoftofficemachine~l_updates_l_preventteamsinstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v4~policy~l_microsoftofficemachine~l_licensingsettings_l_extendedofflinesubscription", + "displayName": "Allow extended offline use for Office 365 ProPlus", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v4~policy~l_microsoftofficemachine~l_licensingsettings_l_extendedofflinesubscription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v4~policy~l_microsoftofficemachine~l_licensingsettings_l_extendedofflinesubscription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v5~policy~l_microsoftofficemachine~l_updates_l_preventbinginstall", + "displayName": "Don’t install extension for Microsoft Search in Bing that makes Bing the default search engine", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v5~policy~l_microsoftofficemachine~l_updates_l_preventbinginstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v5~policy~l_microsoftofficemachine~l_updates_l_preventbinginstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v6~policy~l_microsoftofficemachine~l_licensingsettings_l_viewermode", + "displayName": "Use Viewer Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v6~policy~l_microsoftofficemachine~l_licensingsettings_l_viewermode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v6~policy~l_microsoftofficemachine~l_licensingsettings_l_viewermode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine", + "displayName": "Show the option for the Office Update Channel experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_insiderfast", + "displayName": "Beta Channel (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_insiderfast_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_insiderfast_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_insiderslow", + "displayName": "Current Channel (Preview) (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_insiderslow_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_insiderslow_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_mec", + "displayName": "Monthly Enterprise Channel (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_mec_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_mec_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_production", + "displayName": "Current Channel (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_production_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_production_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_sae", + "displayName": "Semi-Annual Enterprise Channel (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_sae_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_sae_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_saepreview", + "displayName": "Semi-Annual Enterprise Channel (Preview) (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_saepreview_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_office16v9~policy~l_microsoftofficemachine~l_miscellaneous_l_updatechannelselectormachine_l_uc_saepreview_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard", + "displayName": "Silently move Windows known folders to OneDrive", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_desktop_checkbox", + "displayName": "Desktop (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_desktop_checkbox_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_desktop_checkbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_documents_checkbox", + "displayName": "Documents (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_documents_checkbox_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_documents_checkbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_dropdown", + "displayName": "Show notification to users after folders have been redirected: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_dropdown_0", + "displayName": "No", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_dropdown_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_pictures_checkbox", + "displayName": "Pictures (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_pictures_checkbox_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_pictures_checkbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2.updates~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_textbox", + "displayName": "Tenant ID: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_allowtenantlist", + "displayName": "Allow syncing OneDrive accounts for only specific organizations", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_allowtenantlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_allowtenantlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_allowtenantlist_allowtenantlistbox", + "displayName": "Tenant ID: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automaticuploadbandwidthpercentage", + "displayName": "Limit the sync app upload rate to a percentage of throughput", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automaticuploadbandwidthpercentage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automaticuploadbandwidthpercentage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automaticuploadbandwidthpercentage_bandwidthspinbox", + "displayName": "Bandwidth: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites", + "displayName": "Configure team site libraries to sync automatically", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_automountteamsiteslistbox", + "displayName": "Libraries: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_automountteamsiteslistbox_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_automountteamsiteslistbox_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blockexternalsync", + "displayName": "Prevent users from syncing libraries and folders shared from other organizations", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blockexternalsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blockexternalsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blockknownfoldermove", + "displayName": "Prevent users from moving their Windows known folders to OneDrive", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blockknownfoldermove_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blockknownfoldermove_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blocktenantlist", + "displayName": "Block syncing OneDrive accounts for specific organizations", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blocktenantlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blocktenantlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_blocktenantlist_blocktenantlistbox", + "displayName": "Tenant ID: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_dehydratesyncedteamsites", + "displayName": "Convert synced team site files to online-only files", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_dehydratesyncedteamsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_dehydratesyncedteamsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_diskspacecheckthresholdmb", + "displayName": "Set the maximum size of a user's OneDrive that can download automatically", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_diskspacecheckthresholdmb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_diskspacecheckthresholdmb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_diskspacecheckthresholdmb_diskspacecheckthresholdmblist", + "displayName": "Max size: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_diskspacecheckthresholdmb_diskspacecheckthresholdmblist_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_diskspacecheckthresholdmb_diskspacecheckthresholdmblist_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_filesondemandenabled", + "displayName": "Use OneDrive Files On-Demand", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_filesondemandenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_filesondemandenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_forcedlocalmassdeletedetection", + "displayName": "Require users to confirm large delete operations", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_forcedlocalmassdeletedetection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_forcedlocalmassdeletedetection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering", + "displayName": "Set the sync app update ring", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_gposetupdatering_dropdown", + "displayName": "Update ring: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_gposetupdatering_dropdown_0", + "displayName": "Deferred", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_gposetupdatering_dropdown_5", + "displayName": "Production", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_gposetupdatering_gposetupdatering_dropdown_4", + "displayName": "Insiders", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmblockoptout", + "displayName": "Prevent users from redirecting their Windows known folders to their PC", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmblockoptout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmblockoptout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinnowizard", + "displayName": "Silently move Windows known folders to OneDrive", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinnowizard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinnowizard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_dropdown", + "displayName": "Show notification to users after folders have been redirected: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_dropdown_0", + "displayName": "No", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_dropdown_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinnowizard_kfmoptinnowizard_textbox", + "displayName": "Tenant ID: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinwithwizard", + "displayName": "Prompt users to move Windows known folders to OneDrive", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinwithwizard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinwithwizard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_kfmoptinwithwizard_kfmoptinwithwizard_textbox", + "displayName": "Tenant ID: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_preventnetworktrafficpreusersignin", + "displayName": "Prevent the sync app from generating network traffic until users sign in", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_preventnetworktrafficpreusersignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_preventnetworktrafficpreusersignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremfrontdoorurl", + "displayName": "Specify SharePoint Server URL and organization name", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremfrontdoorurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremfrontdoorurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremfrontdoorurl_sharepointonpremfrontdoorurlbox", + "displayName": "SharePoint Server 2019 URL: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremfrontdoorurl_sharepointonpremtenantnamebox", + "displayName": "Organization name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremprioritization", + "displayName": "Specify the OneDrive location in a hybrid environment", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremprioritization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremprioritization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremprioritization_sharepointonpremprioritization_dropdown", + "displayName": "Authenticate first against: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremprioritization_sharepointonpremprioritization_dropdown_0", + "displayName": "SharePoint Online", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_sharepointonpremprioritization_sharepointonpremprioritization_dropdown_1", + "displayName": "SharePoint Server 2019", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_silentaccountconfig", + "displayName": "Silently sign in users to the OneDrive sync app with their Windows credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_silentaccountconfig_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_silentaccountconfig_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_enableautomaticuploadbandwidthmanagement", + "displayName": "Enable automatic upload bandwidth management for OneDrive", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_enableautomaticuploadbandwidthmanagement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_enableautomaticuploadbandwidthmanagement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_localmassdeletefiledeletethreshold", + "displayName": "Prompt users when they delete multiple OneDrive files on their local computer", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_localmassdeletefiledeletethreshold_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_localmassdeletefiledeletethreshold_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_localmassdeletefiledeletethreshold_lmdfiledeletethresholdbox", + "displayName": "Number of files: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_mindiskspacelimitinmb", + "displayName": "Block file downloads when users are low on disk space", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_mindiskspacelimitinmb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_mindiskspacelimitinmb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_mindiskspacelimitinmb_mindiskspacemb", + "displayName": "Minimum available disk space: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_permitdisablepermissioninheritance", + "displayName": "Allow OneDrive to disable Windows permission inheritance in folders synced read-only", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_permitdisablepermissioninheritance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_permitdisablepermissioninheritance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_warningmindiskspacelimitinmb", + "displayName": "Warn users who are low on disk space", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_warningmindiskspacelimitinmb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_warningmindiskspacelimitinmb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv3~policy~onedrivengsc_warningmindiskspacelimitinmb_warningmindiskspacemb", + "displayName": "Minimum available disk space: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_disablefirstdeletedialog", + "displayName": "Hide the \"Deleted files are removed everywhere\" reminder", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_disablefirstdeletedialog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_disablefirstdeletedialog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_enableodignorelistfromgpo", + "displayName": "Exclude specific kinds of files from being uploaded", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_enableodignorelistfromgpo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_enableodignorelistfromgpo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_enableodignorelistfromgpo_enableodignorelistfromgpolistbox", + "displayName": "Keywords: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_ignorewebproxy", + "displayName": "Cause sync client to ignore normal web proxy detection logic", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_ignorewebproxy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_ignorewebproxy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_kfmforcewindowsdisplaylanguage", + "displayName": "Always use the user's Windows display language when provisioning known folders in OneDrive", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_kfmforcewindowsdisplaylanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_kfmforcewindowsdisplaylanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv5~policy~onedrivengsc_syncadminreports", + "displayName": "Sync Admin Reports", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv5~policy~onedrivengsc_syncadminreports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv5~policy~onedrivengsc_syncadminreports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv5~policy~onedrivengsc_syncadminreports_syncadminreports_textbox", + "displayName": "Tenant Association Key: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_blockexternallistsync", + "displayName": "Blocks syncing of external lists via Lists sync", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_blockexternallistsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_blockexternallistsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_disablelistsync", + "displayName": "Disables Lists sync on this device.", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_disablelistsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_disablelistsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_disablelistsyncsilentconfig", + "displayName": "Disables silent configuration of Lists sync on this device.", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_disablelistsyncsilentconfig_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~nucleuslistsync_disablelistsyncsilentconfig_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_disableautoconfig", + "displayName": "Disable silently sign in users to the OneDrive sync app with an existing credential that is made available to Microsoft applications", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_disableautoconfig_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_disableautoconfig_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_disableautoconfig_disableautoconfigtypes", + "displayName": "Disabled Account Types: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport", + "displayName": "Allow users to contact Microsoft for feedback and support", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_contactsupport_checkbox", + "displayName": "Contact OneDrive Support​ (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_contactsupport_checkbox_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_contactsupport_checkbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_receivesurveys_checkbox", + "displayName": "Receive user satisfication surveys (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_receivesurveys_checkbox_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_receivesurveys_checkbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_sendfeedback_checkbox", + "displayName": "Send Feedback (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_sendfeedback_checkbox_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablefeedbackandsupport_granularfeedbackcontrol_sendfeedback_checkbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablesyncadminreports", + "displayName": "Enable sync health reporting for OneDrive", + "options": [ + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablesyncadminreports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_enablesyncadminreports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_allowhibernate", + "displayName": "Allow Hibernate", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_allowhibernate_0", + "displayName": "Block", + "description": "Disable hibernate." + }, + { + "id": "device_vendor_msft_policy_config_power_allowhibernate_1", + "displayName": "Allow", + "description": "Allow hibernate." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_allowstandbystateswhensleepingonbattery", + "displayName": "Allow standby states (S1-S3) when sleeping (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_allowstandbystateswhensleepingonbattery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_allowstandbystateswhensleepingonbattery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_allowstandbywhensleepingpluggedin", + "displayName": "Allow standby states (S1-S3) when sleeping (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_allowstandbywhensleepingpluggedin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_allowstandbywhensleepingpluggedin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_displayofftimeoutonbattery", + "displayName": "Turn off the display (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_displayofftimeoutonbattery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_displayofftimeoutonbattery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_displayofftimeoutonbattery_entervideodcpowerdowntimeout", + "displayName": "On battery power, turn display off after (seconds)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_displayofftimeoutpluggedin", + "displayName": "Turn off the display (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_displayofftimeoutpluggedin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_displayofftimeoutpluggedin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_displayofftimeoutpluggedin_entervideoacpowerdowntimeout", + "displayName": "When plugged in, turn display off after (seconds)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_energysaverbatterythresholdonbattery", + "displayName": "Energy Saver Battery Threshold On Battery", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_energysaverbatterythresholdpluggedin", + "displayName": "Energy Saver Battery Threshold Plugged In", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_hibernatetimeoutonbattery", + "displayName": "Specify the system hibernate timeout (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_hibernatetimeoutonbattery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_hibernatetimeoutonbattery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_hibernatetimeoutonbattery_enterdchibernatetimeout", + "displayName": "System Hibernate Timeout (seconds):", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_hibernatetimeoutpluggedin", + "displayName": "Specify the system hibernate timeout (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_hibernatetimeoutpluggedin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_hibernatetimeoutpluggedin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_hibernatetimeoutpluggedin_enterachibernatetimeout", + "displayName": "System Hibernate Timeout (seconds):", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakesonbattery", + "displayName": "Require a password when a computer wakes (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakesonbattery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakesonbattery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakespluggedin", + "displayName": "Require a password when a computer wakes (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakespluggedin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_requirepasswordwhencomputerwakespluggedin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactiononbattery", + "displayName": "Select Lid Close Action On Battery", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactiononbattery_0", + "displayName": "Take no action", + "description": "Take no action" + }, + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactiononbattery_1", + "displayName": "Sleep", + "description": "Sleep" + }, + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactiononbattery_2", + "displayName": "System hibernate sleep state", + "description": "System hibernate sleep state" + }, + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactiononbattery_3", + "displayName": "System shutdown", + "description": "System shutdown" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactionpluggedin", + "displayName": "Select Lid Close Action Plugged In", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactionpluggedin_0", + "displayName": "Take no action", + "description": "Take no action" + }, + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactionpluggedin_1", + "displayName": "Sleep", + "description": "Sleep" + }, + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactionpluggedin_2", + "displayName": "System hibernate sleep state", + "description": "System hibernate sleep state" + }, + { + "id": "device_vendor_msft_policy_config_power_selectlidcloseactionpluggedin_3", + "displayName": "System shutdown", + "description": "System shutdown" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactiononbattery", + "displayName": "Select Power Button Action On Battery", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactiononbattery_0", + "displayName": "Take no action", + "description": "Take no action" + }, + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactiononbattery_1", + "displayName": "Sleep", + "description": "Sleep" + }, + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactiononbattery_2", + "displayName": "System hibernate sleep state", + "description": "System hibernate sleep state" + }, + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactiononbattery_3", + "displayName": "System shutdown", + "description": "System shutdown" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactionpluggedin", + "displayName": "Select Power Button Action Plugged In", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactionpluggedin_0", + "displayName": "Take no action", + "description": "Take no action" + }, + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactionpluggedin_1", + "displayName": "Sleep", + "description": "Sleep" + }, + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactionpluggedin_2", + "displayName": "System hibernate sleep state", + "description": "System hibernate sleep state" + }, + { + "id": "device_vendor_msft_policy_config_power_selectpowerbuttonactionpluggedin_3", + "displayName": "System shutdown", + "description": "System shutdown" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactiononbattery", + "displayName": "Select Sleep Button Action On Battery", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactiononbattery_0", + "displayName": "Take no action", + "description": "Take no action" + }, + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactiononbattery_1", + "displayName": "Sleep", + "description": "Sleep" + }, + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactiononbattery_2", + "displayName": "System hibernate sleep state", + "description": "System hibernate sleep state" + }, + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactiononbattery_3", + "displayName": "System shutdown", + "description": "System shutdown" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactionpluggedin", + "displayName": "Select Sleep Button Action Plugged In", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactionpluggedin_0", + "displayName": "Take no action", + "description": "Take no action" + }, + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactionpluggedin_1", + "displayName": "Sleep", + "description": "Sleep" + }, + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactionpluggedin_2", + "displayName": "System hibernate sleep state", + "description": "System hibernate sleep state" + }, + { + "id": "device_vendor_msft_policy_config_power_selectsleepbuttonactionpluggedin_3", + "displayName": "System shutdown", + "description": "System shutdown" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_standbytimeoutonbattery", + "displayName": "Specify the system sleep timeout (on battery)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_standbytimeoutonbattery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_standbytimeoutonbattery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_standbytimeoutonbattery_enterdcstandbytimeout", + "displayName": "System Sleep Timeout (seconds):", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_standbytimeoutpluggedin", + "displayName": "Specify the system sleep timeout (plugged in)", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_standbytimeoutpluggedin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_power_standbytimeoutpluggedin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_standbytimeoutpluggedin_enteracstandbytimeout", + "displayName": "System Sleep Timeout (seconds):", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_turnoffhybridsleeponbattery", + "displayName": "Turn Off Hybrid Sleep On Battery", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_turnoffhybridsleeponbattery_0", + "displayName": "", + "description": "" + }, + { + "id": "device_vendor_msft_policy_config_power_turnoffhybridsleeponbattery_1", + "displayName": "hybrid sleep", + "description": "hybrid sleep" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_turnoffhybridsleeppluggedin", + "displayName": "Turn Off Hybrid Sleep Plugged In", + "options": [ + { + "id": "device_vendor_msft_policy_config_power_turnoffhybridsleeppluggedin_0", + "displayName": "", + "description": "" + }, + { + "id": "device_vendor_msft_policy_config_power_turnoffhybridsleeppluggedin_1", + "displayName": "hybrid sleep", + "description": "hybrid sleep" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_power_unattendedsleeptimeoutonbattery", + "displayName": "Unattended Sleep Timeout On Battery", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_power_unattendedsleeptimeoutpluggedin", + "displayName": "Unattended Sleep Timeout Plugged In", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpointmachine~l_convertersmachineppt_l_externalconverterasdefaultforfileextensionppt", + "displayName": "Turn on an external converter as the default for a file extension", + "options": [ + { + "id": "device_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpointmachine~l_convertersmachineppt_l_externalconverterasdefaultforfileextensionppt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpointmachine~l_convertersmachineppt_l_externalconverterasdefaultforfileextensionppt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpointmachine~l_convertersmachineppt_l_externalconverterasdefaultforfileextensionppt_l_listofexternalconvertersppt", + "displayName": "List of external file format converters to customize (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpointmachine~l_convertersmachineppt_l_externalconverterasdefaultforfileextensionppt_l_listofexternalconvertersppt_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpointmachine~l_convertersmachineppt_l_externalconverterasdefaultforfileextensionppt_l_listofexternalconvertersppt_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_printers_approvedusbprintdevices", + "displayName": "List of Approved USB-connected print devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_approvedusbprintdevices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_approvedusbprintdevices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_approvedusbprintdevices_approvedusbprintdevices_list", + "displayName": "vid/pid (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurecopyfilespolicy", + "displayName": "Manage processing of Queue-specific files", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurecopyfilespolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurecopyfilespolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurecopyfilespolicy_copyfilespolicy_enum", + "displayName": "Manage processing of Queue-Specific files: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurecopyfilespolicy_copyfilespolicy_enum_0", + "displayName": "Do not allow Queue-specific files", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurecopyfilespolicy_copyfilespolicy_enum_1", + "displayName": "Limit Queue-specific files to Color profiles", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurecopyfilespolicy_copyfilespolicy_enum_2", + "displayName": "Allow all Queue-specfic files", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel", + "displayName": "Manage Print Driver signature validation", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel_drivervalidationlevel_enum", + "displayName": "Select the driver signature mechanism for this computer: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel_drivervalidationlevel_enum_0", + "displayName": "Require inbox signed drivers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel_drivervalidationlevel_enum_1", + "displayName": "Allow inbox and Print Drivers Trusted Store signed drivers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel_drivervalidationlevel_enum_2", + "displayName": "Allow inbox, Print Drivers Trusted Store, and WHQL signed drivers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel_drivervalidationlevel_enum_3", + "displayName": "Allow inbox, Print Drivers Trusted Store, WHQL, and Trusted Publisher Store signed drivers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configuredrivervalidationlevel_drivervalidationlevel_enum_4", + "displayName": "Allow all validly signed drivers", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configureipppagecountspolicy", + "displayName": "Always send job page count information for IPP printers", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configureipppagecountspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configureipppagecountspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configureredirectionguardpolicy", + "displayName": "Configure Redirection Guard", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configureredirectionguardpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configureredirectionguardpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configureredirectionguardpolicy_redirectionguardpolicy_enum", + "displayName": "Redirection Guard Options (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configureredirectionguardpolicy_redirectionguardpolicy_enum_0", + "displayName": "Redirection Guard Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configureredirectionguardpolicy_redirectionguardpolicy_enum_1", + "displayName": "Redirection Guard Enabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configureredirectionguardpolicy_redirectionguardpolicy_enum_2", + "displayName": "Redirection Guard Audit Only", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy", + "displayName": "Configure RPC connection settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_rpcconnectionauthentication_enum", + "displayName": "Use authentication for outgoing RPC connections: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_rpcconnectionauthentication_enum_0", + "displayName": "Default", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_rpcconnectionauthentication_enum_1", + "displayName": "Authentication enabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_rpcconnectionauthentication_enum_2", + "displayName": "Authentication disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_rpcconnectionprotocol_enum", + "displayName": "Protocol to use for outgoing RPC connections: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_rpcconnectionprotocol_enum_0", + "displayName": "RPC over TCP", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpcconnectionpolicy_rpcconnectionprotocol_enum_1", + "displayName": "RPC over named pipes", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy", + "displayName": "Configure RPC listener settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_rpcauthenticationprotocol_enum", + "displayName": "Authentication protocol to use for incoming RPC connections: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_rpcauthenticationprotocol_enum_0", + "displayName": "Negotiate", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_rpcauthenticationprotocol_enum_1", + "displayName": "Kerberos", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_rpclistenerprotocols_enum", + "displayName": "Protocols to allow for incoming RPC connections: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_rpclistenerprotocols_enum_3", + "displayName": "RPC over named pipes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_rpclistenerprotocols_enum_5", + "displayName": "RPC over TCP", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpclistenerpolicy_rpclistenerprotocols_enum_7", + "displayName": "RPC over named pipes and TCP", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpctcpport", + "displayName": "Configure RPC over TCP port", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_configurerpctcpport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpctcpport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_configurerpctcpport_rpctcpport", + "displayName": "RPC over TCP port: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_printers_enabledevicecontrol", + "displayName": "Enable Device Control Printing Restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_enabledevicecontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_enabledevicecontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_managedriverexclusionlist", + "displayName": "Manage Print Driver exclusion list", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_managedriverexclusionlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_managedriverexclusionlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_managedriverexclusionlist_driver_exclusionlistentry", + "displayName": "File Hash File Name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_printers_managedriverexclusionlist_driver_exclusionlistentry_key", + "displayName": "Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_printers_managedriverexclusionlist_driver_exclusionlistentry_value", + "displayName": "Value", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions", + "displayName": "Point and Print Restrictions", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_nowarningnoelevationoninstall_enum", + "displayName": "When installing drivers for a new connection: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_nowarningnoelevationoninstall_enum_0", + "displayName": "Show warning and elevation prompt", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_nowarningnoelevationoninstall_enum_1", + "displayName": "Do not show warning or elevation prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_nowarningnoelevationonupdate_enum", + "displayName": "When updating drivers for an existing connection: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_nowarningnoelevationonupdate_enum_0", + "displayName": "Show warning and elevation prompt", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_nowarningnoelevationonupdate_enum_1", + "displayName": "Show warning only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_nowarningnoelevationonupdate_enum_2", + "displayName": "Do not show warning or elevation prompt", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_trustedforest_chk", + "displayName": "Users can only point and print to machines in their forest (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_trustedforest_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_trustedforest_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_trustedservers_chk", + "displayName": "Users can only point and print to these servers: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_trustedservers_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_trustedservers_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_pointandprintrestrictions_pointandprint_trustedservers_edit", + "displayName": "Enter fully qualified server names separated by semicolons (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_printers_publishprinters", + "displayName": "Allow printers to be published", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_publishprinters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_publishprinters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_printers_restrictdriverinstallationtoadministrators", + "displayName": "Limits print driver installation to Administrators", + "options": [ + { + "id": "device_vendor_msft_policy_config_printers_restrictdriverinstallationtoadministrators_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_printers_restrictdriverinstallationtoadministrators_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_allowautoacceptpairingandprivacyconsentprompts", + "displayName": "Allow Auto Accept Pairing And Privacy Consent Prompts", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_allowautoacceptpairingandprivacyconsentprompts_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_privacy_allowautoacceptpairingandprivacyconsentprompts_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_allowcrossdeviceclipboard", + "displayName": "Allow Cross Device Clipboard", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_allowcrossdeviceclipboard_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_privacy_allowcrossdeviceclipboard_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_allowinputpersonalization", + "displayName": "Allow Input Personalization", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_allowinputpersonalization_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_privacy_allowinputpersonalization_1", + "displayName": "Allow", + "description": "Choice deferred to user's preference." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_disableadvertisingid", + "displayName": "Disable Advertising ID", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_disableadvertisingid_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_privacy_disableadvertisingid_1", + "displayName": "Enabled", + "description": "Enabled" + }, + { + "id": "device_vendor_msft_policy_config_privacy_disableadvertisingid_65535", + "displayName": "Not Configured", + "description": "Not Configured" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_disableprivacyexperience", + "displayName": "Disable Privacy Experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_disableprivacyexperience_0", + "displayName": "Disabled", + "description": "Allow the 'choose privacy settings for your device' screen for a new user during their first logon or when an existing user logs in for the first time after an upgrade." + }, + { + "id": "device_vendor_msft_policy_config_privacy_disableprivacyexperience_1", + "displayName": "Enabled", + "description": "Do not allow the 'choose privacy settings for your device' screen when a new user logs in or an existing user logs in for the first time after an upgrade." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_enableactivityfeed", + "displayName": "Enable Activity Feed", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_enableactivityfeed_0", + "displayName": "Disabled", + "description": "Disabled. Apps/OS can't publish the activities and roaming is disabled. (not published to the cloud)." + }, + { + "id": "device_vendor_msft_policy_config_privacy_enableactivityfeed_1", + "displayName": "Enabled", + "description": "Enabled. Apps/OS can publish the activities and will be roamed across device graph." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessaccountinfo", + "displayName": "Let Apps Access Account Info", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessaccountinfo_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessaccountinfo_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessaccountinfo_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessaccountinfo_forceallowtheseapps", + "displayName": "Let Apps Access Account Info Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessaccountinfo_forcedenytheseapps", + "displayName": "Let Apps Access Account Info Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessaccountinfo_userincontroloftheseapps", + "displayName": "Let Apps Access Account Info User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessbackgroundspatialperception", + "displayName": "Let Apps Access Background Spatial Perception", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessbackgroundspatialperception_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessbackgroundspatialperception_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessbackgroundspatialperception_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessbackgroundspatialperception_forceallowtheseapps", + "displayName": "Let Apps Access Background Spatial Perception Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessbackgroundspatialperception_forcedenytheseapps", + "displayName": "Let Apps Access Background Spatial Perception Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessbackgroundspatialperception_userincontroloftheseapps", + "displayName": "Let Apps Access Background Spatial Perception User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscalendar", + "displayName": "Let Apps Access Calendar", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscalendar_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscalendar_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscalendar_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscalendar_forceallowtheseapps", + "displayName": "Let Apps Access Calendar Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscalendar_forcedenytheseapps", + "displayName": "Let Apps Access Calendar Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscalendar_userincontroloftheseapps", + "displayName": "Let Apps Access Calendar User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscallhistory", + "displayName": "Let Apps Access Call History", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscallhistory_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscallhistory_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscallhistory_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscallhistory_forceallowtheseapps", + "displayName": "Let Apps Access Call History Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscallhistory_forcedenytheseapps", + "displayName": "Let Apps Access Call History Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscallhistory_userincontroloftheseapps", + "displayName": "Let Apps Access Call History User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscamera", + "displayName": "Let Apps Access Camera", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscamera_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscamera_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscamera_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscamera_forceallowtheseapps", + "displayName": "Let Apps Access Camera Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscamera_forcedenytheseapps", + "displayName": "Let Apps Access Camera Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscamera_userincontroloftheseapps", + "displayName": "Let Apps Access Camera User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscontacts", + "displayName": "Let Apps Access Contacts", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscontacts_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscontacts_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscontacts_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscontacts_forceallowtheseapps", + "displayName": "Let Apps Access Contacts Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscontacts_forcedenytheseapps", + "displayName": "Let Apps Access Contacts Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesscontacts_userincontroloftheseapps", + "displayName": "Let Apps Access Contacts User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessemail", + "displayName": "Let Apps Access Email", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessemail_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessemail_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessemail_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessemail_forceallowtheseapps", + "displayName": "Let Apps Access Email Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessemail_forcedenytheseapps", + "displayName": "Let Apps Access Email Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessemail_userincontroloftheseapps", + "displayName": "Let Apps Access Email User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgazeinput", + "displayName": "Let Apps Access Gaze Input", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgazeinput_forceallowtheseapps", + "displayName": "Let Apps Access Gaze Input Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgazeinput_forcedenytheseapps", + "displayName": "Let Apps Access Gaze Input Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgazeinput_userincontroloftheseapps", + "displayName": "Let Apps Access Gaze Input User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgraphicscaptureprogrammatic", + "displayName": "Let Apps Access Graphics Capture Programmatic", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgraphicscaptureprogrammatic_forceallowtheseapps", + "displayName": "Let Apps Access Graphics Capture Programmatic Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgraphicscaptureprogrammatic_forcedenytheseapps", + "displayName": "Let Apps Access Graphics Capture Programmatic Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgraphicscaptureprogrammatic_userincontroloftheseapps", + "displayName": "Let Apps Access Graphics Capture Programmatic User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgraphicscapturewithoutborder", + "displayName": "Let Apps Access Graphics Capture Without Border", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgraphicscapturewithoutborder_forceallowtheseapps", + "displayName": "Let Apps Access Graphics Capture Without Border Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgraphicscapturewithoutborder_forcedenytheseapps", + "displayName": "Let Apps Access Graphics Capture Without Border Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessgraphicscapturewithoutborder_userincontroloftheseapps", + "displayName": "Let Apps Access Graphics Capture Without Border User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesslocation", + "displayName": "Let Apps Access Location", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesslocation_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesslocation_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesslocation_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesslocation_forceallowtheseapps", + "displayName": "Let Apps Access Location Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesslocation_forcedenytheseapps", + "displayName": "Let Apps Access Location Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesslocation_userincontroloftheseapps", + "displayName": "Let Apps Access Location User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmessaging", + "displayName": "Let Apps Access Messaging", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmessaging_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmessaging_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmessaging_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmessaging_forceallowtheseapps", + "displayName": "Let Apps Access Messaging Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmessaging_forcedenytheseapps", + "displayName": "Let Apps Access Messaging Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmessaging_userincontroloftheseapps", + "displayName": "Let Apps Access Messaging User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmicrophone", + "displayName": "Let Apps Access Microphone", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmicrophone_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmicrophone_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmicrophone_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmicrophone_forceallowtheseapps", + "displayName": "Let Apps Access Microphone Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmicrophone_forcedenytheseapps", + "displayName": "Let Apps Access Microphone Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmicrophone_userincontroloftheseapps", + "displayName": "Let Apps Access Microphone User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmotion", + "displayName": "Let Apps Access Motion", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmotion_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmotion_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmotion_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmotion_forceallowtheseapps", + "displayName": "Let Apps Access Motion Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmotion_forcedenytheseapps", + "displayName": "Let Apps Access Motion Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessmotion_userincontroloftheseapps", + "displayName": "Let Apps Access Motion User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessnotifications", + "displayName": "Let Apps Access Notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessnotifications_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessnotifications_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessnotifications_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessnotifications_forceallowtheseapps", + "displayName": "Let Apps Access Notifications Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessnotifications_forcedenytheseapps", + "displayName": "Let Apps Access Notifications Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessnotifications_userincontroloftheseapps", + "displayName": "Let Apps Access Notifications User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessphone", + "displayName": "Let Apps Access Phone", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessphone_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessphone_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessphone_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessphone_forceallowtheseapps", + "displayName": "Let Apps Access Phone Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessphone_forcedenytheseapps", + "displayName": "Let Apps Access Phone Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessphone_userincontroloftheseapps", + "displayName": "Let Apps Access Phone User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessradios", + "displayName": "Let Apps Access Radios", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessradios_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessradios_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessradios_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessradios_forceallowtheseapps", + "displayName": "Let Apps Access Radios Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessradios_forcedenytheseapps", + "displayName": "Let Apps Access Radios Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccessradios_userincontroloftheseapps", + "displayName": "Let Apps Access Radios User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstasks", + "displayName": "Let Apps Access Tasks", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstasks_forceallowtheseapps", + "displayName": "Let Apps Access Tasks Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstasks_forcedenytheseapps", + "displayName": "Let Apps Access Tasks Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstasks_userincontroloftheseapps", + "displayName": "Let Apps Access Tasks User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstrusteddevices", + "displayName": "Let Apps Access Trusted Devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstrusteddevices_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstrusteddevices_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstrusteddevices_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstrusteddevices_forceallowtheseapps", + "displayName": "Let Apps Access Trusted Devices Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstrusteddevices_forcedenytheseapps", + "displayName": "Let Apps Access Trusted Devices Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsaccesstrusteddevices_userincontroloftheseapps", + "displayName": "Let Apps Access Trusted Devices User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoice", + "displayName": "Let Apps Activate With Voice", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoice_0", + "displayName": "User in control. Users can decide if Windows apps can be activated by voice using Settings > Privacy options on the device.", + "description": "User in control. Users can decide if Windows apps can be activated by voice using Settings > Privacy options on the device." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoice_1", + "displayName": "Force allow. Windows apps can be activated by voice and users cannot change it.", + "description": "Force allow. Windows apps can be activated by voice and users cannot change it." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoice_2", + "displayName": "Force deny. Windows apps cannot be activated by voice and users cannot change it.", + "description": "Force deny. Windows apps cannot be activated by voice and users cannot change it." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoiceabovelock", + "displayName": "Let Apps Activate With Voice Above Lock", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoiceabovelock_0", + "displayName": "User in control. Users can decide if Windows apps can be activated by voice while the screen is locked using Settings > Privacy options on the device.", + "description": "User in control. Users can decide if Windows apps can be activated by voice while the screen is locked using Settings > Privacy options on the device." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoiceabovelock_1", + "displayName": "Force allow. Windows apps can be activated by voice while the screen is locked, and users cannot change it.", + "description": "Force allow. Windows apps can be activated by voice while the screen is locked, and users cannot change it." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsactivatewithvoiceabovelock_2", + "displayName": "Force deny. Windows apps cannot be activated by voice while the screen is locked, and users cannot change it.", + "description": "Force deny. Windows apps cannot be activated by voice while the screen is locked, and users cannot change it." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsgetdiagnosticinfo", + "displayName": "Let Apps Get Diagnostic Info", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsgetdiagnosticinfo_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsgetdiagnosticinfo_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsgetdiagnosticinfo_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsgetdiagnosticinfo_forceallowtheseapps", + "displayName": "Let Apps Get Diagnostic Info Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsgetdiagnosticinfo_forcedenytheseapps", + "displayName": "Let Apps Get Diagnostic Info Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsgetdiagnosticinfo_userincontroloftheseapps", + "displayName": "Let Apps Get Diagnostic Info User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsruninbackground", + "displayName": "Let Apps Run In Background", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappsruninbackground_0", + "displayName": "User in control (default).", + "description": "User in control (default)." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsruninbackground_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsruninbackground_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsruninbackground_forceallowtheseapps", + "displayName": "Force Allow These Apps to Run in Background", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsruninbackground_forcedenytheseapps", + "displayName": "Let Apps Run In Background Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappsruninbackground_userincontroloftheseapps", + "displayName": "Let Apps Run In Background User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappssyncwithdevices", + "displayName": "Let Apps Sync With Devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_letappssyncwithdevices_0", + "displayName": "User in control.", + "description": "User in control." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappssyncwithdevices_1", + "displayName": "Force allow.", + "description": "Force allow." + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappssyncwithdevices_2", + "displayName": "Force deny.", + "description": "Force deny." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappssyncwithdevices_forceallowtheseapps", + "displayName": "Let Apps Sync With Devices Force Allow These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappssyncwithdevices_forcedenytheseapps", + "displayName": "Let Apps Sync With Devices Force Deny These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_letappssyncwithdevices_userincontroloftheseapps", + "displayName": "Let Apps Sync With Devices User In Control Of These Apps", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_privacy_publishuseractivities", + "displayName": "Publish User Activities", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_publishuseractivities_0", + "displayName": "Disabled", + "description": "Disabled. Apps/OS can't publish the user activities." + }, + { + "id": "device_vendor_msft_policy_config_privacy_publishuseractivities_1", + "displayName": "Enabled", + "description": "Enabled. Apps/OS can publish the user activities." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_privacy_uploaduseractivities", + "displayName": "Upload User Activities", + "options": [ + { + "id": "device_vendor_msft_policy_config_privacy_uploaduseractivities_0", + "displayName": "Disabled", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_privacy_uploaduseractivities_1", + "displayName": "Enabled", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_quiettime_allowusertochangesetting", + "displayName": "Allow user to change setting", + "options": [ + { + "id": "device_vendor_msft_policy_config_quiettime_allowusertochangesetting_0", + "displayName": "No", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_allowusertochangesetting_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday", + "displayName": "Mute notifications all day", + "options": { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_1", + "displayName": "Require", + "description": null + } + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_daysoftheweek", + "displayName": "Days of the week", + "options": [ + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_daysoftheweek_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_daysoftheweek_1", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_daysoftheweek_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_daysoftheweek_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_daysoftheweek_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_daysoftheweek_5", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsallday_daysoftheweek_6", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsclockedout", + "displayName": "Mute notifications", + "options": { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsclockedout_1", + "displayName": "Require", + "description": null + } + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily", + "displayName": "Mute notifications daily", + "options": { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_1", + "displayName": "Require", + "description": null + } + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_daysoftheweek", + "displayName": "Days of the week", + "options": [ + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_daysoftheweek_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_daysoftheweek_1", + "displayName": "Monday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_daysoftheweek_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_daysoftheweek_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_daysoftheweek_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_daysoftheweek_5", + "displayName": "Friday", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_daysoftheweek_6", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_endtime", + "displayName": "End time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_mutenotificationsdaily_starttime", + "displayName": "Start time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_rangesettings_endtime", + "displayName": "End", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_quiettime_rangesettings_starttime", + "displayName": "Start", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_customizewarningmessages", + "displayName": "Customize warning messages", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteassistance_customizewarningmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_customizewarningmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_customizewarningmessages_ra_options_connect_message", + "displayName": "Display warning message before connecting: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_customizewarningmessages_ra_options_share_control_message", + "displayName": "Display warning message before sharing control: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_sessionlogging", + "displayName": "Turn on session logging", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteassistance_sessionlogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_sessionlogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance", + "displayName": "Configure Solicited Remote Assistance", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_control_list", + "displayName": "Permit remote control of this computer:", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_control_list_1", + "displayName": "Allow helpers to remotely control the computer", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_control_list_0", + "displayName": "Allow helpers to only view the computer", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_expireunits_list", + "displayName": "Maximum ticket time (units):", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_expireunits_list_0", + "displayName": "Minutes", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_expireunits_list_1", + "displayName": "Hours", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_expireunits_list_2", + "displayName": "Days", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_expirevalue_edt", + "displayName": "Maximum ticket time (value):", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_mailto_list", + "displayName": "Method for sending email invitations:", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_mailto_list_0", + "displayName": "Simple MAPI", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_solicitedremoteassistance_ra_solicit_mailto_list_1", + "displayName": "Mailto", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_unsolicitedremoteassistance", + "displayName": "Configure Offer Remote Assistance", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteassistance_unsolicitedremoteassistance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_unsolicitedremoteassistance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_unsolicitedremoteassistance_ra_unsolicit_control_list", + "displayName": "Permit remote control of this computer: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteassistance_unsolicitedremoteassistance_ra_unsolicit_control_list_1", + "displayName": "Allow helpers to remotely control the computer", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_unsolicitedremoteassistance_ra_unsolicit_control_list_0", + "displayName": "Allow helpers to only view the computer", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteassistance_unsolicitedremoteassistance_ra_unsolicit_dacl_edit", + "displayName": "Helpers: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_allowuserstoconnectremotely", + "displayName": "Allow users to connect remotely by using Remote Desktop Services", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_allowuserstoconnectremotely_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_allowuserstoconnectremotely_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel", + "displayName": "Set client connection encryption level", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_ts_encryption_level", + "displayName": "Encryption Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_ts_encryption_level_1", + "displayName": "Low Level", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_ts_encryption_level_2", + "displayName": "Client Compatible", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_clientconnectionencryptionlevel_ts_encryption_level_3", + "displayName": "High Level", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_disconnectonlocklegacyauthn", + "displayName": "Disconnect remote session on lock for legacy authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_disconnectonlocklegacyauthn_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_disconnectonlocklegacyauthn_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_disconnectonlockmicrosoftidentityauthn", + "displayName": "Disconnect remote session on lock for Microsoft identity platform authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_disconnectonlockmicrosoftidentityauthn_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_disconnectonlockmicrosoftidentityauthn_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowdriveredirection", + "displayName": "Do not allow drive redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowdriveredirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowdriveredirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowpasswordsaving", + "displayName": "Do not allow passwords to be saved", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowpasswordsaving_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowpasswordsaving_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowwebauthnredirection", + "displayName": "Do not allow WebAuthn redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowwebauthnredirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_donotallowwebauthnredirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection", + "displayName": "Restrict clipboard transfer from client to server", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text", + "displayName": "Restrict clipboard transfer from client to server: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_0", + "displayName": "Disable clipboard transfers from client to server", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_1", + "displayName": "Allow plain text", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_2", + "displayName": "Allow plain text and images", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_3", + "displayName": "Allow plain text, images and Rich Text Format", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_4", + "displayName": "Allow plain text, images, Rich Text Format and HTML", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection", + "displayName": "Restrict clipboard transfer from server to client", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text", + "displayName": "Restrict clipboard transfer from server to client: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_0", + "displayName": "Disable clipboard transfers from server to client", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_1", + "displayName": "Allow plain text", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_2", + "displayName": "Allow plain text and images", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_3", + "displayName": "Allow plain text, images and Rich Text Format", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_4", + "displayName": "Allow plain text, images, Rich Text Format and HTML", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_promptforpassworduponconnection", + "displayName": "Always prompt for password upon connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_promptforpassworduponconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_promptforpassworduponconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_requiresecurerpccommunication", + "displayName": "Require secure RPC communication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_requiresecurerpccommunication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotedesktopservices_requiresecurerpccommunication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowbasicauthentication_client", + "displayName": "Allow Basic authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowbasicauthentication_client_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowbasicauthentication_client_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowbasicauthentication_service", + "displayName": "Allow Basic authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowbasicauthentication_service_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowbasicauthentication_service_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowcredsspauthenticationclient", + "displayName": "Allow CredSSP authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowcredsspauthenticationclient_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowcredsspauthenticationclient_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowcredsspauthenticationservice", + "displayName": "Allow CredSSP authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowcredsspauthenticationservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowcredsspauthenticationservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowremoteservermanagement", + "displayName": "Allow remote server management through WinRM", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowremoteservermanagement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowremoteservermanagement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowremoteservermanagement_allowautoconfig_ipv4filter", + "displayName": "IPv4 filter: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowremoteservermanagement_allowautoconfig_ipv6filter", + "displayName": "IPv6 filter: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowunencryptedtraffic_client", + "displayName": "Allow unencrypted traffic", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowunencryptedtraffic_client_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowunencryptedtraffic_client_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowunencryptedtraffic_service", + "displayName": "Allow unencrypted traffic", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowunencryptedtraffic_service_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_allowunencryptedtraffic_service_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallowdigestauthentication", + "displayName": "Disallow Digest authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallowdigestauthentication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallowdigestauthentication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallownegotiateauthenticationclient", + "displayName": "Disallow Negotiate authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallownegotiateauthenticationclient_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallownegotiateauthenticationclient_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallownegotiateauthenticationservice", + "displayName": "Disallow Negotiate authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallownegotiateauthenticationservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallownegotiateauthenticationservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallowstoringofrunascredentials", + "displayName": "Disallow WinRM from storing RunAs credentials", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallowstoringofrunascredentials_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_disallowstoringofrunascredentials_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_specifychannelbindingtokenhardeninglevel", + "displayName": "Specify channel binding token hardening level", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_specifychannelbindingtokenhardeninglevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_specifychannelbindingtokenhardeninglevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_specifychannelbindingtokenhardeninglevel_hardeninglevelcombo", + "displayName": "Hardening Level: (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_specifychannelbindingtokenhardeninglevel_hardeninglevelcombo_none", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_specifychannelbindingtokenhardeninglevel_hardeninglevelcombo_relaxed", + "displayName": "Relaxed", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_specifychannelbindingtokenhardeninglevel_hardeninglevelcombo_strict", + "displayName": "Strict", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_trustedhosts", + "displayName": "Trusted Hosts", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_trustedhosts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_trustedhosts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_trustedhosts_trustedhosts_list", + "displayName": "TrustedHostsList: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_turnoncompatibilityhttplistener", + "displayName": "Turn On Compatibility HTTP Listener", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_turnoncompatibilityhttplistener_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_turnoncompatibilityhttplistener_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_turnoncompatibilityhttpslistener", + "displayName": "Turn On Compatibility HTTPS Listener", + "options": [ + { + "id": "device_vendor_msft_policy_config_remotemanagement_turnoncompatibilityhttpslistener_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remotemanagement_turnoncompatibilityhttpslistener_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients", + "displayName": "Restrict Unauthenticated RPC clients", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_rpcrestrictremoteclientslist", + "displayName": "RPC Runtime Unauthenticated Client Restriction to Apply:", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_rpcrestrictremoteclientslist_0", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_rpcrestrictremoteclientslist_1", + "displayName": "Authenticated", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_restrictunauthenticatedrpcclients_rpcrestrictremoteclientslist_2", + "displayName": "Authenticated without exceptions", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_rpcendpointmapperclientauthentication", + "displayName": "Enable RPC Endpoint Mapper Client Authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_rpcendpointmapperclientauthentication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteprocedurecall_rpcendpointmapperclientauthentication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_allowremoteshellaccess", + "displayName": "Allow Remote Shell Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteshell_allowremoteshellaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_allowremoteshellaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_maxconcurrentusers", + "displayName": "MaxConcurrentUsers", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteshell_maxconcurrentusers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_maxconcurrentusers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_maxconcurrentusers_maxconcurrentusers", + "displayName": "MaxConcurrentUsers (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifyidletimeout", + "displayName": "Specify idle Timeout", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteshell_specifyidletimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifyidletimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifyidletimeout_idletimeout", + "displayName": "IdleTimeout (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxmemory", + "displayName": "Specify maximum amount of memory in MB per Shell", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxmemory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxmemory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxmemory_maxmemorypershellmb", + "displayName": "MaxMemoryPerShellMB (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxprocesses", + "displayName": "Specify maximum number of processes per Shell", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxprocesses_maxprocessespershell", + "displayName": "MaxProcessesPerShell (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxremoteshells", + "displayName": "Specify maximum number of remote shells per user", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxremoteshells_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxremoteshells_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifymaxremoteshells_maxshellsperuser", + "displayName": "MaxShellsPerUser (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifyshelltimeout", + "displayName": "Specify Shell Timeout", + "options": [ + { + "id": "device_vendor_msft_policy_config_remoteshell_specifyshelltimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifyshelltimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_remoteshell_specifyshelltimeout_shelltimeout", + "displayName": "ShellTimeOut (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_search_allowcloudsearch", + "displayName": "Allow Cloud Search", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_allowcloudsearch_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_search_allowcloudsearch_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_allowcortanainaad", + "displayName": "Allow Cortana In AAD", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_allowcortanainaad_0", + "displayName": "Block", + "description": "Not allowed. The Cortana consent page will not appear in AAD OOBE during setup." + }, + { + "id": "device_vendor_msft_policy_config_search_allowcortanainaad_1", + "displayName": "Allow", + "description": "Allowed. The Cortana consent page will appear in Azure AAD OOBE during setup." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_allowfindmyfiles", + "displayName": "Allow Find My Files", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_allowfindmyfiles_1", + "displayName": "Find My Files feature can be toggled (still off by default), and the settings UI is present.", + "description": "Find My Files feature can be toggled (still off by default), and the settings UI is present." + }, + { + "id": "device_vendor_msft_policy_config_search_allowfindmyfiles_0", + "displayName": "Find My Files feature is turned off completely, and the settings UI is disabled.", + "description": "Find My Files feature is turned off completely, and the settings UI is disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_allowindexingencryptedstoresoritems", + "displayName": "Allow Indexing Encrypted Stores Or Items", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_allowindexingencryptedstoresoritems_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_search_allowindexingencryptedstoresoritems_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_allowsearchhighlights", + "displayName": "Allow Search Highlights", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_search_allowsearchtouselocation", + "displayName": "Allow Search To Use Location", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_allowsearchtouselocation_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_search_allowsearchtouselocation_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_allowstoringimagesfromvisionsearch", + "displayName": "Allow Storing Images From Vision Search", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_allowstoringimagesfromvisionsearch_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_search_allowstoringimagesfromvisionsearch_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_allowusingdiacritics", + "displayName": "Allow Using Diacritics", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_allowusingdiacritics_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_search_allowusingdiacritics_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_allowwindowsindexer", + "displayName": "Allow Windows Indexer", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_search_alwaysuseautolangdetection", + "displayName": "Always Use Auto Lang Detection", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_alwaysuseautolangdetection_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_search_alwaysuseautolangdetection_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_configuresearchontaskbarmode", + "displayName": "Configure Search On Taskbar Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_configuresearchontaskbarmode_0", + "displayName": "Hide", + "description": "Hide" + }, + { + "id": "device_vendor_msft_policy_config_search_configuresearchontaskbarmode_1", + "displayName": "Search icon only", + "description": "Search icon only" + }, + { + "id": "device_vendor_msft_policy_config_search_configuresearchontaskbarmode_2", + "displayName": "Search icon and label", + "description": "Search icon and label" + }, + { + "id": "device_vendor_msft_policy_config_search_configuresearchontaskbarmode_3", + "displayName": "Search box", + "description": "Search box" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_disablebackoff", + "displayName": "Disable Backoff", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_disablebackoff_0", + "displayName": "Disable.", + "description": "Disable." + }, + { + "id": "device_vendor_msft_policy_config_search_disablebackoff_1", + "displayName": "Enable.", + "description": "Enable." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_disableremovabledriveindexing", + "displayName": "Disable Removable Drive Indexing", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_disableremovabledriveindexing_0", + "displayName": "Disable.", + "description": "Disable." + }, + { + "id": "device_vendor_msft_policy_config_search_disableremovabledriveindexing_1", + "displayName": "Enable.", + "description": "Enable." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_disablesearch", + "displayName": "Disable Search", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_disablesearch_0", + "displayName": "Do not disable.", + "description": "Do not disable." + }, + { + "id": "device_vendor_msft_policy_config_search_disablesearch_1", + "displayName": "Disable.", + "description": "Disable." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_donotusewebresults", + "displayName": "Do Not Use Web Results", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_donotusewebresults_0", + "displayName": "Not allowed. Queries won't be performed on the web and web results won't be displayed when a user performs a query in Search.", + "description": "Not allowed. Queries won't be performed on the web and web results won't be displayed when a user performs a query in Search." + }, + { + "id": "device_vendor_msft_policy_config_search_donotusewebresults_1", + "displayName": "Allowed. Queries will be performed on the web and web results will be displayed when a user performs a query in Search.", + "description": "Allowed. Queries will be performed on the web and web results will be displayed when a user performs a query in Search." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_preventindexinglowdiskspacemb", + "displayName": "Prevent Indexing Low Disk Space MB", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_preventindexinglowdiskspacemb_0", + "displayName": "Disable.", + "description": "Disable." + }, + { + "id": "device_vendor_msft_policy_config_search_preventindexinglowdiskspacemb_1", + "displayName": "Enable.", + "description": "Enable." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_search_preventremotequeries", + "displayName": "Prevent Remote Queries", + "options": [ + { + "id": "device_vendor_msft_policy_config_search_preventremotequeries_0", + "displayName": "Disable.", + "description": "Disable." + }, + { + "id": "device_vendor_msft_policy_config_search_preventremotequeries_1", + "displayName": "Enable.", + "description": "Enable." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_a001_block_flash", + "displayName": "Block Flash activation in Office documents", + "options": [ + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_a001_block_flash_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_a001_block_flash_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_a001_block_flash_pol_secguide_block_flash", + "displayName": "Block Flash player in Office (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_a001_block_flash_pol_secguide_block_flash_block all flash activation", + "displayName": "Block all activation", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_a001_block_flash_pol_secguide_block_flash_block embedded flash activation only", + "displayName": "Block embedding/linking, allow other activation", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_a001_block_flash_pol_secguide_block_flash_allow all flash activation", + "displayName": "Allow all activation", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript", + "displayName": "Restrict legacy JScript execution for Office", + "options": [ + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_excel", + "displayName": "Excel: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_msaccess", + "displayName": "Access: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_mspub", + "displayName": "Publisher: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_onenote", + "displayName": "OneNote: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_outlook", + "displayName": "Outlook: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_powerpnt", + "displayName": "PowerPoint: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_visio", + "displayName": "Visio: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_winproj", + "displayName": "Project: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_secguidev22h2~policy~cat_secguide_pol_secguide_legacy_jscript_pol_sg_winword", + "displayName": "Word: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_security_allowaddprovisioningpackage", + "displayName": "Allow Add Provisioning Package", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_allowaddprovisioningpackage_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_security_allowaddprovisioningpackage_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_security_allowremoveprovisioningpackage", + "displayName": "Allow Remove Provisioning Package", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_allowremoveprovisioningpackage_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_security_allowremoveprovisioningpackage_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_security_cleartpmifnotready", + "displayName": "Clear TPM If Not Ready", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_cleartpmifnotready_0", + "displayName": "Disabled", + "description": "Will not force recovery from a non-ready TPM state." + }, + { + "id": "device_vendor_msft_policy_config_security_cleartpmifnotready_1", + "displayName": "Enabled", + "description": "Will prompt to clear the TPM if the TPM is in a non-ready state (or reduced functionality) which can be remediated with a TPM Clear." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_security_configurewindowspasswords", + "displayName": "Configure Windows Passwords", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_configurewindowspasswords_0", + "displayName": "-Disallow passwords (Asymmetric credentials will be promoted to replace passwords on Windows features)", + "description": "-Disallow passwords (Asymmetric credentials will be promoted to replace passwords on Windows features)" + }, + { + "id": "device_vendor_msft_policy_config_security_configurewindowspasswords_1", + "displayName": "Allow passwords (Passwords continue to be allowed to be used for Windows features)", + "description": "Allow passwords (Passwords continue to be allowed to be used for Windows features)" + }, + { + "id": "device_vendor_msft_policy_config_security_configurewindowspasswords_2", + "displayName": "as per SKU and device capabilities. Windows 10 S devices will exhibit \"Disallow passwords\" default, and all other devices will default to \"Allow passwords\")", + "description": "as per SKU and device capabilities. Windows 10 S devices will exhibit \"Disallow passwords\" default, and all other devices will default to \"Allow passwords\")" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_security_preventautomaticdeviceencryptionforazureadjoineddevices", + "displayName": "Prevent Automatic Device Encryption For Azure AD Joined Devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_preventautomaticdeviceencryptionforazureadjoineddevices_0", + "displayName": "Encryption enabled.", + "description": "Encryption enabled." + }, + { + "id": "device_vendor_msft_policy_config_security_preventautomaticdeviceencryptionforazureadjoineddevices_1", + "displayName": "Encryption disabled.", + "description": "Encryption disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_security_recoveryenvironmentauthentication", + "displayName": "Recovery Environment Authentication", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_recoveryenvironmentauthentication_0", + "displayName": "current) behavior", + "description": "current) behavior" + }, + { + "id": "device_vendor_msft_policy_config_security_recoveryenvironmentauthentication_1", + "displayName": "RequireAuthentication: Admin Authentication is always required for components in RecoveryEnvironment", + "description": "RequireAuthentication: Admin Authentication is always required for components in RecoveryEnvironment" + }, + { + "id": "device_vendor_msft_policy_config_security_recoveryenvironmentauthentication_2", + "displayName": "NoRequireAuthentication: Admin Authentication is not required for components in RecoveryEnvironment", + "description": "NoRequireAuthentication: Admin Authentication is not required for components in RecoveryEnvironment" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_security_requiredeviceencryption", + "displayName": "Require Device Encryption", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_requiredeviceencryption_0", + "displayName": "Encryption is not required.", + "description": "Encryption is not required." + }, + { + "id": "device_vendor_msft_policy_config_security_requiredeviceencryption_1", + "displayName": "Encryption is required.", + "description": "Encryption is required." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_security_requireprovisioningpackagesignature", + "displayName": "Require Provisioning Package Signature", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_requireprovisioningpackagesignature_0", + "displayName": "Not required.", + "description": "Not required." + }, + { + "id": "device_vendor_msft_policy_config_security_requireprovisioningpackagesignature_1", + "displayName": "Required.", + "description": "Required." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_security_requireretrievehealthcertificateonboot", + "displayName": "Require Retrieve Health Certificate On Boot", + "options": [ + { + "id": "device_vendor_msft_policy_config_security_requireretrievehealthcertificateonboot_0", + "displayName": "Not required.", + "description": "Not required." + }, + { + "id": "device_vendor_msft_policy_config_security_requireretrievehealthcertificateonboot_1", + "displayName": "Required.", + "description": "Required." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_servicecontrolmanager_svchostprocessmitigation", + "displayName": "Enable svchost.exe mitigation options", + "options": [ + { + "id": "device_vendor_msft_policy_config_servicecontrolmanager_svchostprocessmitigation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_servicecontrolmanager_svchostprocessmitigation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowdatasense", + "displayName": "Allow Data Sense", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowdatasense_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowdatasense_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowdatetime", + "displayName": "Allow Date Time", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowdatetime_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowdatetime_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowlanguage", + "displayName": "Allow Language", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowlanguage_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowlanguage_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowonlinetips", + "displayName": "Allow Online Tips", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowonlinetips_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowonlinetips_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowpowersleep", + "displayName": "Allow Power Sleep", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowpowersleep_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowpowersleep_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowregion", + "displayName": "Allow Region", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowregion_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowregion_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowsigninoptions", + "displayName": "Allow Sign In Options", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowsigninoptions_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowsigninoptions_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowvpn", + "displayName": "Allow VPN", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowvpn_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowvpn_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowworkplace", + "displayName": "Allow Workplace", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowworkplace_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowworkplace_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_allowyouraccount", + "displayName": "Allow Your Account", + "options": [ + { + "id": "device_vendor_msft_policy_config_settings_allowyouraccount_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_settings_allowyouraccount_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_settings_pagevisibilitylist", + "displayName": "Page Visibility List", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_smartscreen_enableappinstallcontrol", + "displayName": "Enable App Install Control", + "options": [ + { + "id": "device_vendor_msft_policy_config_smartscreen_enableappinstallcontrol_0", + "displayName": "Disable", + "description": "Turns off Application Installation Control, allowing users to download and install files from anywhere on the web." + }, + { + "id": "device_vendor_msft_policy_config_smartscreen_enableappinstallcontrol_1", + "displayName": "Enable", + "description": "Turns on Application Installation Control, allowing users to only install apps from the Store." + }, + { + "id": "device_vendor_msft_policy_config_smartscreen_enableappinstallcontrol_2", + "displayName": "Turns on Application Installation Control, letting users know that there's a comparable app in the Store", + "description": "Turns on Application Installation Control, letting users know that there's a comparable app in the Store" + }, + { + "id": "device_vendor_msft_policy_config_smartscreen_enableappinstallcontrol_3", + "displayName": "Turns on Application Installation Control, warning users before installing apps from outside the Store", + "description": "Turns on Application Installation Control, warning users before installing apps from outside the Store" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_smartscreen_enablesmartscreeninshell", + "displayName": "Enable Smart Screen In Shell", + "options": [ + { + "id": "device_vendor_msft_policy_config_smartscreen_enablesmartscreeninshell_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_smartscreen_enablesmartscreeninshell_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_smartscreen_preventoverrideforfilesinshell", + "displayName": "Prevent Override For Files In Shell", + "options": [ + { + "id": "device_vendor_msft_policy_config_smartscreen_preventoverrideforfilesinshell_0", + "displayName": "Disabled", + "description": "Do not prevent override." + }, + { + "id": "device_vendor_msft_policy_config_smartscreen_preventoverrideforfilesinshell_1", + "displayName": "Enabled", + "description": "Prevent override." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_speech_allowspeechmodelupdate", + "displayName": "Allow Speech Model Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_speech_allowspeechmodelupdate_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_speech_allowspeechmodelupdate_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderdocuments", + "displayName": "Allow Pinned Folder Documents", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderdocuments_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderdocuments_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderdocuments_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderdownloads", + "displayName": "Allow Pinned Folder Downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderdownloads_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderdownloads_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderdownloads_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderfileexplorer", + "displayName": "Allow Pinned Folder File Explorer", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderfileexplorer_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderfileexplorer_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderfileexplorer_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderhomegroup", + "displayName": "Allow Pinned Folder Home Group", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderhomegroup_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderhomegroup_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderhomegroup_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldermusic", + "displayName": "Allow Pinned Folder Music", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldermusic_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldermusic_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldermusic_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldernetwork", + "displayName": "Allow Pinned Folder Network", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldernetwork_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldernetwork_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldernetwork_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderpersonalfolder", + "displayName": "Allow Pinned Folder Personal Folder", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderpersonalfolder_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderpersonalfolder_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderpersonalfolder_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderpictures", + "displayName": "Allow Pinned Folder Pictures", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderpictures_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderpictures_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfolderpictures_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldersettings", + "displayName": "Allow Pinned Folder Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldersettings_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldersettings_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldersettings_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldervideos", + "displayName": "Allow Pinned Folder Videos", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldervideos_0", + "displayName": "The shortcut is hidden and disables the setting in the Settings app.", + "description": "The shortcut is hidden and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldervideos_1", + "displayName": "The shortcut is visible and disables the setting in the Settings app.", + "description": "The shortcut is visible and disables the setting in the Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_allowpinnedfoldervideos_65535", + "displayName": "There is no enforced configuration and the setting can be changed by the user.", + "description": "There is no enforced configuration and the setting can be changed by the user." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_configurestartpins", + "displayName": "Configure Start Pins", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_start_disablecontextmenus", + "displayName": "Disable Context Menus", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_disablecontextmenus_0", + "displayName": "Disabled", + "description": "Do not disable." + }, + { + "id": "device_vendor_msft_policy_config_start_disablecontextmenus_1", + "displayName": "Enabled", + "description": "Disable." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_disableeditingquicksettings", + "displayName": "Disable Editing Quick Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_disableeditingquicksettings_0", + "displayName": "Enable editing Quick Settings.", + "description": "Enable editing Quick Settings." + }, + { + "id": "device_vendor_msft_policy_config_start_disableeditingquicksettings_1", + "displayName": "Disable editing Quick Settings.", + "description": "Disable editing Quick Settings." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_forcestartsize", + "displayName": "Force Start Size", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_forcestartsize_0", + "displayName": "Do not force size of Start.", + "description": "Do not force size of Start." + }, + { + "id": "device_vendor_msft_policy_config_start_forcestartsize_1", + "displayName": "Force non-fullscreen size of Start.", + "description": "Force non-fullscreen size of Start." + }, + { + "id": "device_vendor_msft_policy_config_start_forcestartsize_2", + "displayName": "Force a fullscreen size of Start.", + "description": "Force a fullscreen size of Start." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hideapplist", + "displayName": "Hide App List", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hideapplist_0", + "displayName": "None.", + "description": "None." + }, + { + "id": "device_vendor_msft_policy_config_start_hideapplist_1", + "displayName": "Hide all apps list.", + "description": "Hide all apps list." + }, + { + "id": "device_vendor_msft_policy_config_start_hideapplist_2", + "displayName": "Hide all apps list, and Disable \"Show app list in Start menu\" in Settings app.", + "description": "Hide all apps list, and Disable \"Show app list in Start menu\" in Settings app." + }, + { + "id": "device_vendor_msft_policy_config_start_hideapplist_3", + "displayName": "Hide all apps list, remove all apps button, and Disable \"Show app list in Start menu\" in Settings app.", + "description": "Hide all apps list, remove all apps button, and Disable \"Show app list in Start menu\" in Settings app." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hidechangeaccountsettings", + "displayName": "Hide Change Account Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hidechangeaccountsettings_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hidechangeaccountsettings_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hidefrequentlyusedapps", + "displayName": "Hide Frequently Used Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hidefrequentlyusedapps_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hidefrequentlyusedapps_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hidehibernate", + "displayName": "Hide Hibernate", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hidehibernate_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hidehibernate_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hidelock", + "displayName": "Hide Lock", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hidelock_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hidelock_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hidepowerbutton", + "displayName": "Hide Power Button", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hidepowerbutton_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hidepowerbutton_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hiderecentjumplists", + "displayName": "Hide Recent Jumplists", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hiderecentjumplists_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hiderecentjumplists_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hiderecentlyaddedapps", + "displayName": "Hide Recently Added Apps", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hiderecentlyaddedapps_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hiderecentlyaddedapps_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hiderestart", + "displayName": "Hide Restart", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hiderestart_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hiderestart_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hideshutdown", + "displayName": "Hide Shut Down", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hideshutdown_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hideshutdown_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hidesignout", + "displayName": "Hide Sign Out", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hidesignout_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hidesignout_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hidesleep", + "displayName": "Hide Sleep", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hidesleep_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hidesleep_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hideswitchaccount", + "displayName": "Hide Switch Account", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hideswitchaccount_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hideswitchaccount_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_hideusertile", + "displayName": "Hide User Tile", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_hideusertile_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "device_vendor_msft_policy_config_start_hideusertile_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_importedgeassets", + "displayName": "Import Edge Assets", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_start_nopinningtotaskbar", + "displayName": "No Pinning To Taskbar", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_nopinningtotaskbar_0", + "displayName": "Disabled", + "description": "Pinning enabled." + }, + { + "id": "device_vendor_msft_policy_config_start_nopinningtotaskbar_1", + "displayName": "Enabled", + "description": "Pinning disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_simplifyquicksettings", + "displayName": "Simplify Quick Settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_start_simplifyquicksettings_0", + "displayName": "Load regular Quick Settings layout.", + "description": "Load regular Quick Settings layout." + }, + { + "id": "device_vendor_msft_policy_config_start_simplifyquicksettings_1", + "displayName": "Load simplified Quick Settings layout.", + "description": "Load simplified Quick Settings layout." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_start_startlayout", + "displayName": "Start Layout", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_storage_allowdiskhealthmodelupdates", + "displayName": "Allow Disk Health Model Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_storage_allowdiskhealthmodelupdates_0", + "displayName": "Do not allow", + "description": "Do not allow" + }, + { + "id": "device_vendor_msft_policy_config_storage_allowdiskhealthmodelupdates_1", + "displayName": "Allow", + "description": "Allow" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_storage_allowstoragesenseglobal", + "displayName": "Allow Storage Sense Global", + "options": [ + { + "id": "device_vendor_msft_policy_config_storage_allowstoragesenseglobal_1", + "displayName": "Allow", + "description": "Allow" + }, + { + "id": "device_vendor_msft_policy_config_storage_allowstoragesenseglobal_0", + "displayName": "Block", + "description": "Block" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_storage_allowstoragesensetemporaryfilescleanup", + "displayName": "Allow Storage Sense Temporary Files Cleanup", + "options": [ + { + "id": "device_vendor_msft_policy_config_storage_allowstoragesensetemporaryfilescleanup_1", + "displayName": "Allow", + "description": "Allow" + }, + { + "id": "device_vendor_msft_policy_config_storage_allowstoragesensetemporaryfilescleanup_0", + "displayName": "Block", + "description": "Block" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_storage_configstoragesensecloudcontentdehydrationthreshold", + "displayName": "Config Storage Sense Cloud Content Dehydration Threshold", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_storage_configstoragesensedownloadscleanupthreshold", + "displayName": "Config Storage Sense Downloads Cleanup Threshold", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_storage_configstoragesenseglobalcadence", + "displayName": "Config Storage Sense Global Cadence", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_storage_configstoragesenserecyclebincleanupthreshold", + "displayName": "Config Storage Sense Recycle Bin Cleanup Threshold", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_storage_enhancedstoragedevices", + "displayName": "Do not allow Windows to activate Enhanced Storage devices", + "options": [ + { + "id": "device_vendor_msft_policy_config_storage_enhancedstoragedevices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_storage_enhancedstoragedevices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_storage_removablediskdenywriteaccess", + "displayName": "Removable Disk Deny Write Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_storage_removablediskdenywriteaccess_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_storage_removablediskdenywriteaccess_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowbuildpreview", + "displayName": "Allow Build Preview", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowbuildpreview_0", + "displayName": "Not allowed. The item \"Get Insider builds\" is unavailable, users are unable to make their devices available for preview software.", + "description": "Not allowed. The item \"Get Insider builds\" is unavailable, users are unable to make their devices available for preview software." + }, + { + "id": "device_vendor_msft_policy_config_system_allowbuildpreview_1", + "displayName": "Allowed. Users can make their devices available for downloading and installing preview software.", + "description": "Allowed. Users can make their devices available for downloading and installing preview software." + }, + { + "id": "device_vendor_msft_policy_config_system_allowbuildpreview_2", + "displayName": "Not configured. Users can make their devices available for downloading and installing preview software.", + "description": "Not configured. Users can make their devices available for downloading and installing preview software." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowcommercialdatapipeline", + "displayName": "Allow Commercial Data Pipeline", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowcommercialdatapipeline_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_allowcommercialdatapipeline_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowdesktopanalyticsprocessing", + "displayName": "Allow Desktop Analytics Processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowdesktopanalyticsprocessing_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_system_allowdesktopanalyticsprocessing_2", + "displayName": "Allowed", + "description": "Allowed" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowdevicenameindiagnosticdata", + "displayName": "Allow device name to be sent in Windows diagnostic data", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowdevicenameindiagnosticdata_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_allowdevicenameindiagnosticdata_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowembeddedmode", + "displayName": "Allow Embedded Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowembeddedmode_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_system_allowembeddedmode_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowexperimentation", + "displayName": "Allow Experimentation", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowexperimentation_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_allowexperimentation_1", + "displayName": "Permits Microsoft to configure device settings only.", + "description": "Permits Microsoft to configure device settings only." + }, + { + "id": "device_vendor_msft_policy_config_system_allowexperimentation_2", + "displayName": "Allows Microsoft to conduct full experimentation.", + "description": "Allows Microsoft to conduct full experimentation." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowfontproviders", + "displayName": "Allow Font Providers", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowfontproviders_0", + "displayName": "Not allowed. No traffic to fs.microsoft.com and only locally installed fonts are available.", + "description": "Not allowed. No traffic to fs.microsoft.com and only locally installed fonts are available." + }, + { + "id": "device_vendor_msft_policy_config_system_allowfontproviders_1", + "displayName": "Allowed. There may be network traffic to fs.microsoft.com and downloadable fonts are available to apps that support them.", + "description": "Allowed. There may be network traffic to fs.microsoft.com and downloadable fonts are available to apps that support them." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowlocation", + "displayName": "Allow Location", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowlocation_0", + "displayName": "Force Location Off. All Location Privacy settings are toggled off and grayed out. Users cannot change the settings, and no apps are allowed access to the Location service, including Cortana and Search.", + "description": "Force Location Off. All Location Privacy settings are toggled off and grayed out. Users cannot change the settings, and no apps are allowed access to the Location service, including Cortana and Search." + }, + { + "id": "device_vendor_msft_policy_config_system_allowlocation_1", + "displayName": "Location service is allowed. The user has control and can change Location Privacy settings on or off.", + "description": "Location service is allowed. The user has control and can change Location Privacy settings on or off." + }, + { + "id": "device_vendor_msft_policy_config_system_allowlocation_2", + "displayName": "Force Location On. All Location Privacy settings are toggled on and grayed out. Users cannot change the settings and all consent permissions will be automatically suppressed.", + "description": "Force Location On. All Location Privacy settings are toggled on and grayed out. Users cannot change the settings and all consent permissions will be automatically suppressed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowmicrosoftmanageddesktopprocessing", + "displayName": "Allow Microsoft Managed Desktop Processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowmicrosoftmanageddesktopprocessing_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_system_allowmicrosoftmanageddesktopprocessing_32", + "displayName": "Allowed", + "description": "Allowed" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowstoragecard", + "displayName": "Allow Storage Card", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowstoragecard_0", + "displayName": "SD card use is not allowed and USB drives are disabled. This setting does not prevent programmatic access to the storage card.", + "description": "SD card use is not allowed and USB drives are disabled. This setting does not prevent programmatic access to the storage card." + }, + { + "id": "device_vendor_msft_policy_config_system_allowstoragecard_1", + "displayName": "Allow a storage card.", + "description": "Allow a storage card." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowtelemetry", + "displayName": "Allow Telemetry", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowtelemetry_0", + "displayName": "Security", + "description": "Security. Information that is required to help keep Windows more secure, including data about the Connected User Experience and Telemetry component settings, the Malicious Software Removal Tool, and Windows Defender.\nNote: This value is only applicable to Windows 10 Enterprise, Windows 10 Education, Windows 10 Mobile Enterprise, Windows 10 IoT Core (IoT Core), and Windows Server 2016. Using this setting on other devices is equivalent to setting the value of 1." + }, + { + "id": "device_vendor_msft_policy_config_system_allowtelemetry_1", + "displayName": "Basic", + "description": "Basic. Basic device info, including: quality-related data, app compatibility, app usage data, and data from the Security level." + }, + { + "id": "device_vendor_msft_policy_config_system_allowtelemetry_3", + "displayName": "Full", + "description": "Full. All data necessary to identify and help to fix problems, plus data from the Security, Basic, and Enhanced levels." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowupdatecomplianceprocessing", + "displayName": "Allow Update Compliance Processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowupdatecomplianceprocessing_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_system_allowupdatecomplianceprocessing_16", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowusertoresetphone", + "displayName": "Allow User To Reset Phone", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowusertoresetphone_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_system_allowusertoresetphone_1", + "displayName": "Allowed to reset to factory default settings.", + "description": "Allowed to reset to factory default settings." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_allowwufbcloudprocessing", + "displayName": "Allow WUfB Cloud Processing", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_allowwufbcloudprocessing_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_system_allowwufbcloudprocessing_8", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_bootstartdriverinitialization", + "displayName": "Boot-Start Driver Initialization Policy", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_bootstartdriverinitialization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_system_bootstartdriverinitialization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_bootstartdriverinitialization_selectdriverloadpolicy", + "displayName": "Choose the boot-start drivers that can be initialized:", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_bootstartdriverinitialization_selectdriverloadpolicy_8", + "displayName": "Good only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_system_bootstartdriverinitialization_selectdriverloadpolicy_1", + "displayName": "Good and unknown", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_system_bootstartdriverinitialization_selectdriverloadpolicy_3", + "displayName": "Good, unknown and bad but critical", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_system_bootstartdriverinitialization_selectdriverloadpolicy_7", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_configuremicrosoft365uploadendpoint", + "displayName": "Configure Microsoft 365 Upload Endpoint", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_system_configuretelemetryoptinchangenotification", + "displayName": "Configure Telemetry Opt In Change Notification", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_configuretelemetryoptinchangenotification_0", + "displayName": "Enable telemetry change notifications.", + "description": "Enable telemetry change notifications." + }, + { + "id": "device_vendor_msft_policy_config_system_configuretelemetryoptinchangenotification_1", + "displayName": "Disable telemetry change notifications.", + "description": "Disable telemetry change notifications." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_configuretelemetryoptinsettingsux", + "displayName": "Configure Telemetry Opt In Settings Ux", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_configuretelemetryoptinsettingsux_0", + "displayName": "Enable Telemetry opt-in Settings.", + "description": "Enable Telemetry opt-in Settings." + }, + { + "id": "device_vendor_msft_policy_config_system_configuretelemetryoptinsettingsux_1", + "displayName": "Disable Telemetry opt-in Settings.", + "description": "Disable Telemetry opt-in Settings." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_disabledevicedelete", + "displayName": "Disable Device Delete", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_disabledevicedelete_0", + "displayName": "Not disabled.", + "description": "Not disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_disabledevicedelete_1", + "displayName": "Disabled.", + "description": "Disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_disablediagnosticdataviewer", + "displayName": "Disable Diagnostic Data Viewer", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_disablediagnosticdataviewer_0", + "displayName": "Not disabled.", + "description": "Not disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_disablediagnosticdataviewer_1", + "displayName": "Disabled.", + "description": "Disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_disabledirectxdatabaseupdate", + "displayName": "Disable Direct X Database Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_disabledirectxdatabaseupdate_0", + "displayName": "Not disabled.", + "description": "Not disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_disabledirectxdatabaseupdate_1", + "displayName": "Disabled.", + "description": "Disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_disableenterpriseauthproxy", + "displayName": "Disable Enterprise Auth Proxy", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_disableenterpriseauthproxy_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_system_disableenterpriseauthproxy_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_disableonedrivefilesync", + "displayName": "Disable One Drive File Sync", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_disableonedrivefilesync_0", + "displayName": "Sync enabled.", + "description": "Sync enabled." + }, + { + "id": "device_vendor_msft_policy_config_system_disableonedrivefilesync_1", + "displayName": "Sync disabled.", + "description": "Sync disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_disableonesettingsdownloads", + "displayName": "Disable One Settings Downloads", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_disableonesettingsdownloads_0", + "displayName": "Not disabled.", + "description": "Not disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_disableonesettingsdownloads_1", + "displayName": "Disabled.", + "description": "Disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_disablesystemrestore", + "displayName": "Turn off System Restore", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_disablesystemrestore_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_system_disablesystemrestore_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_enableonesettingsauditing", + "displayName": "Enable One Settings Auditing", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_enableonesettingsauditing_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_enableonesettingsauditing_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_feedbackhubalwayssavediagnosticslocally", + "displayName": "Feedback Hub Always Save Diagnostics Locally", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_feedbackhubalwayssavediagnosticslocally_0", + "displayName": "False. The Feedback Hub will not always save a local copy of diagnostics that may be created when a feedback is submitted. The user will have the option to do so.", + "description": "False. The Feedback Hub will not always save a local copy of diagnostics that may be created when a feedback is submitted. The user will have the option to do so." + }, + { + "id": "device_vendor_msft_policy_config_system_feedbackhubalwayssavediagnosticslocally_1", + "displayName": "True. The Feedback Hub should always save a local copy of diagnostics that may be created when a feedback is submitted.", + "description": "True. The Feedback Hub should always save a local copy of diagnostics that may be created when a feedback is submitted." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_limitdiagnosticlogcollection", + "displayName": "Limit Diagnostic Log Collection", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_limitdiagnosticlogcollection_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_limitdiagnosticlogcollection_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_limitdumpcollection", + "displayName": "Limit Dump Collection", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_limitdumpcollection_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_limitdumpcollection_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_limitenhanceddiagnosticdatawindowsanalytics", + "displayName": "Limit Enhanced Diagnostic Data Windows Analytics", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_limitenhanceddiagnosticdatawindowsanalytics_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_system_limitenhanceddiagnosticdatawindowsanalytics_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_system_telemetryproxy", + "displayName": "Telemetry Proxy", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_system_turnofffilehistory", + "displayName": "Turn Off File History", + "options": [ + { + "id": "device_vendor_msft_policy_config_system_turnofffilehistory_0", + "displayName": "Allow file history.", + "description": "Allow file history." + }, + { + "id": "device_vendor_msft_policy_config_system_turnofffilehistory_1", + "displayName": "Turn off file history.", + "description": "Turn off file history." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurehomegrouplistenerservicestartupmode", + "displayName": "Configure Home Group Listener Service Startup Mode", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurehomegroupproviderservicestartupmode", + "displayName": "Configure Home Group Provider Service Startup Mode", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxaccessorymanagementservicestartupmode", + "displayName": "Configure Xbox Accessory Management Service Startup Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxaccessorymanagementservicestartupmode_2", + "displayName": "Automatic", + "description": "Automatic" + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxaccessorymanagementservicestartupmode_3", + "displayName": "Manual", + "description": "Manual" + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxaccessorymanagementservicestartupmode_4", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxliveauthmanagerservicestartupmode", + "displayName": "Configure Xbox Live Auth Manager Service Startup Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxliveauthmanagerservicestartupmode_2", + "displayName": "Automatic", + "description": "Automatic" + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxliveauthmanagerservicestartupmode_3", + "displayName": "Manual", + "description": "Manual" + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxliveauthmanagerservicestartupmode_4", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxlivegamesaveservicestartupmode", + "displayName": "Configure Xbox Live Game Save Service Startup Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxlivegamesaveservicestartupmode_2", + "displayName": "Automatic", + "description": "Automatic" + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxlivegamesaveservicestartupmode_3", + "displayName": "Manual", + "description": "Manual" + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxlivegamesaveservicestartupmode_4", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxlivenetworkingservicestartupmode", + "displayName": "Configure Xbox Live Networking Service Startup Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxlivenetworkingservicestartupmode_2", + "displayName": "Automatic", + "description": "Automatic" + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxlivenetworkingservicestartupmode_3", + "displayName": "Manual", + "description": "Manual" + }, + { + "id": "device_vendor_msft_policy_config_systemservices_configurexboxlivenetworkingservicestartupmode_4", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_taskmanager_allowendtask", + "displayName": "Allow End Task", + "options": [ + { + "id": "device_vendor_msft_policy_config_taskmanager_allowendtask_0", + "displayName": "Block", + "description": "Disabled. EndTask functionality is blocked in TaskManager." + }, + { + "id": "device_vendor_msft_policy_config_taskmanager_allowendtask_1", + "displayName": "Allow", + "description": "Enabled. Users can perform EndTask in TaskManager." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_taskscheduler_enablexboxgamesavetask", + "displayName": "Enable Xbox Game Save Task", + "options": [ + { + "id": "device_vendor_msft_policy_config_taskscheduler_enablexboxgamesavetask_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_taskscheduler_enablexboxgamesavetask_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions", + "displayName": "Cloud Policy Details", + "options": [ + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_enforcefirewall", + "displayName": "Enable firewall protection of Microsoft endpoints (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_enforcefirewall_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_enforcefirewall_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_payloadcloudid", + "displayName": "Cloud ID (optional): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_payloadhostnamesid", + "displayName": "Hostnames (optional): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_payloadiprangesid", + "displayName": "IP Ranges (optional): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_payloadpolicyid", + "displayName": "Policy GUID: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_payloadsubdomainsupportedhostnamesid", + "displayName": "Subdomain Supported Hostnames (optional): (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_tenantrestrictions_configuretenantrestrictions_payloadtenantid", + "displayName": "Azure AD Directory ID: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking", + "displayName": "Enable watermarking", + "options": [ + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_part_watermarkingcontent", + "displayName": "QR code embedded content (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_part_watermarkingcontent_0", + "displayName": "Connection ID", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_part_watermarkingcontent_1", + "displayName": "Device ID", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_part_watermarkingheightfactor", + "displayName": "Height of grid box in percent relative to QR code bitmap height (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_part_watermarkingopacity", + "displayName": "QR code bitmap opacity (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_part_watermarkingqrscale", + "displayName": "QR code bitmap scale factor (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1.upadtes~policy~avd_gp_node_avd_server_watermarking_part_watermarkingwidthfactor", + "displayName": "Width of grid box in percent relative to QR code bitmap width (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_connection_interval_graphics_data", + "displayName": "Enable Graphics related data logging for every connection interval", + "options": [ + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_connection_interval_graphics_data_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_connection_interval_graphics_data_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_screen_capture_protection", + "displayName": "Enable screen capture protection", + "options": [ + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_screen_capture_protection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_screen_capture_protection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_screen_capture_protection_avd_server_screen_capture_protection_level", + "displayName": "Screen Capture Protection Options (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_screen_capture_protection_avd_server_screen_capture_protection_level_1", + "displayName": " Block screen capture on client ", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_screen_capture_protection_avd_server_screen_capture_protection_level_2", + "displayName": " Block screen capture on client and server ", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_port_redirector", + "displayName": "Enable RDP Shortpath for managed networks", + "options": [ + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_port_redirector_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_port_redirector_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_port_redirector_part_udpredirectorport", + "displayName": "UDP port (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_stun_client_port_range", + "displayName": "Use port range for RDP Shortpath for unmanaged networks", + "options": [ + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_stun_client_port_range_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_stun_client_port_range_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_stun_client_port_range_part_iceclientportbase", + "displayName": "UDP port base (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_udp_stun_client_port_range_part_iceclientportrange", + "displayName": "Port pool size (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_watermarking", + "displayName": "[Deprecated] Enable watermarking", + "options": [ + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_watermarking_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_watermarking_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_watermarking_part_watermarkingheightfactor", + "displayName": "[Deprecated] Height of grid box in percent relative to QR code bitmap height (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_watermarking_part_watermarkingopacity", + "displayName": "[Deprecated] QR code bitmap opacity (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_watermarking_part_watermarkingqrscale", + "displayName": "[Deprecated] QR code bitmap scale factor (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_terminalserver-avdv1~policy~avd_gp_node_avd_server_watermarking_part_watermarkingwidthfactor", + "displayName": "[Deprecated] Width of grid box in percent relative to QR code bitmap width (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowhardwarekeyboardtextsuggestions", + "displayName": "Allow Hardware Keyboard Text Suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowhardwarekeyboardtextsuggestions_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowhardwarekeyboardtextsuggestions_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowimelogging", + "displayName": "Allow IME Logging", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowimelogging_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowimelogging_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowimenetworkaccess", + "displayName": "Allow IME Network Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowimenetworkaccess_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowimenetworkaccess_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowinputpanel", + "displayName": "Allow Input Panel", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowinputpanel_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowinputpanel_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseimesurrogatepaircharacters", + "displayName": "Allow Japanese IME Surrogate Pair Characters", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseimesurrogatepaircharacters_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseimesurrogatepaircharacters_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseivscharacters", + "displayName": "Allow Japanese IVS Characters", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseivscharacters_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseivscharacters_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowjapanesenonpublishingstandardglyph", + "displayName": "Allow Japanese Non Publishing Standard Glyph", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowjapanesenonpublishingstandardglyph_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowjapanesenonpublishingstandardglyph_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseuserdictionary", + "displayName": "Allow Japanese User Dictionary", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseuserdictionary_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowjapaneseuserdictionary_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowkeyboardtextsuggestions", + "displayName": "Allow Keyboard Text Suggestions", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowkeyboardtextsuggestions_0", + "displayName": "Block", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowkeyboardtextsuggestions_1", + "displayName": "Allow", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowlanguagefeaturesuninstall", + "displayName": "Allow Language Features Uninstall", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowlanguagefeaturesuninstall_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowlanguagefeaturesuninstall_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowlinguisticdatacollection", + "displayName": "Allow Linguistic Data Collection", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_allowlinguisticdatacollection_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_textinput_allowlinguisticdatacollection_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_configurejapaneseimeversion", + "displayName": "Configure Japanese IME Version", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_configurejapaneseimeversion_0", + "displayName": "Allows you to configure which Microsoft Japanese IME version to use. The new Microsoft Japanese IME version is configured by default.", + "description": "Allows you to configure which Microsoft Japanese IME version to use. The new Microsoft Japanese IME version is configured by default." + }, + { + "id": "device_vendor_msft_policy_config_textinput_configurejapaneseimeversion_1", + "displayName": "Does not allow you to configure which Microsoft Japanese IME version to use. The previous version of Microsoft Japanese IME is always selected.", + "description": "Does not allow you to configure which Microsoft Japanese IME version to use. The previous version of Microsoft Japanese IME is always selected." + }, + { + "id": "device_vendor_msft_policy_config_textinput_configurejapaneseimeversion_2", + "displayName": "Does not allow you to configure which Microsoft Japanese IME version to use. The new Microsoft Japanese IME version is always selected.", + "description": "Does not allow you to configure which Microsoft Japanese IME version to use. The new Microsoft Japanese IME version is always selected." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_configuresimplifiedchineseimeversion", + "displayName": "Configure Simplified Chinese IME Version", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_configuresimplifiedchineseimeversion_0", + "displayName": "Allows you to configure which Microsoft Simplified Chinese IME version to use. The new Microsoft Simplified Chinese IME version is configured by default.", + "description": "Allows you to configure which Microsoft Simplified Chinese IME version to use. The new Microsoft Simplified Chinese IME version is configured by default." + }, + { + "id": "device_vendor_msft_policy_config_textinput_configuresimplifiedchineseimeversion_1", + "displayName": "Does not allow you to configure which Microsoft Simplified Chinese IME version to use. The previous version of Microsoft Simplified Chinese IME is always selected.", + "description": "Does not allow you to configure which Microsoft Simplified Chinese IME version to use. The previous version of Microsoft Simplified Chinese IME is always selected." + }, + { + "id": "device_vendor_msft_policy_config_textinput_configuresimplifiedchineseimeversion_2", + "displayName": "Does not allow you to configure which Microsoft Simplified Chinese IME version to use. The new Microsoft Simplified Chinese IME version is always selected.", + "description": "Does not allow you to configure which Microsoft Simplified Chinese IME version to use. The new Microsoft Simplified Chinese IME version is always selected." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_configuretraditionalchineseimeversion", + "displayName": "Configure Traditional Chinese IME Version", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_configuretraditionalchineseimeversion_0", + "displayName": "Allows you to configure which Microsoft Traditional Chinese IME version to use. The new Microsoft Traditional Chinese IME version is configured by default.", + "description": "Allows you to configure which Microsoft Traditional Chinese IME version to use. The new Microsoft Traditional Chinese IME version is configured by default." + }, + { + "id": "device_vendor_msft_policy_config_textinput_configuretraditionalchineseimeversion_1", + "displayName": "Does not allow you to configure which Microsoft Traditional Chinese IME version to use. The previous version of Microsoft Traditional Chinese IME is always selected.", + "description": "Does not allow you to configure which Microsoft Traditional Chinese IME version to use. The previous version of Microsoft Traditional Chinese IME is always selected." + }, + { + "id": "device_vendor_msft_policy_config_textinput_configuretraditionalchineseimeversion_2", + "displayName": "Does not allow you to configure which Microsoft Traditional Chinese IME version to use. The new Microsoft Traditional Chinese IME version is always selected.", + "description": "Does not allow you to configure which Microsoft Traditional Chinese IME version to use. The new Microsoft Traditional Chinese IME version is always selected." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_enabletouchkeyboardautoinvokeindesktopmode", + "displayName": "Enable Touch Keyboard Auto Invoke In Desktop Mode", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_enabletouchkeyboardautoinvokeindesktopmode_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_textinput_enabletouchkeyboardautoinvokeindesktopmode_1", + "displayName": "Enabled", + "description": "Enabled." + }, + { + "id": "device_vendor_msft_policy_config_textinput_enabletouchkeyboardautoinvokeindesktopmode_2", + "displayName": "Always.", + "description": "Always." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptjis0208", + "displayName": "Exclude Japanese IME Except JIS0208", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptjis0208_0", + "displayName": "No characters are filtered.", + "description": "No characters are filtered." + }, + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptjis0208_1", + "displayName": "All characters except JIS0208 are filtered.", + "description": "All characters except JIS0208 are filtered." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptjis0208andeudc", + "displayName": "Exclude Japanese IME Except JIS0208and EUDC", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptjis0208andeudc_0", + "displayName": "No characters are filtered.", + "description": "No characters are filtered." + }, + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptjis0208andeudc_1", + "displayName": "All characters except JIS0208 and EUDC are filtered.", + "description": "All characters except JIS0208 and EUDC are filtered." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptshiftjis", + "displayName": "Exclude Japanese IME Except Shift JIS", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptshiftjis_0", + "displayName": "No characters are filtered.", + "description": "No characters are filtered." + }, + { + "id": "device_vendor_msft_policy_config_textinput_excludejapaneseimeexceptshiftjis_1", + "displayName": "All characters except ShiftJIS are filtered.", + "description": "All characters except ShiftJIS are filtered." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_forcetouchkeyboarddockedstate", + "displayName": "Force Touch Keyboard Docked State", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_forcetouchkeyboarddockedstate_0", + "displayName": "The OS determines when it's most appropriate to be available.", + "description": "The OS determines when it's most appropriate to be available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_forcetouchkeyboarddockedstate_1", + "displayName": "Touch keyboard is always docked.", + "description": "Touch keyboard is always docked." + }, + { + "id": "device_vendor_msft_policy_config_textinput_forcetouchkeyboarddockedstate_2", + "displayName": "Touch keyboard docking can be changed.", + "description": "Touch keyboard docking can be changed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboarddictationbuttonavailability", + "displayName": "Touch Keyboard Dictation Button Availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboarddictationbuttonavailability_0", + "displayName": "The OS determines when it's most appropriate to be available.", + "description": "The OS determines when it's most appropriate to be available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboarddictationbuttonavailability_1", + "displayName": "Dictation button on the keyboard is always available.", + "description": "Dictation button on the keyboard is always available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboarddictationbuttonavailability_2", + "displayName": "Dictation button on the keyboard is always disabled.", + "description": "Dictation button on the keyboard is always disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardemojibuttonavailability", + "displayName": "Touch Keyboard Emoji Button Availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardemojibuttonavailability_0", + "displayName": "The OS determines when it's most appropriate to be available.", + "description": "The OS determines when it's most appropriate to be available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardemojibuttonavailability_1", + "displayName": "Emoji button on keyboard is always available.", + "description": "Emoji button on keyboard is always available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardemojibuttonavailability_2", + "displayName": "Emoji button on keyboard is always disabled.", + "description": "Emoji button on keyboard is always disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardfullmodeavailability", + "displayName": "Touch Keyboard Full Mode Availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardfullmodeavailability_0", + "displayName": "The OS determines when it's most appropriate to be available.", + "description": "The OS determines when it's most appropriate to be available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardfullmodeavailability_1", + "displayName": "Full keyboard is always available.", + "description": "Full keyboard is always available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardfullmodeavailability_2", + "displayName": "Full keyboard is always disabled.", + "description": "Full keyboard is always disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardhandwritingmodeavailability", + "displayName": "Touch Keyboard Handwriting Mode Availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardhandwritingmodeavailability_0", + "displayName": "The OS determines when it's most appropriate to be available.", + "description": "The OS determines when it's most appropriate to be available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardhandwritingmodeavailability_1", + "displayName": "Handwriting input panel is always available.", + "description": "Handwriting input panel is always available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardhandwritingmodeavailability_2", + "displayName": "Handwriting input panel is always disabled.", + "description": "Handwriting input panel is always disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardnarrowmodeavailability", + "displayName": "Touch Keyboard Narrow Mode Availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardnarrowmodeavailability_0", + "displayName": "The OS determines when it's most appropriate to be available.", + "description": "The OS determines when it's most appropriate to be available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardnarrowmodeavailability_1", + "displayName": "Narrow keyboard is always available.", + "description": "Narrow keyboard is always available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardnarrowmodeavailability_2", + "displayName": "Narrow keyboard is always disabled.", + "description": "Narrow keyboard is always disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardsplitmodeavailability", + "displayName": "Touch Keyboard Split Mode Availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardsplitmodeavailability_0", + "displayName": "The OS determines when it's most appropriate to be available.", + "description": "The OS determines when it's most appropriate to be available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardsplitmodeavailability_1", + "displayName": "Split keyboard is always available.", + "description": "Split keyboard is always available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardsplitmodeavailability_2", + "displayName": "Split keyboard is always disabled.", + "description": "Split keyboard is always disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardwidemodeavailability", + "displayName": "Touch Keyboard Wide Mode Availability", + "options": [ + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardwidemodeavailability_0", + "displayName": "The OS determines when it's most appropriate to be available.", + "description": "The OS determines when it's most appropriate to be available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardwidemodeavailability_1", + "displayName": "Wide keyboard is always available.", + "description": "Wide keyboard is always available." + }, + { + "id": "device_vendor_msft_policy_config_textinput_touchkeyboardwidemodeavailability_2", + "displayName": "Wide keyboard is always disabled.", + "description": "Wide keyboard is always disabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_allowset24hourclock", + "displayName": "Allow Set24 Hour Clock", + "options": [ + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_allowset24hourclock_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_allowset24hourclock_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_blockcleanupofunusedpreinstalledlangpacks", + "displayName": "Block Cleanup Of Unused Preinstalled Lang Packs", + "options": [ + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_blockcleanupofunusedpreinstalledlangpacks_0", + "displayName": "Block", + "description": "Not blocked." + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_blockcleanupofunusedpreinstalledlangpacks_1", + "displayName": "Allow", + "description": "Blocked." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_configuretimezone", + "displayName": "Configure Time Zone", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_machineuilanguageoverwrite", + "displayName": "Machine UI Language Overwrite", + "options": [ + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_machineuilanguageoverwrite_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_machineuilanguageoverwrite_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_restrictlanguagepacksandfeaturesinstall", + "displayName": "Restrict Language Packs And Features Install", + "options": [ + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_restrictlanguagepacksandfeaturesinstall_0", + "displayName": "Disabled", + "description": "Not restricted." + }, + { + "id": "device_vendor_msft_policy_config_timelanguagesettings_restrictlanguagepacksandfeaturesinstall_1", + "displayName": "Enabled", + "description": "Restricted." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_troubleshooting_allowrecommendations", + "displayName": "Allow Recommendations", + "options": [ + { + "id": "device_vendor_msft_policy_config_troubleshooting_allowrecommendations_0", + "displayName": "Turn this feature off.", + "description": "Turn this feature off." + }, + { + "id": "device_vendor_msft_policy_config_troubleshooting_allowrecommendations_1", + "displayName": "Turn this feature off but still apply critical troubleshooting.", + "description": "Turn this feature off but still apply critical troubleshooting." + }, + { + "id": "device_vendor_msft_policy_config_troubleshooting_allowrecommendations_2", + "displayName": "Notify users when recommended troubleshooting is available, then allow the user to run or ignore it.", + "description": "Notify users when recommended troubleshooting is available, then allow the user to run or ignore it." + }, + { + "id": "device_vendor_msft_policy_config_troubleshooting_allowrecommendations_3", + "displayName": "Run recommended troubleshooting automatically and notify the user after it's been successfully run.", + "description": "Run recommended troubleshooting automatically and notify the user after it's been successfully run." + }, + { + "id": "device_vendor_msft_policy_config_troubleshooting_allowrecommendations_4", + "displayName": "Run recommended troubleshooting automatically without notifying the user.", + "description": "Run recommended troubleshooting automatically without notifying the user." + }, + { + "id": "device_vendor_msft_policy_config_troubleshooting_allowrecommendations_5", + "displayName": "Allow the user to choose their own recommended troubleshooting settings.", + "description": "Allow the user to choose their own recommended troubleshooting settings." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_activehoursend", + "displayName": "Active Hours End", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_activehoursmaxrange", + "displayName": "Active Hours Max Range", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_activehoursstart", + "displayName": "Active Hours Start", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_allowautoupdate", + "displayName": "Allow Auto Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_allowautoupdate_0", + "displayName": "Notify the user before downloading the update. This policy is used by the enterprise who wants to enable the end-users to manage data usage. With this option users are notified when there are updates that apply to the device and are ready for download. Users can download and install the updates from the Windows Update control panel.", + "description": "Notify the user before downloading the update. This policy is used by the enterprise who wants to enable the end-users to manage data usage. With this option users are notified when there are updates that apply to the device and are ready for download. Users can download and install the updates from the Windows Update control panel." + }, + { + "id": "device_vendor_msft_policy_config_update_allowautoupdate_1", + "displayName": "Auto install the update and then notify the user to schedule a device restart. Updates are downloaded automatically on non-metered networks and installed during \"Automatic Maintenance\" when the device is not in use and is not running on battery power. If automatic maintenance is unable to install updates for two days, Windows Update will install updates immediately. If the installation requires a restart, the end-user is prompted to schedule the restart time. The end-user has up to seven days to schedule the restart and after that, a restart of the device is forced. Enabling the end-user to control the start time reduces the risk of accidental data loss caused by applications that do not shutdown properly on restart.", + "description": "Auto install the update and then notify the user to schedule a device restart. Updates are downloaded automatically on non-metered networks and installed during \"Automatic Maintenance\" when the device is not in use and is not running on battery power. If automatic maintenance is unable to install updates for two days, Windows Update will install updates immediately. If the installation requires a restart, the end-user is prompted to schedule the restart time. The end-user has up to seven days to schedule the restart and after that, a restart of the device is forced. Enabling the end-user to control the start time reduces the risk of accidental data loss caused by applications that do not shutdown properly on restart." + }, + { + "id": "device_vendor_msft_policy_config_update_allowautoupdate_2", + "displayName": "Auto install and restart. Updates are downloaded automatically on non-metered networks and installed during \"Automatic Maintenance\" when the device is not in use and is not running on battery power. If automatic maintenance is unable to install updates for two days, Windows Update will install updates right away. If a restart is required, then the device is automatically restarted when the device is not actively being used. This is the default behavior for unmanaged devices. Devices are updated quickly, but it increases the risk of accidental data loss caused by an application that does not shutdown properly on restart.", + "description": "Auto install and restart. Updates are downloaded automatically on non-metered networks and installed during \"Automatic Maintenance\" when the device is not in use and is not running on battery power. If automatic maintenance is unable to install updates for two days, Windows Update will install updates right away. If a restart is required, then the device is automatically restarted when the device is not actively being used. This is the default behavior for unmanaged devices. Devices are updated quickly, but it increases the risk of accidental data loss caused by an application that does not shutdown properly on restart." + }, + { + "id": "device_vendor_msft_policy_config_update_allowautoupdate_3", + "displayName": "Auto install and restart at a specified time. The IT specifies the installation day and time. If no day and time are specified, the default is 3 AM daily. Automatic installation happens at this time and device restart happens after a 15-minute countdown. If the user is logged in when Windows is ready to restart, the user can interrupt the 15-minute countdown to delay the restart.", + "description": "Auto install and restart at a specified time. The IT specifies the installation day and time. If no day and time are specified, the default is 3 AM daily. Automatic installation happens at this time and device restart happens after a 15-minute countdown. If the user is logged in when Windows is ready to restart, the user can interrupt the 15-minute countdown to delay the restart." + }, + { + "id": "device_vendor_msft_policy_config_update_allowautoupdate_4", + "displayName": "Auto install and restart without end-user control. Updates are downloaded automatically on non-metered networks and installed during \"Automatic Maintenance\" when the device is not in use and is not running on battery power. If automatic maintenance is unable to install updates for two days, Windows Update will install updates right away. If a restart is required, then the device is automatically restarted when the device is not actively being used. This setting option also sets the end-user control panel to read-only.", + "description": "Auto install and restart without end-user control. Updates are downloaded automatically on non-metered networks and installed during \"Automatic Maintenance\" when the device is not in use and is not running on battery power. If automatic maintenance is unable to install updates for two days, Windows Update will install updates right away. If a restart is required, then the device is automatically restarted when the device is not actively being used. This setting option also sets the end-user control panel to read-only." + }, + { + "id": "device_vendor_msft_policy_config_update_allowautoupdate_5", + "displayName": "Turn off automatic updates.", + "description": "Turn off automatic updates." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_allowautowindowsupdatedownloadovermeterednetwork", + "displayName": "Allow Auto Windows Update Download Over Metered Network", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_allowautowindowsupdatedownloadovermeterednetwork_0", + "displayName": "Not allowed", + "description": "Not allowed" + }, + { + "id": "device_vendor_msft_policy_config_update_allowautowindowsupdatedownloadovermeterednetwork_1", + "displayName": "Allowed", + "description": "Allowed" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_allowmuupdateservice", + "displayName": "Allow MU Update Service", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_allowmuupdateservice_0", + "displayName": "Not allowed or not configured.", + "description": "Not allowed or not configured." + }, + { + "id": "device_vendor_msft_policy_config_update_allowmuupdateservice_1", + "displayName": "Allowed. Accepts updates received through Microsoft Update.", + "description": "Allowed. Accepts updates received through Microsoft Update." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_allownonmicrosoftsignedupdate", + "displayName": "Allow Non Microsoft Signed Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_allownonmicrosoftsignedupdate_0", + "displayName": "Block", + "description": "Not allowed or not configured. Updates from an intranet Microsoft update service location must be signed by Microsoft." + }, + { + "id": "device_vendor_msft_policy_config_update_allownonmicrosoftsignedupdate_1", + "displayName": "Allow", + "description": "Allowed. Accepts updates received through an intranet Microsoft update service location, if they are signed by a certificate found in the 'Trusted Publishers' certificate store of the local computer." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_allowoptionalcontent", + "displayName": "Allow Optional Content", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_allowoptionalcontent_0", + "displayName": "Don't receive optional updates", + "description": "Don't receive optional updates" + }, + { + "id": "device_vendor_msft_policy_config_update_allowoptionalcontent_1", + "displayName": "Automatically receive optional updates (including CFRs)", + "description": "Automatically receive optional updates (including CFRs)" + }, + { + "id": "device_vendor_msft_policy_config_update_allowoptionalcontent_2", + "displayName": "Automatically receive optional updates", + "description": "Automatically receive optional updates" + }, + { + "id": "device_vendor_msft_policy_config_update_allowoptionalcontent_3", + "displayName": "Users can select which optional updates to receive", + "description": "Users can select which optional updates to receive" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_allowtemporaryenterprisefeaturecontrol", + "displayName": "Allow Temporary Enterprise Feature Control", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_allowtemporaryenterprisefeaturecontrol_0", + "displayName": "Not allowed", + "description": "Not allowed" + }, + { + "id": "device_vendor_msft_policy_config_update_allowtemporaryenterprisefeaturecontrol_1", + "displayName": "Allowed", + "description": "Allowed" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_allowupdateservice", + "displayName": "Allow Update Service", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_allowupdateservice_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_update_allowupdateservice_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_automaticmaintenancewakeup", + "displayName": "Automatic Maintenance Wake Up", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_automaticmaintenancewakeup_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_update_automaticmaintenancewakeup_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartdeadlineperiodindays", + "displayName": "Auto Restart Deadline Period In Days", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartdeadlineperiodindaysforfeatureupdates", + "displayName": "Auto Restart Deadline Period In Days For Feature Updates", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartnotificationschedule", + "displayName": "[Deprecated] Auto Restart Notification Schedule", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartnotificationschedule_v2", + "displayName": "Auto Restart Notification Schedule", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_autorestartnotificationschedule_15", + "displayName": "15 Minutes", + "description": "15 Minutes" + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartnotificationschedule_30", + "displayName": "30 Minutes", + "description": "30 Minutes" + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartnotificationschedule_60", + "displayName": "60 Minutes", + "description": "60 Minutes" + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartnotificationschedule_120", + "displayName": "120 Minutes", + "description": "120 Minutes" + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartnotificationschedule_240", + "displayName": "240 Minutes", + "description": "240 Minutes" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartrequirednotificationdismissal", + "displayName": "Auto Restart Required Notification Dismissal", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_autorestartrequirednotificationdismissal_1", + "displayName": "Auto Dismissal.", + "description": "Auto Dismissal." + }, + { + "id": "device_vendor_msft_policy_config_update_autorestartrequirednotificationdismissal_2", + "displayName": "User Dismissal.", + "description": "User Dismissal." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_branchreadinesslevel", + "displayName": "Branch Readiness Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_branchreadinesslevel_2", + "displayName": "{0x2} - Windows Insider build - Fast (added in Windows 10, version 1709)", + "description": "{0x2} - Windows Insider build - Fast (added in Windows 10, version 1709)" + }, + { + "id": "device_vendor_msft_policy_config_update_branchreadinesslevel_4", + "displayName": "{0x4} - Windows Insider build - Slow (added in Windows 10, version 1709)", + "description": "{0x4} - Windows Insider build - Slow (added in Windows 10, version 1709)" + }, + { + "id": "device_vendor_msft_policy_config_update_branchreadinesslevel_8", + "displayName": "{0x8} - Release Windows Insider build (added in Windows 10, version 1709)", + "description": "{0x8} - Release Windows Insider build (added in Windows 10, version 1709)" + }, + { + "id": "device_vendor_msft_policy_config_update_branchreadinesslevel_16", + "displayName": "{0x10} - Semi-annual Channel (Targeted). Device gets all applicable feature updates from Semi-annual Channel (Targeted).", + "description": "{0x10} - Semi-annual Channel (Targeted). Device gets all applicable feature updates from Semi-annual Channel (Targeted)." + }, + { + "id": "device_vendor_msft_policy_config_update_branchreadinesslevel_32", + "displayName": "2 {0x20} - Semi-annual Channel. Device gets feature updates from Semi-annual Channel. (*Only applicable to releases prior to 1903, for all releases 1903 and after the Semi-annual Channel and Semi-annual Channel (Targeted) into a single Semi-annual Channel with a value of 16)", + "description": "2 {0x20} - Semi-annual Channel. Device gets feature updates from Semi-annual Channel. (*Only applicable to releases prior to 1903, for all releases 1903 and after the Semi-annual Channel and Semi-annual Channel (Targeted) into a single Semi-annual Channel with a value of 16)" + }, + { + "id": "device_vendor_msft_policy_config_update_branchreadinesslevel_64", + "displayName": "{0x40} - Release Preview of Quality Updates Only.", + "description": "{0x40} - Release Preview of Quality Updates Only." + }, + { + "id": "device_vendor_msft_policy_config_update_branchreadinesslevel_128", + "displayName": "{0x80} - Canary Channel.", + "description": "{0x80} - Canary Channel." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlineforfeatureupdates", + "displayName": "Configure Deadline For Feature Updates", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlineforqualityupdates", + "displayName": "Quality Update Deadline Period (Days)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinegraceperiod", + "displayName": "Configure Deadline Grace Period", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinegraceperiodforfeatureupdates", + "displayName": "Configure Deadline Grace Period For Feature Updates", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautoreboot", + "displayName": "Configure Deadline No Auto Reboot", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautoreboot_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautoreboot_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautorebootforfeatureupdates", + "displayName": "Configure Deadline No Auto Reboot For Feature Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautorebootforfeatureupdates_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautorebootforfeatureupdates_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautorebootforqualityupdates", + "displayName": "Configure Deadline No Auto Reboot For Quality Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautorebootforqualityupdates_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_update_configuredeadlinenoautorebootforqualityupdates_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_configurefeatureupdateuninstallperiod", + "displayName": "Configure Feature Update Uninstall Period", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_deferfeatureupdatesperiodindays", + "displayName": "Defer Feature Updates Period In Days", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_deferqualityupdatesperiodindays", + "displayName": "Defer Quality Updates Period (Days)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_deferupdateperiod", + "displayName": "Defer Update Period", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_deferupgradeperiod", + "displayName": "Defer Upgrade Period", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_detectionfrequency", + "displayName": "Detection Frequency", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_disabledualscan", + "displayName": "Disable Dual Scan", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_disabledualscan_0", + "displayName": "allow scan against Windows Update", + "description": "allow scan against Windows Update" + }, + { + "id": "device_vendor_msft_policy_config_update_disabledualscan_1", + "displayName": "do not allow update deferral policies to cause scans against Windows Update", + "description": "do not allow update deferral policies to cause scans against Windows Update" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_disablewufbsafeguards_v2", + "displayName": "Disable WUfB Safeguards", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_disablewufbsafeguards_0", + "displayName": "Safeguards are enabled and devices may be blocked for upgrades until the safeguard is cleared.", + "description": "Safeguards are enabled and devices may be blocked for upgrades until the safeguard is cleared." + }, + { + "id": "device_vendor_msft_policy_config_update_disablewufbsafeguards_1", + "displayName": "Safeguards are not enabled and upgrades will be deployed without blocking on safeguards.", + "description": "Safeguards are not enabled and upgrades will be deployed without blocking on safeguards." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_donotenforceenterprisetlscertpinningforupdatedetection", + "displayName": "Do Not Enforce Enterprise TLS Cert Pinning For Update Detection", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_donotenforceenterprisetlscertpinningforupdatedetection_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_update_donotenforceenterprisetlscertpinningforupdatedetection_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_engagedrestartdeadline", + "displayName": "Engaged Restart Deadline", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_engagedrestartdeadlineforfeatureupdates", + "displayName": "Engaged Restart Deadline For Feature Updates", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_engagedrestartsnoozeschedule", + "displayName": "Engaged Restart Snooze Schedule", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_engagedrestartsnoozescheduleforfeatureupdates", + "displayName": "Engaged Restart Snooze Schedule For Feature Updates", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_engagedrestarttransitionschedule", + "displayName": "Engaged Restart Transition Schedule", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_engagedrestarttransitionscheduleforfeatureupdates", + "displayName": "Engaged Restart Transition Schedule For Feature Updates", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_excludewudriversinqualityupdate", + "displayName": "Exclude WU Drivers In Quality Update", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_excludewudriversinqualityupdate_0", + "displayName": "Allow Windows Update drivers.", + "description": "Allow Windows Update drivers." + }, + { + "id": "device_vendor_msft_policy_config_update_excludewudriversinqualityupdate_1", + "displayName": "Exclude Windows Update drivers.", + "description": "Exclude Windows Update drivers." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_fillemptycontenturls", + "displayName": "Fill Empty Content Urls", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_fillemptycontenturls_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_update_fillemptycontenturls_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_ignoremoappdownloadlimit", + "displayName": "Ignore MO App Download Limit", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_ignoremoappdownloadlimit_0", + "displayName": "Disabled", + "description": "Do not ignore MO download limit for apps and their updates." + }, + { + "id": "device_vendor_msft_policy_config_update_ignoremoappdownloadlimit_1", + "displayName": "Enabled", + "description": "Ignore MO download limit (allow unlimited downloading) for apps and their updates." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_ignoremoupdatedownloadlimit", + "displayName": "Ignore MO Update Download Limit", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_ignoremoupdatedownloadlimit_0", + "displayName": "Disabled", + "description": "Do not ignore MO download limit for OS updates." + }, + { + "id": "device_vendor_msft_policy_config_update_ignoremoupdatedownloadlimit_1", + "displayName": "Enabled", + "description": "Ignore MO download limit (allow unlimited downloading) for OS updates." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_managepreviewbuilds", + "displayName": "Manage Preview Builds", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_managepreviewbuilds_0", + "displayName": "Disable Preview builds", + "description": "Disable Preview builds" + }, + { + "id": "device_vendor_msft_policy_config_update_managepreviewbuilds_1", + "displayName": "Disable Preview builds once the next release is public", + "description": "Disable Preview builds once the next release is public" + }, + { + "id": "device_vendor_msft_policy_config_update_managepreviewbuilds_2", + "displayName": "Enable Preview builds", + "description": "Enable Preview builds" + }, + { + "id": "device_vendor_msft_policy_config_update_managepreviewbuilds_3", + "displayName": "Preview builds is left to user selection", + "description": "Preview builds is left to user selection" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_noupdatenotificationsduringactivehours", + "displayName": "No Update Notifications During Active Hours", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_noupdatenotificationsduringactivehours_0", + "displayName": "Disabled.", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_update_noupdatenotificationsduringactivehours_1", + "displayName": "Enabled.", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_pausedeferrals", + "displayName": "Pause Deferrals", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_pausedeferrals_0", + "displayName": "Deferrals are not paused.", + "description": "Deferrals are not paused." + }, + { + "id": "device_vendor_msft_policy_config_update_pausedeferrals_1", + "displayName": "Deferrals are paused.", + "description": "Deferrals are paused." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_pausefeatureupdates", + "displayName": "Pause Feature Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_pausefeatureupdates_0", + "displayName": "Feature Updates are not paused.", + "description": "Feature Updates are not paused." + }, + { + "id": "device_vendor_msft_policy_config_update_pausefeatureupdates_1", + "displayName": "Feature Updates are paused for 60 days or until value set to back to 0, whichever is sooner.", + "description": "Feature Updates are paused for 60 days or until value set to back to 0, whichever is sooner." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_pausefeatureupdatesstarttime", + "displayName": "Pause Feature Updates Start Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_pausequalityupdates", + "displayName": "Pause Quality Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_pausequalityupdates_0", + "displayName": "Quality Updates are not paused.", + "description": "Quality Updates are not paused." + }, + { + "id": "device_vendor_msft_policy_config_update_pausequalityupdates_1", + "displayName": "Quality Updates are paused for 35 days or until value set back to 0, whichever is sooner.", + "description": "Quality Updates are paused for 35 days or until value set back to 0, whichever is sooner." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_pausequalityupdatesstarttime", + "displayName": "Pause Quality Updates Start Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_phoneupdaterestrictions", + "displayName": "Phone Update Restrictions", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_productversion", + "displayName": "Product Version", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_requiredeferupgrade", + "displayName": "Require Defer Upgrade", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_requiredeferupgrade_0", + "displayName": "User gets upgrades from Semi-Annual Channel (Targeted).", + "description": "User gets upgrades from Semi-Annual Channel (Targeted)." + }, + { + "id": "device_vendor_msft_policy_config_update_requiredeferupgrade_1", + "displayName": "User gets upgrades from Semi-Annual Channel.", + "description": "User gets upgrades from Semi-Annual Channel." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_requireupdateapproval", + "displayName": "Require Update Approval", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_requireupdateapproval_0", + "displayName": "Not configured. The device installs all applicable updates.", + "description": "Not configured. The device installs all applicable updates." + }, + { + "id": "device_vendor_msft_policy_config_update_requireupdateapproval_1", + "displayName": "The device only installs updates that are both applicable and on the Approved Updates list. Set this policy to 1 if IT wants to control the deployment of updates on devices, such as when testing is required prior to deployment.", + "description": "The device only installs updates that are both applicable and on the Approved Updates list. Set this policy to 1 if IT wants to control the deployment of updates on devices, such as when testing is required prior to deployment." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday", + "displayName": "Scheduled Install Day", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday_0", + "displayName": "Every day", + "description": "Every day" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday_1", + "displayName": "Sunday", + "description": "Sunday" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday_2", + "displayName": "Monday", + "description": "Monday" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday_3", + "displayName": "Tuesday", + "description": "Tuesday" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday_4", + "displayName": "Wednesday", + "description": "Wednesday" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday_5", + "displayName": "Thursday", + "description": "Thursday" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday_6", + "displayName": "Friday", + "description": "Friday" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallday_7", + "displayName": "Saturday", + "description": "Saturday" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstalleveryweek", + "displayName": "Scheduled Install Every Week", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_scheduledinstalleveryweek_0", + "displayName": "no update in the schedule", + "description": "no update in the schedule" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstalleveryweek_1", + "displayName": "update is scheduled every week", + "description": "update is scheduled every week" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallfirstweek", + "displayName": "Scheduled Install First Week", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallfirstweek_0", + "displayName": "no update in the schedule", + "description": "no update in the schedule" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallfirstweek_1", + "displayName": "update is scheduled every first week of the month", + "description": "update is scheduled every first week of the month" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallfourthweek", + "displayName": "Scheduled Install Fourth Week", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallfourthweek_0", + "displayName": "no update in the schedule", + "description": "no update in the schedule" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallfourthweek_1", + "displayName": "update is scheduled every fourth week of the month", + "description": "update is scheduled every fourth week of the month" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallsecondweek", + "displayName": "Scheduled Install Second Week", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallsecondweek_0", + "displayName": "no update in the schedule", + "description": "no update in the schedule" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallsecondweek_1", + "displayName": "update is scheduled every second week of the month", + "description": "update is scheduled every second week of the month" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallthirdweek", + "displayName": "Scheduled Install Third Week", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallthirdweek_0", + "displayName": "no update in the schedule", + "description": "no update in the schedule" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstallthirdweek_1", + "displayName": "update is scheduled every third week of the month", + "description": "update is scheduled every third week of the month" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_scheduledinstalltime", + "displayName": "Scheduled Install Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_scheduleimminentrestartwarning", + "displayName": "[Deprecated] Schedule Imminent Restart Warning", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_scheduleimminentrestartwarning_v2", + "displayName": "Schedule Imminent Restart Warning", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_scheduleimminentrestartwarning_15", + "displayName": "15 Minutes", + "description": "15 Minutes" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduleimminentrestartwarning_30", + "displayName": "30 Minutes", + "description": "30 Minutes" + }, + { + "id": "device_vendor_msft_policy_config_update_scheduleimminentrestartwarning_60", + "displayName": "60 Minutes", + "description": "60 Minutes" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_schedulerestartwarning", + "displayName": "Schedule Restart Warning", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_schedulerestartwarning_2", + "displayName": "2 Hours", + "description": "2 Hours" + }, + { + "id": "device_vendor_msft_policy_config_update_schedulerestartwarning_4", + "displayName": "4 Hours", + "description": "4 Hours" + }, + { + "id": "device_vendor_msft_policy_config_update_schedulerestartwarning_8", + "displayName": "8 Hours", + "description": "8 Hours" + }, + { + "id": "device_vendor_msft_policy_config_update_schedulerestartwarning_12", + "displayName": "12 Hours", + "description": "12 Hours" + }, + { + "id": "device_vendor_msft_policy_config_update_schedulerestartwarning_24", + "displayName": "24 Hours", + "description": "24 Hours" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setautorestartnotificationdisable", + "displayName": "Set Auto Restart Notification Disable", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setautorestartnotificationdisable_0", + "displayName": "Enabled", + "description": "Enabled" + }, + { + "id": "device_vendor_msft_policy_config_update_setautorestartnotificationdisable_1", + "displayName": "Disabled", + "description": "Disabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setdisablepauseuxaccess", + "displayName": "Block \"Pause Updates\" ability", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setdisablepauseuxaccess_1", + "displayName": "Block", + "description": "Enable" + }, + { + "id": "device_vendor_msft_policy_config_update_setdisablepauseuxaccess_0", + "displayName": "Allow", + "description": "Disable" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setdisableuxwuaccess", + "displayName": "Set Disable UXWU Access", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setdisableuxwuaccess_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_update_setdisableuxwuaccess_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setedurestart", + "displayName": "Set EDU Restart", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setedurestart_0", + "displayName": "not configured", + "description": "not configured" + }, + { + "id": "device_vendor_msft_policy_config_update_setedurestart_1", + "displayName": "configured", + "description": "configured" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourcefordriverupdates", + "displayName": "Set Policy Driven Update Source For Driver Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourcefordriverupdates_0", + "displayName": "Detect, download and deploy Driver Updates from Windows Update", + "description": "Detect, download and deploy Driver Updates from Windows Update" + }, + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourcefordriverupdates_1", + "displayName": "Detect, download and deploy Driver Updates from Windows Server Update Services (WSUS)", + "description": "Detect, download and deploy Driver Updates from Windows Server Update Services (WSUS)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforfeatureupdates", + "displayName": "Set Policy Driven Update Source For Feature Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforfeatureupdates_0", + "displayName": "Detect, download and deploy Feature Updates from Windows Update", + "description": "Detect, download and deploy Feature Updates from Windows Update" + }, + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforfeatureupdates_1", + "displayName": "Detect, download and deploy Feature Updates from Windows Server Update Services (WSUS)", + "description": "Detect, download and deploy Feature Updates from Windows Server Update Services (WSUS)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforotherupdates", + "displayName": "Set Policy Driven Update Source For Other Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforotherupdates_0", + "displayName": "Detect, download and deploy other Updates from Windows Update", + "description": "Detect, download and deploy other Updates from Windows Update" + }, + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforotherupdates_1", + "displayName": "Detect, download and deploy other Updates from Windows Server Update Services (WSUS)", + "description": "Detect, download and deploy other Updates from Windows Server Update Services (WSUS)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforqualityupdates", + "displayName": "Set Policy Driven Update Source For Quality Updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforqualityupdates_0", + "displayName": "Detect, download and deploy Quality Updates from Windows Update", + "description": "Detect, download and deploy Quality Updates from Windows Update" + }, + { + "id": "device_vendor_msft_policy_config_update_setpolicydrivenupdatesourceforqualityupdates_1", + "displayName": "Detect, download and deploy Quality Updates from Windows Server Update Services (WSUS)", + "description": "Detect, download and deploy Quality Updates from Windows Server Update Services (WSUS)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_setproxybehaviorforupdatedetection", + "displayName": "Set Proxy Behavior For Update Detection", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_setproxybehaviorforupdatedetection_0", + "displayName": "Only use system proxy for detecting updates (default)", + "description": "Only use system proxy for detecting updates (default)" + }, + { + "id": "device_vendor_msft_policy_config_update_setproxybehaviorforupdatedetection_1", + "displayName": "Allow user proxy to be used as a fallback if detection using system proxy fails", + "description": "Allow user proxy to be used as a fallback if detection using system proxy fails" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_targetreleaseversion", + "displayName": "Target Release Version", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_updatenotificationlevel", + "displayName": "Update Notification Level", + "options": [ + { + "id": "device_vendor_msft_policy_config_update_updatenotificationlevel_0", + "displayName": "Use the default Windows Update notifications", + "description": "Use the default Windows Update notifications" + }, + { + "id": "device_vendor_msft_policy_config_update_updatenotificationlevel_1", + "displayName": "Turn off all notifications, excluding restart warnings", + "description": "Turn off all notifications, excluding restart warnings" + }, + { + "id": "device_vendor_msft_policy_config_update_updatenotificationlevel_2", + "displayName": "Turn off all notifications, including restart warnings", + "description": "Turn off all notifications, including restart warnings" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update_updateserviceurl", + "displayName": "Update Service Url", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update_updateserviceurlalternate", + "displayName": "Update Service Url Alternate", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultallowinstallation", + "displayName": "Allow installation default", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultallowinstallation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultallowinstallation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultupdatepolicy", + "displayName": "Update policy override default", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultupdatepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultupdatepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultupdatepolicy_part_updatepolicy", + "displayName": "Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultupdatepolicy_part_updatepolicy_1", + "displayName": "Always allow updates (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultupdatepolicy_part_updatepolicy_2", + "displayName": "Manual updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultupdatepolicy_part_updatepolicy_3", + "displayName": "Automatic silent updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications_pol_defaultupdatepolicy_part_updatepolicy_0", + "displayName": "Updates disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge", + "displayName": "Update policy override", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_part_updatepolicy", + "displayName": "Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_part_updatepolicy_1", + "displayName": "Always allow updates (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_part_updatepolicy_2", + "displayName": "Manual updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_part_updatepolicy_3", + "displayName": "Automatic silent updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedge_pol_updatepolicymicrosoftedge_part_updatepolicy_0", + "displayName": "Updates disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_updatepolicymicrosoftedgebeta", + "displayName": "Update policy override", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_updatepolicymicrosoftedgebeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_updatepolicymicrosoftedgebeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_updatepolicymicrosoftedgebeta_part_updatepolicy", + "displayName": "Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_updatepolicymicrosoftedgebeta_part_updatepolicy_1", + "displayName": "Always allow updates (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_updatepolicymicrosoftedgebeta_part_updatepolicy_2", + "displayName": "Manual updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_updatepolicymicrosoftedgebeta_part_updatepolicy_3", + "displayName": "Automatic silent updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgebeta_pol_updatepolicymicrosoftedgebeta_part_updatepolicy_0", + "displayName": "Updates disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_updatepolicymicrosoftedgecanary", + "displayName": "Update policy override", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_updatepolicymicrosoftedgecanary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_updatepolicymicrosoftedgecanary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_updatepolicymicrosoftedgecanary_part_updatepolicy", + "displayName": "Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_updatepolicymicrosoftedgecanary_part_updatepolicy_1", + "displayName": "Always allow updates (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_updatepolicymicrosoftedgecanary_part_updatepolicy_2", + "displayName": "Manual updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_updatepolicymicrosoftedgecanary_part_updatepolicy_3", + "displayName": "Automatic silent updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgecanary_pol_updatepolicymicrosoftedgecanary_part_updatepolicy_0", + "displayName": "Updates disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_updatepolicymicrosoftedgedev", + "displayName": "Update policy override", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_updatepolicymicrosoftedgedev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_updatepolicymicrosoftedgedev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_updatepolicymicrosoftedgedev_part_updatepolicy", + "displayName": "Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_updatepolicymicrosoftedgedev_part_updatepolicy_1", + "displayName": "Always allow updates (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_updatepolicymicrosoftedgedev_part_updatepolicy_2", + "displayName": "Manual updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_updatepolicymicrosoftedgedev_part_updatepolicy_3", + "displayName": "Automatic silent updates only", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_applications~cat_microsoftedgedev_pol_updatepolicymicrosoftedgedev_part_updatepolicy_0", + "displayName": "Updates disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_autoupdatecheckperiod", + "displayName": "Auto-update check period override", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_autoupdatecheckperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_autoupdatecheckperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_autoupdatecheckperiod_part_autoupdatecheckperiod", + "displayName": "Minutes between update checks (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_updatechecksuppressedperiod", + "displayName": "Time period in each day to suppress auto-update check", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_updatechecksuppressedperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_updatechecksuppressedperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_updatechecksuppressedperiod_part_updatechecksuppresseddurationmin", + "displayName": "Duration (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_updatechecksuppressedperiod_part_updatechecksuppressedstarthour", + "displayName": "Hour (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_preferences_pol_updatechecksuppressedperiod_part_updatechecksuppressedstartmin", + "displayName": "Minute (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode", + "displayName": "Choose how to specify proxy server settings", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode_part_proxymode", + "displayName": "Choose how to specify proxy server settings (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode_part_proxymode_direct", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode_part_proxymode_auto_detect", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode_part_proxymode_pac_script", + "displayName": "Use a .pac proxy script", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode_part_proxymode_fixed_servers", + "displayName": "Use fixed proxy servers", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxymode_part_proxymode_system", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxypacurl", + "displayName": "URL to a proxy .pac file", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxypacurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxypacurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxypacurl_part_proxypacurl", + "displayName": "URL to a proxy .pac file (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxyserver", + "displayName": "Address or URL of proxy server", + "options": [ + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxyserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxyserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_update~policy~cat_google~cat_googleupdate~cat_proxyserver_pol_proxyserver_part_proxyserver", + "displayName": "Address or URL of proxy server (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications_pol_defaultallowinstallation", + "displayName": "Allow installation default", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications_pol_defaultallowinstallation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications_pol_defaultallowinstallation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications_pol_defaultallowinstallation_part_installpolicy", + "displayName": "Install Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications_pol_defaultallowinstallation_part_installpolicy_1", + "displayName": "Always allow Installs (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications_pol_defaultallowinstallation_part_installpolicy_0", + "displayName": "Installs disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_part_installpolicy", + "displayName": "Install Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_part_installpolicy_1", + "displayName": "Always allow Installs (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_part_installpolicy_0", + "displayName": "Installs disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_part_installpolicy_5", + "displayName": "Force Installs (Machine-Wide)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_part_installpolicy_4", + "displayName": "Always allow Machine-Wide Installs, but not Per-User Installs", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_allowinstallationmicrosoftedge_part_installpolicy_6", + "displayName": "Force Installs (Per-User)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_part_installpolicy", + "displayName": "Install Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_part_installpolicy_1", + "displayName": "Always allow Installs (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_part_installpolicy_0", + "displayName": "Installs disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_part_installpolicy_5", + "displayName": "Force Installs (Machine-Wide)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_part_installpolicy_4", + "displayName": "Always allow Machine-Wide Installs, but not Per-User Installs", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_allowinstallationmicrosoftedgebeta_part_installpolicy_6", + "displayName": "Force Installs (Per-User)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary_part_installpolicy", + "displayName": "Install Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary_part_installpolicy_1", + "displayName": "Always allow Installs (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary_part_installpolicy_0", + "displayName": "Installs disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_allowinstallationmicrosoftedgecanary_part_installpolicy_6", + "displayName": "Force Installs (Per-User)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_part_installpolicy", + "displayName": "Install Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_part_installpolicy_1", + "displayName": "Always allow Installs (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_part_installpolicy_0", + "displayName": "Installs disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_part_installpolicy_5", + "displayName": "Force Installs (Machine-Wide)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_part_installpolicy_4", + "displayName": "Always allow Machine-Wide Installs, but not Per-User Installs", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updateupdates.1~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_allowinstallationmicrosoftedgedev_part_installpolicy_6", + "displayName": "Force Installs (Per-User)", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultmeteredupdates", + "displayName": "Let users update all apps on metered connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultmeteredupdates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultmeteredupdates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultmeteredupdates_part_defaultmeteredupdatespolicy", + "displayName": "Default Metered Updates policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultmeteredupdates_part_defaultmeteredupdatespolicy_1", + "displayName": "Default Metered Updates Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultmeteredupdates_part_defaultmeteredupdatespolicy_2", + "displayName": "Default Metered Updates Allowed", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultremovedesktopshortcut", + "displayName": "Remove Desktop Shortcuts upon update default", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultremovedesktopshortcut_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultremovedesktopshortcut_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultremovedesktopshortcut_part_removedesktopshortcut", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultremovedesktopshortcut_part_removedesktopshortcut_1", + "displayName": "Force delete system-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultremovedesktopshortcut_part_removedesktopshortcut_2", + "displayName": "Force delete system-level and user-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications_pol_defaultremovedesktopshortcut_part_removedesktopshortcut_0", + "displayName": "Prevent Desktop Shortcut creation on install", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_edgepreviewmicrosoftedge", + "displayName": "Allow users in the Windows Insider Program to be enrolled in Edge Preview", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_edgepreviewmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_edgepreviewmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_meteredupdatesmicrosoftedge", + "displayName": "Let users update on metered connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_meteredupdatesmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_meteredupdatesmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_meteredupdatesmicrosoftedge_part_meteredupdatespolicy", + "displayName": "Metered Updates Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_meteredupdatesmicrosoftedge_part_meteredupdatespolicy_1", + "displayName": "Metered Disable updates", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_meteredupdatesmicrosoftedge_part_meteredupdatespolicy_2", + "displayName": "Metered Updates Allowed", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_removedesktopshortcutmicrosoftedge", + "displayName": "Remove Desktop Shortcuts upon update", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_removedesktopshortcutmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_removedesktopshortcutmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_removedesktopshortcutmicrosoftedge_part_removedesktopshortcut", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_removedesktopshortcutmicrosoftedge_part_removedesktopshortcut_1", + "displayName": "Force delete system-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_removedesktopshortcutmicrosoftedge_part_removedesktopshortcut_2", + "displayName": "Force delete system-level and user-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_removedesktopshortcutmicrosoftedge_part_removedesktopshortcut_0", + "displayName": "Prevent Desktop Shortcut creation on install", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_uninstalledgemicrosoftedge", + "displayName": "Specify uninstall behavior for Microsoft Edge", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_uninstalledgemicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_uninstalledgemicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_uninstalledgemicrosoftedge_part_uninstalledgepolicy", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_uninstalledgemicrosoftedge_part_uninstalledgepolicy_1", + "displayName": "Enabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_uninstalledgemicrosoftedge_part_uninstalledgepolicy_2", + "displayName": "Enabled and delete user data", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_uninstalledgemicrosoftedge_part_uninstalledgepolicy_3", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_uninstalledgemicrosoftedge_part_uninstalledgepolicy_0", + "displayName": "Not Configured", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_meteredupdatesmicrosoftedgebeta", + "displayName": "Let users update on metered connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_meteredupdatesmicrosoftedgebeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_meteredupdatesmicrosoftedgebeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_meteredupdatesmicrosoftedgebeta_part_meteredupdatespolicy", + "displayName": "Metered Updates Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_meteredupdatesmicrosoftedgebeta_part_meteredupdatespolicy_1", + "displayName": "Metered Disable updates", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_meteredupdatesmicrosoftedgebeta_part_meteredupdatespolicy_2", + "displayName": "Metered Updates Allowed", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_removedesktopshortcutmicrosoftedgebeta", + "displayName": "Remove Desktop Shortcuts upon update", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_removedesktopshortcutmicrosoftedgebeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_removedesktopshortcutmicrosoftedgebeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_removedesktopshortcutmicrosoftedgebeta_part_removedesktopshortcut", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_removedesktopshortcutmicrosoftedgebeta_part_removedesktopshortcut_1", + "displayName": "Force delete system-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_removedesktopshortcutmicrosoftedgebeta_part_removedesktopshortcut_2", + "displayName": "Force delete system-level and user-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_removedesktopshortcutmicrosoftedgebeta_part_removedesktopshortcut_0", + "displayName": "Prevent Desktop Shortcut creation on install", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_meteredupdatesmicrosoftedgecanary", + "displayName": "Let users update on metered connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_meteredupdatesmicrosoftedgecanary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_meteredupdatesmicrosoftedgecanary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_meteredupdatesmicrosoftedgecanary_part_meteredupdatespolicy", + "displayName": "Metered Updates Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_meteredupdatesmicrosoftedgecanary_part_meteredupdatespolicy_1", + "displayName": "Metered Disable updates", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_meteredupdatesmicrosoftedgecanary_part_meteredupdatespolicy_2", + "displayName": "Metered Updates Allowed", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_removedesktopshortcutmicrosoftedgecanary", + "displayName": "Remove Desktop Shortcuts upon update", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_removedesktopshortcutmicrosoftedgecanary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_removedesktopshortcutmicrosoftedgecanary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_removedesktopshortcutmicrosoftedgecanary_part_removedesktopshortcut", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_removedesktopshortcutmicrosoftedgecanary_part_removedesktopshortcut_1", + "displayName": "Force delete system-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_removedesktopshortcutmicrosoftedgecanary_part_removedesktopshortcut_2", + "displayName": "Force delete system-level and user-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_removedesktopshortcutmicrosoftedgecanary_part_removedesktopshortcut_0", + "displayName": "Prevent Desktop Shortcut creation on install", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_meteredupdatesmicrosoftedgedev", + "displayName": "Let users update on metered connections", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_meteredupdatesmicrosoftedgedev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_meteredupdatesmicrosoftedgedev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_meteredupdatesmicrosoftedgedev_part_meteredupdatespolicy", + "displayName": "Metered Updates Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_meteredupdatesmicrosoftedgedev_part_meteredupdatespolicy_1", + "displayName": "Metered Disable updates", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_meteredupdatesmicrosoftedgedev_part_meteredupdatespolicy_2", + "displayName": "Metered Updates Allowed", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_removedesktopshortcutmicrosoftedgedev", + "displayName": "Remove Desktop Shortcuts upon update", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_removedesktopshortcutmicrosoftedgedev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_removedesktopshortcutmicrosoftedgedev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_removedesktopshortcutmicrosoftedgedev_part_removedesktopshortcut", + "displayName": "", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_removedesktopshortcutmicrosoftedgedev_part_removedesktopshortcut_1", + "displayName": "Force delete system-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_removedesktopshortcutmicrosoftedgedev_part_removedesktopshortcut_2", + "displayName": "Force delete system-level and user-level Desktop Shortcuts", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev127~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_removedesktopshortcutmicrosoftedgedev_part_removedesktopshortcut_0", + "displayName": "Prevent Desktop Shortcut creation on install", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev78diff~policy~cat_google~cat_googleupdate~cat_applications_pol_allowsidebysideexperience", + "displayName": "Allow Microsoft Edge Side by Side browser experience", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev78diff~policy~cat_google~cat_googleupdate~cat_applications_pol_allowsidebysideexperience_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev78diff~policy~cat_google~cat_googleupdate~cat_applications_pol_allowsidebysideexperience_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications_pol_defaultcreatedesktopshortcut", + "displayName": "Prevent Desktop Shortcut creation upon install default", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications_pol_defaultcreatedesktopshortcut_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications_pol_defaultcreatedesktopshortcut_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_createdesktopshortcutmicrosoftedge", + "displayName": "Prevent Desktop Shortcut creation upon install", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_createdesktopshortcutmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_createdesktopshortcutmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_createdesktopshortcutmicrosoftedgebeta", + "displayName": "Prevent Desktop Shortcut creation upon install", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_createdesktopshortcutmicrosoftedgebeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_createdesktopshortcutmicrosoftedgebeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_createdesktopshortcutmicrosoftedgecanary", + "displayName": "Prevent Desktop Shortcut creation upon install", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_createdesktopshortcutmicrosoftedgecanary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_createdesktopshortcutmicrosoftedgecanary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_createdesktopshortcutmicrosoftedgedev", + "displayName": "Prevent Desktop Shortcut creation upon install", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_createdesktopshortcutmicrosoftedgedev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev83diff~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_createdesktopshortcutmicrosoftedgedev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_rollbacktotargetversionmicrosoftedge", + "displayName": "Rollback to Target version", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_rollbacktotargetversionmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_rollbacktotargetversionmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_rollbacktotargetversionmicrosoftedgebeta", + "displayName": "Rollback to Target version", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_rollbacktotargetversionmicrosoftedgebeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgebeta_pol_rollbacktotargetversionmicrosoftedgebeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_rollbacktotargetversionmicrosoftedgecanary", + "displayName": "Rollback to Target version", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_rollbacktotargetversionmicrosoftedgecanary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgecanary_pol_rollbacktotargetversionmicrosoftedgecanary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_rollbacktotargetversionmicrosoftedgedev", + "displayName": "Rollback to Target version", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_rollbacktotargetversionmicrosoftedgedev_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev86~policy~cat_edgeupdate~cat_applications~cat_microsoftedgedev_pol_rollbacktotargetversionmicrosoftedgedev_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_part_installpolicy", + "displayName": "Install Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_part_installpolicy_1", + "displayName": "Always allow Installs (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_part_installpolicy_0", + "displayName": "Installs disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_part_installpolicy_5", + "displayName": "Force Installs (Machine-Wide)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev87.updates.1~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_part_installpolicy_4", + "displayName": "Always allow Machine-Wide Installs, but not Per-User Installs", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview", + "displayName": "Allow installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_allowinstallationmicrosoftedgewebview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview", + "displayName": "Update policy override", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview_part_updatepolicy", + "displayName": "Update Policy (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview_part_updatepolicy_1", + "displayName": "Always allow updates (recommended)", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev87~policy~cat_edgeupdate~cat_webview_pol_updatepolicymicrosoftedgewebview_part_updatepolicy_0", + "displayName": "Updates disabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol", + "displayName": "Control updater's communication with the Experimentation and Configuration Service", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol_part_ecscontrol", + "displayName": "Control updater's communication with Experimentation and Configuration Service (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol_part_ecscontrol_0", + "displayName": "Disable communication with the Experimentation and Configuration Service", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev94~policy~cat_edgeupdate_pol_ecscontrol_part_ecscontrol_1", + "displayName": "Enable communication and download experiments", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge", + "displayName": "Target Channel override", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_part_targetchannel", + "displayName": "Target Channel (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_part_targetchannel_stable", + "displayName": "Stable", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_part_targetchannel_beta", + "displayName": "Beta", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_part_targetchannel_dev", + "displayName": "Dev", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_updatev95~policy~cat_edgeupdate~cat_applications~cat_microsoftedge_pol_targetchannelmicrosoftedge_part_targetchannel_extended", + "displayName": "Extended Stable", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_userrights_accesscredentialmanagerastrustedcaller", + "displayName": "Access Credential Manager As Trusted Caller", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_accessfromnetwork", + "displayName": "Access From Network", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_actaspartoftheoperatingsystem", + "displayName": "Act As Part Of The Operating System", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_allowlocallogon", + "displayName": "Allow Local Log On", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_backupfilesanddirectories", + "displayName": "Backup Files And Directories", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_bypasstraversechecking", + "displayName": "Bypass Traverse Checking", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_changesystemtime", + "displayName": "Change System Time", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_changetimezone", + "displayName": "Change Time Zone", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_createglobalobjects", + "displayName": "Create Global Objects", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_createpagefile", + "displayName": "Create Page File", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_createpermanentsharedobjects", + "displayName": "Create Permanent Shared Objects", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_createsymboliclinks", + "displayName": "Create Symbolic Links", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_createtoken", + "displayName": "Create Token", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_debugprograms", + "displayName": "Debug Programs", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_denyaccessfromnetwork", + "displayName": "Deny Access From Network", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_denylocallogon", + "displayName": "Deny Local Log On", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_denylogonasbatchjob", + "displayName": "Deny Log On As Batch Job", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_denyremotedesktopserviceslogon", + "displayName": "Deny Remote Desktop Services Log On", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_enabledelegation", + "displayName": "Enable Delegation", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_generatesecurityaudits", + "displayName": "Generate Security Audits", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_impersonateclient", + "displayName": "Impersonate Client", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_increaseprocessworkingset", + "displayName": "Increase Process Working Set", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_increaseschedulingpriority", + "displayName": "Increase Scheduling Priority", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_loadunloaddevicedrivers", + "displayName": "Load Unload Device Drivers", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_lockmemory", + "displayName": "Lock Memory", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_logonasbatchjob", + "displayName": "Log On As Batch Job", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_logonasservice", + "displayName": "Log On As Service", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_manageauditingandsecuritylog", + "displayName": "Manage Auditing And Security Log", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_managevolume", + "displayName": "Manage Volume", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_modifyfirmwareenvironment", + "displayName": "Modify Firmware Environment", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_modifyobjectlabel", + "displayName": "Modify Object Label", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_profilesingleprocess", + "displayName": "Profile Single Process", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_profilesystemperformance", + "displayName": "Profile System Performance", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_remoteshutdown", + "displayName": "Remote Shutdown", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_replaceprocessleveltoken", + "displayName": "Replace Process Level Token", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_restorefilesanddirectories", + "displayName": "Restore Files And Directories", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_shutdownthesystem", + "displayName": "Shut Down The System", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_userrights_takeownership", + "displayName": "Take Ownership", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_virtualizationbasedtechnology_hypervisorenforcedcodeintegrity", + "displayName": "Hypervisor Enforced Code Integrity", + "options": [ + { + "id": "device_vendor_msft_policy_config_virtualizationbasedtechnology_hypervisorenforcedcodeintegrity_0", + "displayName": "(Disabled) Turns off Hypervisor-Protected Code Integrity remotely if configured previously without UEFI Lock.", + "description": "(Disabled) Turns off Hypervisor-Protected Code Integrity remotely if configured previously without UEFI Lock." + }, + { + "id": "device_vendor_msft_policy_config_virtualizationbasedtechnology_hypervisorenforcedcodeintegrity_1", + "displayName": "(Enabled with UEFI lock) Turns on Hypervisor-Protected Code Integrity with UEFI lock.", + "description": "(Enabled with UEFI lock) Turns on Hypervisor-Protected Code Integrity with UEFI lock." + }, + { + "id": "device_vendor_msft_policy_config_virtualizationbasedtechnology_hypervisorenforcedcodeintegrity_2", + "displayName": "(Enabled without lock) Turns on Hypervisor-Protected Code Integrity without UEFI lock.", + "description": "(Enabled without lock) Turns on Hypervisor-Protected Code Integrity without UEFI lock." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_virtualizationbasedtechnology_requireuefimemoryattributestable", + "displayName": "Require UEFI Memory Attributes Table", + "options": [ + { + "id": "device_vendor_msft_policy_config_virtualizationbasedtechnology_requireuefimemoryattributestable_0", + "displayName": "Do not require UEFI Memory Attributes Table", + "description": "Do not require UEFI Memory Attributes Table" + }, + { + "id": "device_vendor_msft_policy_config_virtualizationbasedtechnology_requireuefimemoryattributestable_1", + "displayName": "Require UEFI Memory Attributes Table", + "description": "Require UEFI Memory Attributes Table" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1.updates~policy~visualstudio~privacysettings_intellicoderemoteanalysisdisabled", + "displayName": "Disable IntelliCode custom model training", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1.updates~policy~visualstudio~privacysettings_intellicoderemoteanalysisdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1.updates~policy~visualstudio~privacysettings_intellicoderemoteanalysisdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablefeedbackdialog", + "displayName": "Disable the send-a-smile feature", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablefeedbackdialog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablefeedbackdialog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablescreenshotcapture", + "displayName": "Disables send-a-smile's screenshot capability", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablescreenshotcapture_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablescreenshotcapture_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesenabled", + "displayName": "Enable administrator updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesenabled_administratorupdatesenableddropid", + "displayName": "Microsoft Update Channel", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesenabled_administratorupdatesenableddropid_1", + "displayName": "WSUS/SCCM", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesenabled_administratorupdatesenableddropid_2", + "displayName": "WSUS/SCCM and Microsoft Updates/Intune", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesoptout", + "displayName": "Opt out of administrator updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesoptout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_administratorupdatesoptout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_backgrounddownloaddisabled", + "displayName": "Disable downloading updates automatically", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_backgrounddownloaddisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_backgrounddownloaddisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_cachepath", + "displayName": "Package manifest and payload cache path", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_cachepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_cachepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_cachepath_cachepath_textbox", + "displayName": "Package Manifest and Payload Cache Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_disablerollback", + "displayName": "Disable the ability to rollback or undo a Visual Studio update", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_disablerollback_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_disablerollback_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_hideavailabletab", + "displayName": "Hide the Available tab shown in the Visual Studio Installer", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_hideavailabletab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_hideavailabletab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_keepdownloadedpayloads", + "displayName": "Keep package payloads after installation", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_keepdownloadedpayloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_keepdownloadedpayloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_removeoutofsupport", + "displayName": "Remove out-of-support components during updates", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_removeoutofsupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_removeoutofsupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_sharedinstallationpath", + "displayName": "Shared installation path", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_sharedinstallationpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_sharedinstallationpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_sharedinstallationpath_sharedinstallationpath_textbox", + "displayName": "Shared Installation Path (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_updateconfigurationfile", + "displayName": "Custom path to the update configuration file", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_updateconfigurationfile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_updateconfigurationfile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~installandupdatesettings_updateconfigurationfile_updateconfigurationfile_textbox", + "displayName": "Custom Path to the Update Config (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_directconnectionmode", + "displayName": "Require direct connection", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_directconnectionmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_directconnectionmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disableanonymousguests", + "displayName": "Disable anonymous guests", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disableanonymousguests_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disableanonymousguests_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disablereadwriteterminal", + "displayName": "Disable shared read write terminal", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disablereadwriteterminal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disablereadwriteterminal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disablesharedserver", + "displayName": "Disable shared server", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disablesharedserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_disablesharedserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_guestapprovalrequired", + "displayName": "Require guest approval", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_guestapprovalrequired_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_guestapprovalrequired_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_livesharedomainname", + "displayName": "Allow only company domain accounts", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_livesharedomainname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_livesharedomainname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~livesharesettings_livesharedomainname_liveshare_domainname_textbox", + "displayName": "Enter Domain Name: (Device)", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~privacysettings_intellicoderemoteanalysisdisabled", + "displayName": "Disable IntelliCode custom model training", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~privacysettings_intellicoderemoteanalysisdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~privacysettings_intellicoderemoteanalysisdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~privacysettings_telemetryoptin", + "displayName": "Enable the Visual Studio Customer Experience Improvement Program", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~privacysettings_telemetryoptin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~privacysettings_telemetryoptin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~installandupdatesettings_allowstandardusercontrol", + "displayName": "Allow standard users to execute installer operations", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~installandupdatesettings_allowstandardusercontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~installandupdatesettings_allowstandardusercontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~installandupdatesettings_allowstandardusercontrol_allowstandardusercontroldropid", + "displayName": "Define which installer commands Standard Users can execute", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~installandupdatesettings_allowstandardusercontrol_allowstandardusercontroldropid_1", + "displayName": "Enabled for Update and Rollback", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~installandupdatesettings_allowstandardusercontrol_allowstandardusercontroldropid_2", + "displayName": "Enabled for all installer operations", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~livesharesettings_disablechat", + "displayName": "Disable Chat", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~livesharesettings_disablechat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~livesharesettings_disablechat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~visualstudiodevtunnelssettings_disablevisualstudiodevtunnels", + "displayName": "Disable dev tunnels in Visual Studio", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~visualstudiodevtunnelssettings_disablevisualstudiodevtunnels_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov2.1~policy~visualstudio~visualstudiodevtunnelssettings_disablevisualstudiodevtunnels_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov3~policy~visualstudio~installandupdatesettings_administratorupdatesnotifications", + "displayName": "Display administrator update notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov3~policy~visualstudio~installandupdatesettings_administratorupdatesnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov3~policy~visualstudio~installandupdatesettings_administratorupdatesnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov4~policy~visualstudio~copilotsettings_disablecopilot", + "displayName": "Disable Copilot", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov4~policy~visualstudio~copilotsettings_disablecopilot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov4~policy~visualstudio~copilotsettings_disablecopilot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov4~policy~visualstudio~copilotsettings_disablecopilotforindividuals", + "displayName": "Disable Copilot for Individual", + "options": [ + { + "id": "device_vendor_msft_policy_config_visualstudiov4~policy~visualstudio~copilotsettings_disablecopilotforindividuals_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_visualstudiov4~policy~visualstudio~copilotsettings_disablecopilotforindividuals_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_automaticdatacollection", + "displayName": "Automatic Data Collection", + "options": [ + { + "id": "device_vendor_msft_policy_config_webthreatdefense_automaticdatacollection_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_automaticdatacollection_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifymalicious", + "displayName": "Notify Malicious", + "options": [ + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifymalicious_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifymalicious_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifypasswordreuse", + "displayName": "Notify Password Reuse", + "options": [ + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifypasswordreuse_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifypasswordreuse_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifyunsafeapp", + "displayName": "Notify Unsafe App", + "options": [ + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifyunsafeapp_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_notifyunsafeapp_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_serviceenabled", + "displayName": "Service Enabled", + "options": [ + { + "id": "device_vendor_msft_policy_config_webthreatdefense_serviceenabled_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_webthreatdefense_serviceenabled_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowautoconnecttowifisensehotspots", + "displayName": "Allow Auto Connect To Wi Fi Sense Hotspots", + "options": [ + { + "id": "device_vendor_msft_policy_config_wifi_allowautoconnecttowifisensehotspots_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowautoconnecttowifisensehotspots_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowinternetsharing", + "displayName": "Allow Internet Sharing", + "options": [ + { + "id": "device_vendor_msft_policy_config_wifi_allowinternetsharing_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowinternetsharing_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowmanualwificonfiguration", + "displayName": "Allow Manual Wi Fi Configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_wifi_allowmanualwificonfiguration_0", + "displayName": "Block", + "description": "No Wi-Fi connection outside of MDM provisioned network is allowed." + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowmanualwificonfiguration_1", + "displayName": "Allow", + "description": "Adding new network SSIDs beyond the already MDM provisioned ones is allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowwifi", + "displayName": "Allow Wi Fi", + "options": [ + { + "id": "device_vendor_msft_policy_config_wifi_allowwifi_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowwifi_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowwifidirect", + "displayName": "Allow Wi Fi Direct", + "options": [ + { + "id": "device_vendor_msft_policy_config_wifi_allowwifidirect_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_wifi_allowwifidirect_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wifi_wlanscanmode", + "displayName": "WLAN Scan Mode", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_windowsconnectionmanager_prohitconnectiontonondomainnetworkswhenconnectedtodomainauthenticatednetwork", + "displayName": "Prohibit connection to non-domain networks when connected to domain authenticated network", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsconnectionmanager_prohitconnectiontonondomainnetworkswhenconnectedtodomainauthenticatednetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowsconnectionmanager_prohitconnectiontonondomainnetworkswhenconnectedtodomainauthenticatednetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_companyname", + "displayName": "Company Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableaccountprotectionui", + "displayName": "Disable Account Protection UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableaccountprotectionui_0", + "displayName": "(Disable) The users can see the display of the Account protection area in Windows Defender Security Center.", + "description": "(Disable) The users can see the display of the Account protection area in Windows Defender Security Center." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableaccountprotectionui_1", + "displayName": "(Enable) The users cannot see the display of the Account protection area in Windows Defender Security Center.", + "description": "(Enable) The users cannot see the display of the Account protection area in Windows Defender Security Center." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableappbrowserui", + "displayName": "Disable App Browser UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableappbrowserui_0", + "displayName": "(Disable) The users can see the display of the app and browser protection area in Windows Defender Security Center.", + "description": "(Disable) The users can see the display of the app and browser protection area in Windows Defender Security Center." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableappbrowserui_1", + "displayName": "(Enable) The users cannot see the display of the app and browser protection area in Windows Defender Security Center.", + "description": "(Enable) The users cannot see the display of the app and browser protection area in Windows Defender Security Center." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablecleartpmbutton", + "displayName": "Disable Clear Tpm Button", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablecleartpmbutton_0", + "displayName": "(Disabled or not configured) The security processor troubleshooting page shows a button that initiates the process to clear the security processor (TPM).", + "description": "(Disabled or not configured) The security processor troubleshooting page shows a button that initiates the process to clear the security processor (TPM)." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablecleartpmbutton_1", + "displayName": "(Enabled) The security processor troubleshooting page will not show a button to initiate the process to clear the security processor (TPM)", + "description": "(Enabled) The security processor troubleshooting page will not show a button to initiate the process to clear the security processor (TPM)" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disabledevicesecurityui", + "displayName": "Disable Device Security UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disabledevicesecurityui_0", + "displayName": "(Disable) The users can see the display of the Device security area in Windows Defender Security Center.", + "description": "(Disable) The users can see the display of the Device security area in Windows Defender Security Center." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disabledevicesecurityui_1", + "displayName": "(Enable) The users cannot see the display of the Device security area in Windows Defender Security Center.", + "description": "(Enable) The users cannot see the display of the Device security area in Windows Defender Security Center." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableenhancednotifications", + "displayName": "Disable Enhanced Notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableenhancednotifications_0", + "displayName": "(Disable) Windows Defender Security Center will display critical and non-critical notifications to users..", + "description": "(Disable) Windows Defender Security Center will display critical and non-critical notifications to users.." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disableenhancednotifications_1", + "displayName": "(Enable) Windows Defender Security Center only display notifications which are considered critical on clients.", + "description": "(Enable) Windows Defender Security Center only display notifications which are considered critical on clients." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablefamilyui", + "displayName": "Disable Family UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablefamilyui_0", + "displayName": "(Disable) The users can see the display of the family options area in Windows Defender Security Center.", + "description": "(Disable) The users can see the display of the family options area in Windows Defender Security Center." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablefamilyui_1", + "displayName": "(Enable) The users cannot see the display of the family options area in Windows Defender Security Center.", + "description": "(Enable) The users cannot see the display of the family options area in Windows Defender Security Center." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablehealthui", + "displayName": "Disable Health UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablehealthui_0", + "displayName": "(Disable) The users can see the display of the device performance and health area in Windows Defender Security Center.", + "description": "(Disable) The users can see the display of the device performance and health area in Windows Defender Security Center." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablehealthui_1", + "displayName": "(Enable) The users cannot see the display of the device performance and health area in Windows Defender Security Center.", + "description": "(Enable) The users cannot see the display of the device performance and health area in Windows Defender Security Center." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablenetworkui", + "displayName": "Disable Network UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablenetworkui_0", + "displayName": "(Disable) The users can see the display of the firewall and network protection area in Windows Defender Security Center.", + "description": "(Disable) The users can see the display of the firewall and network protection area in Windows Defender Security Center." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablenetworkui_1", + "displayName": "(Enable) The users cannot see the display of the firewall and network protection area in Windows Defender Security Center.", + "description": "(Enable) The users cannot see the display of the firewall and network protection area in Windows Defender Security Center." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablenotifications", + "displayName": "Disable Notifications", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablenotifications_0", + "displayName": "(Disable) The users can see the display of Windows Defender Security Center notifications.", + "description": "(Disable) The users can see the display of Windows Defender Security Center notifications." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablenotifications_1", + "displayName": "(Enable) The users cannot see the display of Windows Defender Security Center notifications.", + "description": "(Enable) The users cannot see the display of Windows Defender Security Center notifications." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disabletpmfirmwareupdatewarning", + "displayName": "Disable Tpm Firmware Update Warning", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disabletpmfirmwareupdatewarning_0", + "displayName": "(Disable or Not configured) A warning will be displayed if the firmware of the security processor (TPM) should be updated for TPMs that have a vulnerability.", + "description": "(Disable or Not configured) A warning will be displayed if the firmware of the security processor (TPM) should be updated for TPMs that have a vulnerability." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disabletpmfirmwareupdatewarning_1", + "displayName": "(Enabled) No warning will be displayed if the firmware of the security processor (TPM) should be updated.", + "description": "(Enabled) No warning will be displayed if the firmware of the security processor (TPM) should be updated." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablevirusui", + "displayName": "Disable Virus UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablevirusui_0", + "displayName": "(Disable) The users can see the display of the virus and threat protection area in Windows Defender Security Center.", + "description": "(Disable) The users can see the display of the virus and threat protection area in Windows Defender Security Center." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disablevirusui_1", + "displayName": "(Enable) The users cannot see the display of the virus and threat protection area in Windows Defender Security Center.", + "description": "(Enable) The users cannot see the display of the virus and threat protection area in Windows Defender Security Center." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disallowexploitprotectionoverride", + "displayName": "Disallow Exploit Protection Override", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disallowexploitprotectionoverride_0", + "displayName": "(Disable) Local users are allowed to make changes in the exploit protection settings area.", + "description": "(Disable) Local users are allowed to make changes in the exploit protection settings area." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_disallowexploitprotectionoverride_1", + "displayName": "(Enable) Local users cannot make changes in the exploit protection settings area.", + "description": "(Enable) Local users cannot make changes in the exploit protection settings area." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_email", + "displayName": "Email", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_enablecustomizedtoasts", + "displayName": "Enable Customized Toasts", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_enablecustomizedtoasts_0", + "displayName": "(Disable) Notifications contain a default notification text.", + "description": "(Disable) Notifications contain a default notification text." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_enablecustomizedtoasts_1", + "displayName": "(Enable) Notifications contain the company name and contact options.", + "description": "(Enable) Notifications contain the company name and contact options." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_enableinappcustomization", + "displayName": "Enable In App Customization", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_enableinappcustomization_0", + "displayName": "(Disable) Do not display the company name and contact options in the card fly out notification.", + "description": "(Disable) Do not display the company name and contact options in the card fly out notification." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_enableinappcustomization_1", + "displayName": "(Enable) Display the company name and contact options in the card fly out notification.", + "description": "(Enable) Display the company name and contact options in the card fly out notification." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hideransomwaredatarecovery", + "displayName": "Hide Ransomware Data Recovery", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hideransomwaredatarecovery_0", + "displayName": "(Disable or not configured) The Ransomware data recovery area will be visible.", + "description": "(Disable or not configured) The Ransomware data recovery area will be visible." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hideransomwaredatarecovery_1", + "displayName": "(Enable) The Ransomware data recovery area is hidden.", + "description": "(Enable) The Ransomware data recovery area is hidden." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidesecureboot", + "displayName": "Hide Secure Boot", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidesecureboot_0", + "displayName": "(Disable or not configured) The Secure boot area is displayed.", + "description": "(Disable or not configured) The Secure boot area is displayed." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidesecureboot_1", + "displayName": "(Enable) The Secure boot area is hidden.", + "description": "(Enable) The Secure boot area is hidden." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidetpmtroubleshooting", + "displayName": "Hide TPM Troubleshooting", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidetpmtroubleshooting_0", + "displayName": "(Disable or not configured) The Security processor (TPM) troubleshooting area is displayed.", + "description": "(Disable or not configured) The Security processor (TPM) troubleshooting area is displayed." + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidetpmtroubleshooting_1", + "displayName": "(Enable) The Security processor (TPM) troubleshooting area is hidden.", + "description": "(Enable) The Security processor (TPM) troubleshooting area is hidden." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidewindowssecuritynotificationareacontrol", + "displayName": "Hide Windows Security Notification Area Control", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidewindowssecuritynotificationareacontrol_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_hidewindowssecuritynotificationareacontrol_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_phone", + "displayName": "Phone", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_windowsdefendersecuritycenter_url", + "displayName": "URL", + "options": null + }, + { + "id": "device_vendor_msft_policy_config_windowsinkworkspace_allowsuggestedappsinwindowsinkworkspace", + "displayName": "Allow Suggested Apps In Windows Ink Workspace", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsinkworkspace_allowsuggestedappsinwindowsinkworkspace_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_windowsinkworkspace_allowsuggestedappsinwindowsinkworkspace_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowsinkworkspace_allowwindowsinkworkspace", + "displayName": "Allow Windows Ink Workspace", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowsinkworkspace_allowwindowsinkworkspace_0", + "displayName": "access to ink workspace is disabled. The feature is turned off.", + "description": "access to ink workspace is disabled. The feature is turned off." + }, + { + "id": "device_vendor_msft_policy_config_windowsinkworkspace_allowwindowsinkworkspace_1", + "displayName": "ink workspace is enabled (feature is turned on), but the user cannot access it above the lock screen.", + "description": "ink workspace is enabled (feature is turned on), but the user cannot access it above the lock screen." + }, + { + "id": "device_vendor_msft_policy_config_windowsinkworkspace_allowwindowsinkworkspace_2", + "displayName": "ink workspace is enabled (feature is turned on), and the user is allowed to use it above the lock screen.", + "description": "ink workspace is enabled (feature is turned on), and the user is allowed to use it above the lock screen." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon", + "displayName": "Sign-in and lock last interactive user automatically after a restart", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon", + "displayName": "Configure the mode of automatically signing in and locking last interactive user after a restart or cold boot", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon_configautomaticrestartsignondescription", + "displayName": "Configure the mode of automatically signing in and locking last interactive user after a restart or cold boot (Device)", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon_configautomaticrestartsignondescription_0", + "displayName": "Enabled if BitLocker is on and not suspended", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_configautomaticrestartsignon_configautomaticrestartsignondescription_1", + "displayName": "Always Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_disablelockscreenappnotifications", + "displayName": "Turn off app notifications on the lock screen", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_disablelockscreenappnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_disablelockscreenappnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_dontdisplaynetworkselectionui", + "displayName": "Do not display network selection UI", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_dontdisplaynetworkselectionui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_dontdisplaynetworkselectionui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_enablefirstlogonanimation", + "displayName": "Enable First Logon Animation", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_enablefirstlogonanimation_0", + "displayName": "Disabled", + "description": "Disabled." + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_enablefirstlogonanimation_1", + "displayName": "Enabled", + "description": "Enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_enablemprnotifications", + "displayName": "Enable MPR notifications for the system", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_enablemprnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_enablemprnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_enumeratelocalusersondomainjoinedcomputers", + "displayName": "Enumerate local users on domain-joined computers", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_enumeratelocalusersondomainjoinedcomputers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_enumeratelocalusersondomainjoinedcomputers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_hidefastuserswitching", + "displayName": "Hide Fast User Switching", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_hidefastuserswitching_0", + "displayName": "Disabled", + "description": "Disabled (visible)." + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_hidefastuserswitching_1", + "displayName": "Enabled", + "description": "Enabled (hidden)." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_overrideshellprogram", + "displayName": "Override Shell Program", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowslogon_overrideshellprogram_0", + "displayName": "Not Configured", + "description": "Not Configured" + }, + { + "id": "device_vendor_msft_policy_config_windowslogon_overrideshellprogram_1", + "displayName": "Apply Lightweight shell", + "description": "Apply Lightweight shell" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging", + "displayName": "Turn on PowerShell Script Block Logging", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_enablescriptblockinvocationlogging", + "displayName": "Log script block invocation start / stop events:", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_enablescriptblockinvocationlogging_0", + "displayName": "False", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_enablescriptblockinvocationlogging_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowaudioinput", + "displayName": "Allow Audio Input", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowaudioinput_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowaudioinput_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowclipboardredirection", + "displayName": "Allow Clipboard Redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowclipboardredirection_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowclipboardredirection_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allownetworking", + "displayName": "Allow Networking", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowssandbox_allownetworking_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allownetworking_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowprinterredirection", + "displayName": "Allow Printer Redirection", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowprinterredirection_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowprinterredirection_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowvgpu", + "displayName": "Allow VGPU", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowvgpu_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowvgpu_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowvideoinput", + "displayName": "Allow Video Input", + "options": [ + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowvideoinput_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_windowssandbox_allowvideoinput_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowmdnsadvertisement", + "displayName": "Allow Mdns Advertisement", + "options": [ + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowmdnsadvertisement_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowmdnsadvertisement_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowmdnsdiscovery", + "displayName": "Allow Mdns Discovery", + "options": [ + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowmdnsdiscovery_0", + "displayName": "Not allowed.", + "description": "Not allowed." + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowmdnsdiscovery_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectionfrompc", + "displayName": "Allow Projection From PC", + "options": [ + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectionfrompc_0", + "displayName": "Your PC cannot discover or project to other devices.", + "description": "Your PC cannot discover or project to other devices." + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectionfrompc_1", + "displayName": "Your PC can discover and project to other devices.", + "description": "Your PC can discover and project to other devices." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectionfrompcoverinfrastructure", + "displayName": "Allow Projection From PC Over Infrastructure", + "options": [ + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectionfrompcoverinfrastructure_0", + "displayName": "Your PC cannot discover or project to other infrastructure devices, although it is possible to discover and project over WiFi Direct.", + "description": "Your PC cannot discover or project to other infrastructure devices, although it is possible to discover and project over WiFi Direct." + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectionfrompcoverinfrastructure_1", + "displayName": "Your PC can discover and project to other devices over infrastructure.", + "description": "Your PC can discover and project to other devices over infrastructure." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectiontopc", + "displayName": "Allow Projection To PC", + "options": [ + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectiontopc_0", + "displayName": "Projection to PC is not allowed. Always off and the user cannot enable it.", + "description": "Projection to PC is not allowed. Always off and the user cannot enable it." + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectiontopc_1", + "displayName": "Projection to PC is allowed. Enabled only above the lock screen.", + "description": "Projection to PC is allowed. Enabled only above the lock screen." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectiontopcoverinfrastructure", + "displayName": "Allow Projection To PC Over Infrastructure", + "options": [ + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectiontopcoverinfrastructure_0", + "displayName": "Your PC is not discoverable and other devices cannot project to it over infrastructure, although it is possible to project to it over WiFi Direct.", + "description": "Your PC is not discoverable and other devices cannot project to it over infrastructure, although it is possible to project to it over WiFi Direct." + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowprojectiontopcoverinfrastructure_1", + "displayName": "Your PC is discoverable and other devices can project to it over infrastructure.", + "description": "Your PC is discoverable and other devices can project to it over infrastructure." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowuserinputfromwirelessdisplayreceiver", + "displayName": "Allow User Input From Wireless Display Receiver", + "options": [ + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowuserinputfromwirelessdisplayreceiver_0", + "displayName": "Wireless display input disabled.", + "description": "Wireless display input disabled." + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_allowuserinputfromwirelessdisplayreceiver_1", + "displayName": "Wireless display input enabled.", + "description": "Wireless display input enabled." + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_requirepinforpairing", + "displayName": "Require Pin For Pairing", + "options": [ + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_requirepinforpairing_0", + "displayName": "PIN is not required.", + "description": "PIN is not required." + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_requirepinforpairing_1", + "displayName": "Pairing ceremony for new devices will always require a PIN", + "description": "Pairing ceremony for new devices will always require a PIN" + }, + { + "id": "device_vendor_msft_policy_config_wirelessdisplay_requirepinforpairing_2", + "displayName": "All pairings will require PIN", + "description": "All pairings will require PIN" + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowdebugshell", + "displayName": "Allow the debug shell", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowdebugshell_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowdebugshell_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowdiskmount", + "displayName": "Allow passthrough disk mount", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowdiskmount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowdiskmount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowinboxwsl", + "displayName": "Allow the Inbox version of the Windows Subsystem For Linux", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowinboxwsl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowinboxwsl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowwsl", + "displayName": "Allow the Windows Subsystem For Linux", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowwsl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowwsl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowwsl1", + "displayName": "Allow WSL1", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowwsl1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_allowwsl1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customkernelcommandlineusersettingconfigurable", + "displayName": "Allow kernel command line configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customkernelcommandlineusersettingconfigurable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customkernelcommandlineusersettingconfigurable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customkernelusersettingconfigurable", + "displayName": "Allow custom kernel configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customkernelusersettingconfigurable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customkernelusersettingconfigurable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customnetworkingusersettingconfigurable", + "displayName": "Allow custom networking configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customnetworkingusersettingconfigurable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customnetworkingusersettingconfigurable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customsystemdistrousersettingconfigurable", + "displayName": "Allow custom system distribution configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customsystemdistrousersettingconfigurable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_customsystemdistrousersettingconfigurable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_firewallusersettingconfigurable", + "displayName": "Allow user setting firewall configuration", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_firewallusersettingconfigurable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_firewallusersettingconfigurable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_kerneldebugusersettingconfigurable", + "displayName": "Allow kernel debugging", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_kerneldebugusersettingconfigurable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_kerneldebugusersettingconfigurable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_nestedvirtualizationusersettingconfigurable", + "displayName": "Allow nested virtualization", + "options": [ + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_nestedvirtualizationusersettingconfigurable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "device_vendor_msft_policy_config_wslv1~policy~wsl_nestedvirtualizationusersettingconfigurable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_allowelevationdetection", + "displayName": "(Preview) Automatically detect elevations", + "options": [ + { + "id": "device_vendor_msft_policy_elevationclientsettings_allowelevationdetection_0", + "displayName": "No", + "description": "No" + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_allowelevationdetection_1", + "displayName": "Yes", + "description": "Yes" + } + ] + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_defaultelevationresponse", + "displayName": "Default elevation response", + "options": [ + { + "id": "device_vendor_msft_policy_elevationclientsettings_defaultelevationresponse_0", + "displayName": "Deny all requests", + "description": "Deny all requests" + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_defaultelevationresponse_1", + "displayName": "Require user confirmation", + "description": "Require user confirmation" + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_defaultelevationresponse_2", + "displayName": "Require support approval", + "description": "Require support approval" + } + ] + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_enableepm", + "displayName": "Endpoint Privilege Management", + "options": [ + { + "id": "device_vendor_msft_policy_elevationclientsettings_enableepm_1", + "displayName": "Enabled", + "description": "Enabled" + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_enableepm_0", + "displayName": "Disabled", + "description": "Turning off this feature will uninstall the companion client from assigned devices if one is already installed" + } + ] + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_reportingscope", + "displayName": "Reporting scope", + "options": [ + { + "id": "device_vendor_msft_policy_elevationclientsettings_reportingscope_1", + "displayName": "Diagnostic data and managed elevations only", + "description": "Diagnostic data and managed elevations only" + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_reportingscope_2", + "displayName": "Diagnostic data and all endpoint elevations", + "description": "Diagnostic data and all endpoint elevations" + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_reportingscope_0", + "displayName": "Diagnostic data only", + "description": "Diagnostic data only" + } + ] + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_senddata", + "displayName": "Send elevation data for reporting", + "options": [ + { + "id": "device_vendor_msft_policy_elevationclientsettings_senddata_1", + "displayName": "Yes", + "description": "Yes" + }, + { + "id": "device_vendor_msft_policy_elevationclientsettings_senddata_0", + "displayName": "No", + "description": "No" + } + ] + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationclientsettings_defaultelevationresponse_validation", + "displayName": "Validation", + "options": [ + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationclientsettings_defaultelevationresponse_validation_0", + "displayName": "Business justification", + "description": "Business Justification" + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationclientsettings_defaultelevationresponse_validation_1", + "displayName": "Windows authentication", + "description": "Windows Authentication" + } + ] + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}", + "displayName": "Elevation Rule Name", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_appliesto", + "displayName": "Applies to", + "options": { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_allusers", + "displayName": "All device users", + "description": null + } + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_certificatefileupload", + "displayName": "File upload", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_certificatepayloadwithreusablesetting", + "displayName": "Certificate", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_certificatetype", + "displayName": "Certificate type", + "options": [ + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_publisher", + "displayName": "Publisher", + "description": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_issuingauthority", + "displayName": "Certificate authority", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_childprocessbehavior", + "displayName": "Child process behavior", + "options": [ + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_allowrunelevated", + "displayName": "Allow all child processes to run elevated", + "description": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_allowrunelevatedrulerequired", + "displayName": "Require rule to elevate", + "description": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_deny", + "displayName": "Deny all", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_description", + "displayName": "Description", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_filedescription", + "displayName": "File description", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_filehash", + "displayName": "File hash", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_filename", + "displayName": "File name", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_filepath", + "displayName": "File path", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_fileversion", + "displayName": "Minimum version", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_internalname", + "displayName": "Internal name", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_name", + "displayName": "Rule name", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_productname", + "displayName": "Product name", + "options": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_ruletype", + "displayName": "Elevation type", + "options": [ + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_self", + "displayName": "User confirmed", + "description": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_automatic", + "displayName": "Automatic", + "description": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_supportarbitrated", + "displayName": "Support approved", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_ruletype_validation", + "displayName": "Validation", + "options": [ + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_ruletype_validation_0", + "displayName": "Business justification", + "description": "Business Justification" + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_ruletype_validation_1", + "displayName": "Windows authentication", + "description": "Windows Authentication" + } + ] + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_signaturesource", + "displayName": "Signature source", + "options": [ + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_signaturesource_0", + "displayName": "Use a certificate file in reusable settings", + "description": null + }, + { + "id": "device_vendor_msft_policy_privilegemanagement_elevationrules_{elevationrulename}_signaturesource_1", + "displayName": "Upload a certificate file", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_reboot_schedule_dailyrecurrent", + "displayName": "Daily Recurrent", + "options": null + }, + { + "id": "device_vendor_msft_reboot_schedule_single", + "displayName": "Single", + "options": null + }, + { + "id": "device_vendor_msft_reboot_schedule_weeklyrecurrent", + "displayName": "Weekly Recurrent (Windows Insiders only)", + "options": null + }, + { + "id": "device_vendor_msft_scepcertificate_certificatetype", + "displayName": "CertificateType", + "options": null + }, + { + "id": "device_vendor_msft_scepcertificate_certificatevalidityperiod", + "displayName": "Certificate validity period", + "options": null + }, + { + "id": "device_vendor_msft_scepcertificate_hashalgorithm", + "displayName": "Hash algorithm", + "options": null + }, + { + "id": "device_vendor_msft_scepcertificate_keystorageprovider", + "displayName": "Key storage provider (KSP)", + "options": null + }, + { + "id": "device_vendor_msft_scepcertificate_keyusage", + "displayName": "Key usage", + "options": null + }, + { + "id": "device_vendor_msft_scepcertificate_rootcertificate", + "displayName": "Root Certificate", + "options": null + }, + { + "id": "device_vendor_msft_scepcertificate_scepserverurls", + "displayName": "SCEP Server URLs", + "options": null + }, + { + "id": "device_vendor_msft_scepcertificate_subjectnameformat", + "displayName": "Subject name format", + "options": null + }, + { + "id": "device_vendor_msft_trustedcertificate_certificatefile", + "displayName": "Certificate file", + "options": null + }, + { + "id": "device_vendor_msft_trustedcertificate_destinationstore", + "displayName": "Destination Store", + "options": null + }, + { + "id": "device_vendor_msft_vpnconnection_connectionname", + "displayName": "Connection name", + "options": null + }, + { + "id": "device_vendor_msft_vpnconnection_connectiontype", + "displayName": "Connection type", + "options": null + }, + { + "id": "device_vendor_msft_vpnconnection_profilewithuserordevicescope", + "displayName": "Use this VPN profile with a user/device scope", + "options": null + }, + { + "id": "device_vendor_msft_vpnconnection_servers", + "displayName": "Servers", + "options": null + }, + { + "id": "device_vendor_msft_wifi_profile_{ssid}_proxy", + "displayName": "Company proxy settings", + "options": null + }, + { + "id": "device_vendor_msft_wifi_profile_{ssid}_proxypacurl", + "displayName": "Connect Automatically when in range", + "options": null + }, + { + "id": "device_vendor_msft_wifi_profile_{ssid}_proxywpad", + "displayName": "Connect to this network, even when its not broadcasting its SSID", + "options": null + }, + { + "id": "device_vendor_msft_wifi_profile_{ssid}_wificost", + "displayName": "Metered connection limit", + "options": null + }, + { + "id": "device_vendor_msft_wifi_profile_{ssid}_wlanxml", + "displayName": "Wireless security type", + "options": null + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configuration_samplesharing", + "displayName": "Sample Sharing", + "options": [ + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configuration_samplesharing_0", + "displayName": "None", + "description": null + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configuration_samplesharing_1", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configuration_telemetryreportingfrequency", + "displayName": "[Deprecated] Telemetry Reporting Frequency", + "options": [ + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configuration_telemetryreportingfrequency_1", + "displayName": "Normal", + "description": null + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configuration_telemetryreportingfrequency_2", + "displayName": "Expedite", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configurationtype", + "displayName": "Microsoft Defender for Endpoint client configuration package type", + "options": [ + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configurationtype_autofromconnector", + "displayName": "Auto from connector", + "description": null + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configurationtype_onboard", + "displayName": "Onboard", + "description": null + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_configurationtype_offboard", + "displayName": "Offboard", + "description": null + } + ] + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_offboarding", + "displayName": "Offboarding (Device)", + "options": null + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_onboarding", + "displayName": "Onboarding (Device)", + "options": null + }, + { + "id": "device_vendor_msft_windowsadvancedthreatprotection_onboarding_fromconnector", + "displayName": "Onboarding blob from Connector", + "options": null + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_audit_auditapplicationguard", + "displayName": "Audit Application Guard", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_audit_auditapplicationguard_0", + "displayName": "Disabled", + "description": "Audit event logs aren't collected for Application Guard." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_audit_auditapplicationguard_1", + "displayName": "Enabled", + "description": "Application Guard inherits its auditing policies from system and starts to audit security events for Application Guard container." + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_installwindowsdefenderapplicationguard", + "displayName": "Install Windows defender application guard", + "options": { + "id": "device_vendor_msft_windowsdefenderapplicationguard_installwindowsdefenderapplicationguard_install", + "displayName": "Install - Will initiate feature install", + "description": "Will initiate feature install." + } + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_platformstatus", + "displayName": "Platform status", + "options": null + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowcameramicrophoneredirection", + "displayName": "Allow camera and microphone access", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowcameramicrophoneredirection_0", + "displayName": "Disabled", + "description": "Microsoft Defender Application Guard cannot access the device's camera and microphone. When the policy is not configured, it is the same as disabled (0)." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowcameramicrophoneredirection_1", + "displayName": "Enabled", + "description": "Turns on the functionality to allow Microsoft Defender Application Guard to access the device's camera and microphone." + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowpersistence", + "displayName": "Allow data persistence", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowpersistence_0", + "displayName": "Disabled", + "description": "Application Guard discards user-downloaded files and other items (such as, cookies, Favorites, and so on) during machine restart or user log-off." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowpersistence_1", + "displayName": "Enabled", + "description": "Application Guard saves user-downloaded files and other items (such as, cookies, Favorites, and so on) for use in future Application Guard sessions." + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowvirtualgpu", + "displayName": "Allow hardware-accelerated rendering", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowvirtualgpu_0", + "displayName": "Disabled", + "description": "Cannot access the vGPU and uses the CPU to support rendering graphics. When the policy is not configured, it is the same as disabled (0)." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowvirtualgpu_1", + "displayName": "Enabled", + "description": "Turns on the functionality to access the vGPU offloading graphics rendering from the CPU. This can create a faster experience when working with graphics intense websites or watching video within the container." + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowwindowsdefenderapplicationguard", + "displayName": "Turn on Microsoft Defender Application Guard", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowwindowsdefenderapplicationguard_0", + "displayName": "Disabled", + "description": "Disable Microsoft Defender Application Guard" + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowwindowsdefenderapplicationguard_1", + "displayName": "Enabled for Microsoft Edge ONLY", + "description": "Enable Microsoft Defender Application Guard for Microsoft Edge ONLY" + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowwindowsdefenderapplicationguard_2", + "displayName": "Enabled for isolated Windows environments ONLY", + "description": "Enable Microsoft Defender Application Guard for isolated Windows environments ONLY" + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_allowwindowsdefenderapplicationguard_3", + "displayName": "Enabled for Microsoft Edge AND isolated Windows environments", + "description": "Enable Microsoft Defender Application Guard for Microsoft Edge AND isolated Windows environments" + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_certificatethumbprints", + "displayName": "Certificate Thumbprints", + "options": null + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardfiletype", + "displayName": "Clipboard content options", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardfiletype_1", + "displayName": "Allow text copying", + "description": "Allow text copying." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardfiletype_2", + "displayName": "Allow image copying", + "description": "Allow image copying." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardfiletype_3", + "displayName": "Allow both text and image copying", + "description": "Allow text and image copying." + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardsettings", + "displayName": "Clipboard behavior settings", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardsettings_0", + "displayName": "Disable clipboard functionality completely", + "description": "Completely turns Off the clipboard functionality for the Application Guard." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardsettings_1", + "displayName": "Enable clipboard operation from Application Guard to the host", + "description": "Turns On clipboard operation from an isolated session to the host." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardsettings_2", + "displayName": "Enable clipboard operation from the host to Application Guard", + "description": "Turns On clipboard operation from the host to an isolated session." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_clipboardsettings_3", + "displayName": "Enable clipboard operation in both directions", + "description": "Turns On clipboard operation in both the directions." + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_printingsettings", + "displayName": "Print Settings", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_printingsettings_0", + "displayName": "Disable all print functionality", + "description": "Disables all print functionality." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_printingsettings_1", + "displayName": "Enable XPS printing", + "description": "Enables only XPS printing." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_printingsettings_2", + "displayName": "Enable PDF printing", + "description": "Enables only PDF printing." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_printingsettings_4", + "displayName": "Enable local printing", + "description": "Enables only local printing." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_printingsettings_8", + "displayName": "Enable network printing", + "description": "Enables only network printing." + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_savefilestohost", + "displayName": "Allow files to download and save to the host operating system", + "options": [ + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_savefilestohost_0", + "displayName": "Disabled", + "description": "The user cannot download files from Edge in the container to the host file system. When the policy is not configured, it is the same as disabled (0)." + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_settings_savefilestohost_1", + "displayName": "Enabled", + "description": "Turns on the functionality to allow users to download files from Edge in the container to the host file system." + } + ] + }, + { + "id": "device_vendor_msft_windowsdefenderapplicationguard_status", + "displayName": "Status", + "options": null + }, + { + "id": "diskmanagement_diskmanagement", + "displayName": "com.apple.configuration.diskmanagement.settings", + "options": null + }, + { + "id": "diskmanagement_restrictions", + "displayName": "Restrictions", + "options": null + }, + { + "id": "diskmanagement_restrictions_externalstorage", + "displayName": "External Storage", + "options": [ + { + "id": "diskmanagement_restrictions_externalstorage_0", + "displayName": "Allowed", + "description": null + }, + { + "id": "diskmanagement_restrictions_externalstorage_1", + "displayName": "ReadOnly", + "description": null + }, + { + "id": "diskmanagement_restrictions_externalstorage_2", + "displayName": "Disallowed", + "description": null + } + ] + }, + { + "id": "diskmanagement_restrictions_networkstorage", + "displayName": "Network Storage", + "options": [ + { + "id": "diskmanagement_restrictions_networkstorage_0", + "displayName": "Allowed", + "description": null + }, + { + "id": "diskmanagement_restrictions_networkstorage_1", + "displayName": "ReadOnly", + "description": null + }, + { + "id": "diskmanagement_restrictions_networkstorage_2", + "displayName": "Disallowed", + "description": null + } + ] + }, + { + "id": "enforcement_detailsurl", + "displayName": "Details URL", + "options": null + }, + { + "id": "enforcement_enforcement", + "displayName": "com.apple.configuration.softwareupdate.enforcement.specific", + "options": null + }, + { + "id": "enforcement_targetbuildversion", + "displayName": "Target Build Version", + "options": null + }, + { + "id": "enforcement_targetlocaldatetime", + "displayName": "Target Date Time (UTC)", + "options": null + }, + { + "id": "enforcement_targetosversion", + "displayName": "Target OS Version", + "options": null + }, + { + "id": "enrollment_autopilot_dpp_accountype", + "displayName": "User account type", + "options": [ + { + "id": "enrollment_autopilot_dpp_accountype_0", + "displayName": "Administrator", + "description": null + }, + { + "id": "enrollment_autopilot_dpp_accountype_1", + "displayName": "Standard User", + "description": null + } + ] + }, + { + "id": "enrollment_autopilot_dpp_allowdiagnostics", + "displayName": "Show link to diagnostics", + "options": [ + { + "id": "enrollment_autopilot_dpp_allowdiagnostics_0", + "displayName": "No", + "description": null + }, + { + "id": "enrollment_autopilot_dpp_allowdiagnostics_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "enrollment_autopilot_dpp_allowedappids", + "displayName": "Allowed Applications", + "options": null + }, + { + "id": "enrollment_autopilot_dpp_allowedpolicyids", + "displayName": "Allowed Policies", + "options": null + }, + { + "id": "enrollment_autopilot_dpp_allowedscriptids", + "displayName": "Allowed Scripts", + "options": null + }, + { + "id": "enrollment_autopilot_dpp_allowskip", + "displayName": "Allow users to skip setup after multiple attempts", + "options": [ + { + "id": "enrollment_autopilot_dpp_allowskip_0", + "displayName": "No", + "description": null + }, + { + "id": "enrollment_autopilot_dpp_allowskip_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "enrollment_autopilot_dpp_customerrormessage", + "displayName": "Custom error message", + "options": null + }, + { + "id": "enrollment_autopilot_dpp_deploymentmode", + "displayName": "Deployment mode", + "options": { + "id": "enrollment_autopilot_dpp_deploymentmode_0", + "displayName": "User-driven", + "description": "Devices are associated with the user enrolling the device and user credentials are required to provision the device" + } + }, + { + "id": "enrollment_autopilot_dpp_deploymenttype", + "displayName": "Deployment type", + "options": { + "id": "enrollment_autopilot_dpp_deploymenttype_0", + "displayName": "Single user", + "description": null + } + }, + { + "id": "enrollment_autopilot_dpp_devicesecuritygroupids", + "displayName": "Device security group", + "options": null + }, + { + "id": "enrollment_autopilot_dpp_jointype", + "displayName": "Join type", + "options": { + "id": "enrollment_autopilot_dpp_jointype_0", + "displayName": "Microsoft Entra joined", + "description": "Cloud-only without an on-premises Windows Server Active Directory" + } + }, + { + "id": "enrollment_autopilot_dpp_timeout", + "displayName": "Minutes allowed before showing installation error", + "options": null + }, + { + "id": "enrollment_restriction_blockmdmenrollment", + "displayName": "Block MDM enrollment", + "options": [ + { + "id": "enrollment_restriction_blockmdmenrollment_0", + "displayName": "No", + "description": null + }, + { + "id": "enrollment_restriction_blockmdmenrollment_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "extensionsettings_extensionsettings", + "displayName": "com.apple.configuration.safari.extensions.settings", + "options": null + }, + { + "id": "extensionsettings_managedextensions", + "displayName": "Managed Extensions", + "options": null + }, + { + "id": "extensionsettings_managedextensions_generickey", + "displayName": "ANY", + "options": null + }, + { + "id": "extensionsettings_managedextensions_generickey_alloweddomains", + "displayName": "Allowed Domains", + "options": null + }, + { + "id": "extensionsettings_managedextensions_generickey_denieddomains", + "displayName": "Denied Domains", + "options": null + }, + { + "id": "extensionsettings_managedextensions_generickey_keytobereplaced", + "displayName": "Managed Extensions", + "options": null + }, + { + "id": "extensionsettings_managedextensions_generickey_privatebrowsing", + "displayName": "Private Browsing", + "options": [ + { + "id": "extensionsettings_managedextensions_generickey_privatebrowsing_0", + "displayName": "Allowed", + "description": null + }, + { + "id": "extensionsettings_managedextensions_generickey_privatebrowsing_1", + "displayName": "AlwaysOn", + "description": null + }, + { + "id": "extensionsettings_managedextensions_generickey_privatebrowsing_2", + "displayName": "AlwaysOff", + "description": null + } + ] + }, + { + "id": "extensionsettings_managedextensions_generickey_state", + "displayName": "State", + "options": [ + { + "id": "extensionsettings_managedextensions_generickey_state_0", + "displayName": "Allowed", + "description": null + }, + { + "id": "extensionsettings_managedextensions_generickey_state_1", + "displayName": "Always On", + "description": null + }, + { + "id": "extensionsettings_managedextensions_generickey_state_2", + "displayName": "Always Off", + "description": null + } + ] + }, + { + "id": "linux_customconfig_executioncontext", + "displayName": "Execution context", + "options": [ + { + "id": "linux_customconfig_executioncontext_root", + "displayName": "Root", + "description": null + }, + { + "id": "linux_customconfig_executioncontext_user", + "displayName": "User", + "description": null + } + ] + }, + { + "id": "linux_customconfig_executionfrequency", + "displayName": "Execution frequency", + "options": [ + { + "id": "linux_customconfig_executionfrequency_15minutes", + "displayName": "Every 15 minutes", + "description": null + }, + { + "id": "linux_customconfig_executionfrequency_30minutes", + "displayName": "Every 30 minutes", + "description": null + }, + { + "id": "linux_customconfig_executionfrequency_1hour", + "displayName": "Every 1 hour", + "description": null + }, + { + "id": "linux_customconfig_executionfrequency_2hours", + "displayName": "Every 2 hours", + "description": null + }, + { + "id": "linux_customconfig_executionfrequency_3hours", + "displayName": "Every 3 hours", + "description": null + }, + { + "id": "linux_customconfig_executionfrequency_6hours", + "displayName": "Every 6 hours", + "description": null + }, + { + "id": "linux_customconfig_executionfrequency_12hours", + "displayName": "Every 12 hours", + "description": null + }, + { + "id": "linux_customconfig_executionfrequency_1day", + "displayName": "Every 1 day", + "description": null + }, + { + "id": "linux_customconfig_executionfrequency_1week", + "displayName": "Every 1 week", + "description": null + } + ] + }, + { + "id": "linux_customconfig_executionretries", + "displayName": "Execution retries", + "options": [ + { + "id": "linux_customconfig_executionretries_0", + "displayName": "No retries", + "description": null + }, + { + "id": "linux_customconfig_executionretries_1", + "displayName": "1 time", + "description": null + }, + { + "id": "linux_customconfig_executionretries_2", + "displayName": "2 times", + "description": null + }, + { + "id": "linux_customconfig_executionretries_3", + "displayName": "3 times", + "description": null + } + ] + }, + { + "id": "linux_customconfig_script", + "displayName": "Execution Script", + "options": null + }, + { + "id": "linux_enrollment_blockenrollment", + "displayName": "Block Linux Enrollment", + "options": [ + { + "id": "linux_blockenrollment_required_0", + "displayName": "No", + "description": null + }, + { + "id": "linux_blockenrollment_required_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_allowedthreats", + "displayName": "Allowed threats", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_behaviormonitoring", + "displayName": "Enable behavior monitoring", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_behaviormonitoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_behaviormonitoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_disallowedthreatactions", + "displayName": "Disallowed threat actions", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_enablefilehashcomputation", + "displayName": "Enable file hash computation", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_enablefilehashcomputation_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_enablefilehashcomputation_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_enablerealtimeprotection", + "displayName": "Enable real-time protection (deprecated)", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_enablerealtimeprotection_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_enablerealtimeprotection_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_enforcementlevel", + "displayName": "Enforcement Level", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_enforcementlevel_0", + "displayName": "Realtime", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_enforcementlevel_1", + "displayName": "OnDemand", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_enforcementlevel_2", + "displayName": "Passive", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions", + "displayName": "Scan exclusions", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_$type", + "displayName": "Type", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_$type_0", + "displayName": "Path", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_$type_1", + "displayName": "File extension", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_$type_2", + "displayName": "Process name", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_extension", + "displayName": "File extension", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_isdirectory", + "displayName": "Is directory", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_isdirectory_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_isdirectory_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_name", + "displayName": "File name", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusions_item_path", + "displayName": "Path", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusionsmergepolicy", + "displayName": "Exclusions merge", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_exclusionsmergepolicy_0", + "displayName": "merge", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_exclusionsmergepolicy_1", + "displayName": "admin_only", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_maximumondemandscanthreads", + "displayName": "maximum on demand scan threads", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_nonexecmountpolicy", + "displayName": "non execute mount mute", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_nonexecmountpolicy_0", + "displayName": "unmute", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_nonexecmountpolicy_1", + "displayName": "mute", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_passivemode", + "displayName": "Enable passive mode (deprecated)", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_passivemode_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_passivemode_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_scanafterdefinitionupdate", + "displayName": "Enable scanning after definition update", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_scanafterdefinitionupdate_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_scanafterdefinitionupdate_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_scanarchives", + "displayName": "Enable scanning of archives", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_scanarchives_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_scanarchives_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_scanhistorymaximumitems", + "displayName": "Scan history size", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_scanresultsretentiondays", + "displayName": "Scan results retention", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettings", + "displayName": "Threat type settings", + "options": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettings_item_key", + "displayName": "Threat type", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettings_item_key_0", + "displayName": "potentially_unwanted_application", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettings_item_key_1", + "displayName": "archive_bomb", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettings_item_value", + "displayName": "Action to take", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettings_item_value_0", + "displayName": "audit", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettings_item_value_1", + "displayName": "block", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettings_item_value_2", + "displayName": "off", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettingsmergepolicy", + "displayName": "Threat type settings merge", + "options": [ + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettingsmergepolicy_0", + "displayName": "merge", + "description": null + }, + { + "id": "linux_mdatp_managed_antivirusengine_threattypesettingsmergepolicy_1", + "displayName": "admin_only", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_antivirusengine_unmonitoredfilesystems", + "displayName": "Unmonitored Filesystems", + "options": null + }, + { + "id": "linux_mdatp_managed_cloudservice_automaticdefinitionupdateenabled", + "displayName": "Automatic security intelligence updates", + "options": [ + { + "id": "linux_mdatp_managed_cloudservice_automaticdefinitionupdateenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_automaticdefinitionupdateenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_cloudservice_automaticsamplesubmissionconsent", + "displayName": "Enable automatic sample submissions", + "options": [ + { + "id": "linux_mdatp_managed_cloudservice_automaticsamplesubmissionconsent_none", + "displayName": "None", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_automaticsamplesubmissionconsent_safe", + "displayName": "Safe", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_automaticsamplesubmissionconsent_all", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_cloudservice_cloudblocklevel", + "displayName": "Configure cloud block level", + "options": [ + { + "id": "linux_mdatp_managed_cloudservice_cloudblocklevel_normal", + "displayName": "Normal", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_cloudblocklevel_moderate", + "displayName": "Moderate", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_cloudblocklevel_high", + "displayName": "High", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_cloudblocklevel_high_plus", + "displayName": "High_Plus", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_cloudblocklevel_zero_tolerance", + "displayName": "Zero_Tolerance", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_cloudservice_diagnosticlevel", + "displayName": "Diagnostic data collection level", + "options": [ + { + "id": "linux_mdatp_managed_cloudservice_diagnosticlevel_0", + "displayName": "optional", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_diagnosticlevel_1", + "displayName": "required", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_cloudservice_enabled", + "displayName": "Enable cloud delivered protection", + "options": [ + { + "id": "linux_mdatp_managed_cloudservice_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_cloudservice_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_edr_tags", + "displayName": "Device tags", + "options": null + }, + { + "id": "linux_mdatp_managed_edr_tags_item_key", + "displayName": "Type of tag", + "options": { + "id": "linux_mdatp_managed_edr_tags_item_key_0", + "displayName": "GROUP", + "description": null + } + }, + { + "id": "linux_mdatp_managed_edr_tags_item_value", + "displayName": "Value of tag", + "options": null + }, + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions", + "displayName": "Global Exclusions", + "options": null + }, + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions_item_$type", + "displayName": "Type", + "options": [ + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions_item_$type_0", + "displayName": "Path", + "description": null + }, + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions_item_$type_1", + "displayName": "Process name", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions_item_isdirectory", + "displayName": "Is directory", + "options": [ + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions_item_isdirectory_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions_item_isdirectory_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions_item_name", + "displayName": "Process name", + "options": null + }, + { + "id": "linux_mdatp_managed_exclusionsettings_exclusions_item_path", + "displayName": "Path", + "options": null + }, + { + "id": "linux_mdatp_managed_networkprotection_enforcementlevel", + "displayName": "Enforcement Level", + "options": [ + { + "id": "linux_mdatp_managed_networkprotection_enforcementlevel_0", + "displayName": "disabled", + "description": null + }, + { + "id": "linux_mdatp_managed_networkprotection_enforcementlevel_1", + "displayName": "audit", + "description": null + }, + { + "id": "linux_mdatp_managed_networkprotection_enforcementlevel_2", + "displayName": "block", + "description": null + } + ] + }, + { + "id": "loginwindow_disableloginitemssuppression", + "displayName": "Disable Login Items Suppression", + "options": [ + { + "id": "loginwindow_disableloginitemssuppression_false", + "displayName": "False", + "description": null + }, + { + "id": "loginwindow_disableloginitemssuppression_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "loginwindow_loginwindow", + "displayName": "Top Level Setting Group Collection", + "options": null + }, + { + "id": "mathsettings_calculator", + "displayName": "Calculator", + "options": null + }, + { + "id": "mathsettings_calculator_basicmode", + "displayName": "Basic Mode", + "options": null + }, + { + "id": "mathsettings_calculator_basicmode_addsquareroot", + "displayName": "Add Square Root", + "options": [ + { + "id": "mathsettings_calculator_basicmode_addsquareroot_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "mathsettings_calculator_basicmode_addsquareroot_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "mathsettings_calculator_inputmodes", + "displayName": "Input Modes", + "options": null + }, + { + "id": "mathsettings_calculator_inputmodes_rpn", + "displayName": "RPN", + "options": [ + { + "id": "mathsettings_calculator_inputmodes_rpn_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "mathsettings_calculator_inputmodes_rpn_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "mathsettings_calculator_inputmodes_unitconversion", + "displayName": "Unit Conversion", + "options": [ + { + "id": "mathsettings_calculator_inputmodes_unitconversion_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "mathsettings_calculator_inputmodes_unitconversion_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "mathsettings_calculator_mathnotesmode", + "displayName": "Math Notes Mode", + "options": null + }, + { + "id": "mathsettings_calculator_mathnotesmode_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "mathsettings_calculator_mathnotesmode_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "mathsettings_calculator_mathnotesmode_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "mathsettings_calculator_programmermode", + "displayName": "Programmer Mode", + "options": null + }, + { + "id": "mathsettings_calculator_programmermode_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "mathsettings_calculator_programmermode_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "mathsettings_calculator_programmermode_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "mathsettings_calculator_scientificmode", + "displayName": "Scientific Mode", + "options": null + }, + { + "id": "mathsettings_calculator_scientificmode_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "mathsettings_calculator_scientificmode_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "mathsettings_calculator_scientificmode_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "mathsettings_mathsettings", + "displayName": "com.apple.configuration.math.settings", + "options": null + }, + { + "id": "mathsettings_systembehavior", + "displayName": "System Behavior", + "options": null + }, + { + "id": "mathsettings_systembehavior_keyboardsuggestions", + "displayName": "Keyboard Suggestions", + "options": [ + { + "id": "mathsettings_systembehavior_keyboardsuggestions_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "mathsettings_systembehavior_keyboardsuggestions_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "mathsettings_systembehavior_mathnotes", + "displayName": "Math Notes", + "options": [ + { + "id": "mathsettings_systembehavior_mathnotes_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "mathsettings_systembehavior_mathnotes_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "osrecoverysettings_acceptlicense", + "displayName": "Automatically accept license terms", + "options": [ + { + "id": "osrecoverysettings_acceptlicense_0", + "displayName": "No", + "description": null + }, + { + "id": "osrecoverysettings_acceptlicense_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "osrecoverysettings_baselanguage", + "displayName": "Base language", + "options": [ + { + "id": "osrecoverysettings_baselanguage_arabic", + "displayName": "Arabic", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_bulgarian", + "displayName": "Bulgarian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_chinese_simplified", + "displayName": "Chinese (Simplified)", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_chinese_traditional", + "displayName": "Chinese (Traditional)", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_croatian", + "displayName": "Croatian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_czech", + "displayName": "Czech", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_danish", + "displayName": "Danish", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_dutch", + "displayName": "Dutch", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_english", + "displayName": "English (United States)", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_english_uk", + "displayName": "English (United Kingdom)", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_estonian", + "displayName": "Estonian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_finnish", + "displayName": "Finnish", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_french", + "displayName": "French", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_french_canada", + "displayName": "French (Canada)", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_german", + "displayName": "German", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_greek", + "displayName": "Greek", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_hebrew", + "displayName": "Hebrew", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_hungarian", + "displayName": "Hungarian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_italian", + "displayName": "Italian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_japanese", + "displayName": "Japanese", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_korean", + "displayName": "Korean", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_latvian", + "displayName": "Latvian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_lithuanian", + "displayName": "Lithuanian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_norwegian", + "displayName": "Norwegian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_polish", + "displayName": "Polish", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_portuguese", + "displayName": "Portuguese (Portugal)", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_portuguesebrazil", + "displayName": "Portuguese(Brazil)", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_romanian", + "displayName": "Romanian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_russian", + "displayName": "Russian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_serbian_latin ", + "displayName": "Serbian Latin", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_slovak", + "displayName": "Slovak", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_slovenian", + "displayName": "Slovenian", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_spanish", + "displayName": "Spanish", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_spanishmexico", + "displayName": "Spanish (Mexico)", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_swedish", + "displayName": "Swedish", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_thai", + "displayName": "Thai", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_turkish", + "displayName": "Turkish", + "description": null + }, + { + "id": "osrecoverysettings_baselanguage_ukrainian", + "displayName": "Ukrainian", + "description": null + } + ] + }, + { + "id": "osrecoverysettings_createrecoverypartition", + "displayName": "Create recovery partition", + "options": [ + { + "id": "osrecoverysettings_createrecoverypartition_0", + "displayName": "No", + "description": null + }, + { + "id": "osrecoverysettings_createrecoverypartition_1", + "displayName": "Yes", + "description": null + } + ] + }, + { + "id": "osrecoverysettings_formatdisk", + "displayName": "Format disk", + "options": [ + { + "id": "osrecoverysettings_formatdisk_0", + "displayName": "Format windows partition", + "description": null + }, + { + "id": "osrecoverysettings_formatdisk_1", + "displayName": "Format all partition", + "description": null + } + ] + }, + { + "id": "osrecoverysettings_keyboardsettings", + "displayName": "Keyboard settings", + "options": [ + { + "id": "osrecoverysettings_keyboardsettings_afrikaans", + "displayName": "Afrikaans", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_afrikaansn", + "displayName": "Afrikaans (Namibia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_albanian", + "displayName": "Albanian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_albaniank", + "displayName": "Albanian (Kosovo)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_alsatianf", + "displayName": "Alsatian (France)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_amharic", + "displayName": "Amharic", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabic", + "displayName": "Arabic", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabica", + "displayName": "Arabic (Algeria)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabicb", + "displayName": "Arabic (Bahrain)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabice", + "displayName": "Arabic (Egypt)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabici", + "displayName": "Arabic (Iraq)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabicj)", + "displayName": "Arabic (Jordan)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabick", + "displayName": "Arabic (Kuwait)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabicl", + "displayName": "Arabic (Lebanon)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabicli", + "displayName": "Arabic (Libya)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabicm", + "displayName": "Arabic (Morocco)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arbaico", + "displayName": "Arabic (Oman)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arbaicq", + "displayName": "Arabic (Qatar)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arbaics", + "displayName": "Arabic (Syria)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arbaict", + "displayName": "Arabic (Tunisia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arbaicu", + "displayName": "Arabic (United Arab Emirates)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabicw", + "displayName": "Arabic (World)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_arabicy", + "displayName": "Arabic (Yemen)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_armenian", + "displayName": "Armenian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_assamese", + "displayName": "Assamese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_azerbaijani", + "displayName": "Azerbaijani", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_azerbaijanic", + "displayName": "Azerbaijani (Cyrillic)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_bangla", + "displayName": "Bangla", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_bashkir", + "displayName": "Bashkir", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_basque", + "displayName": "Basque", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_belarusian", + "displayName": "Belarusian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_bengali", + "displayName": "Bengali (India)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_bosnian", + "displayName": "Bosnian (Latin)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_breton", + "displayName": "Breton", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_bulgarian", + "displayName": "Bulgarian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_burmese", + "displayName": "Burmese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_catalan", + "displayName": "Catalan", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_catalana", + "displayName": "Catalan (Andorra)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_catalanfrance", + "displayName": "Catalan (France)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_catalanitaly", + "displayName": "Catalan (Italy)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_centralatlastamazight", + "displayName": "Central Atlas Tamazight", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_centralatlastamazightarabic", + "displayName": "Central Atlas Tamazight (Arabic)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_centralatlastamazighttifinagh", + "displayName": "Central Atlas Tamazight (Tifinagh)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_centralkurdish", + "displayName": "Central Kurdish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_chechen", + "displayName": "Chechen", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_cherokee", + "displayName": "Cherokee", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_chinese", + "displayName": "Chinese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_chinesesimplifiedhongkongsar", + "displayName": "Chinese (Simplified, Hong Kong SAR)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_chinesesimplifiedmacaosar", + "displayName": "Chinese (Simplified, Macao SAR)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_chinesetraditional", + "displayName": "Chinese (Traditional)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_chinesetraditionaltaiwan", + "displayName": "Chinese (Traditional, Taiwan)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_churchslavic", + "displayName": "Church Slavic", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_colognian", + "displayName": "Colognian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_cornish", + "displayName": "Cornish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_corsican", + "displayName": "Corsican", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_croatian", + "displayName": "Croatian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_croatianbosniaherzegovina", + "displayName": "Croatian (Bosnia & Herzegovina)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_czech", + "displayName": "Czech", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_danish", + "displayName": "Danish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_danishgreenland", + "displayName": "Danish (Greenland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_divehi", + "displayName": "Divehi", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_dutch", + "displayName": "Dutch", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_dutcharuba", + "displayName": "Dutch (Aruba)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_dutchbelgium", + "displayName": "Dutch (Belgium)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_dutchbonaires", + "displayName": "Dutch (Bonaire, Sint Eustatius and Saba)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_dutchcuracao", + "displayName": "Dutch (Curaçao)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_dutchsintmaarten", + "displayName": "Dutch (Sint Maarten)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_dutchsuriname", + "displayName": "Dutch (Suriname)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_dzongkha", + "displayName": "Dzongkha", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_english", + "displayName": "English", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishaustralia", + "displayName": "English (Australia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishaustria", + "displayName": "English (Austria)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishbelgium", + "displayName": "English (Belgium)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishbelize", + "displayName": "English (Belize)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishbritishvirginislands", + "displayName": "English (British Virgin Islands)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishburundi", + "displayName": "English (Burundi)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishcanada", + "displayName": "English (Canada)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishcaribbean", + "displayName": "English (Caribbean)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishdenmark", + "displayName": "English (Denmark)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishfalklandislands", + "displayName": "English (Falkland Islands)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishfinland", + "displayName": "English (Finland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishgermany", + "displayName": "English (Germany)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishgibraltar", + "displayName": "English (Gibraltar)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishguernsey", + "displayName": "English (Guernsey)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishhongkongsar", + "displayName": "English (Hong Kong SAR)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishindia", + "displayName": "English (India)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishireland", + "displayName": "English (Ireland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishisleofman", + "displayName": "English (Isle of Man)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishisrael", + "displayName": "English (Israel)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishjamaica", + "displayName": "English (Jamaica)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishjersey", + "displayName": "English (Jersey)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishmalaysia", + "displayName": "English (Malaysia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishmalta", + "displayName": "English (Malta)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishnetherlands", + "displayName": "English (Netherlands)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishnewzealand", + "displayName": "English (New Zealand)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishphilippines", + "displayName": "English (Philippines)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishsingapore", + "displayName": "English (Singapore)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishslovenia", + "displayName": "English (Slovenia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishsouthafrica", + "displayName": "English (South Africa)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishsweden", + "displayName": "English (Sweden)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishswitzerland", + "displayName": "English (Switzerland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishtrinidadtobago", + "displayName": "English (Trinidad & Tobago)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishuk", + "displayName": "English (United Kingdom)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_englishzimbabwe", + "displayName": "English (Zimbabwe)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_estonian", + "displayName": "Estonian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_faroese", + "displayName": "Faroese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_filipino", + "displayName": "Filipino", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_finnish", + "displayName": "Finnish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_french", + "displayName": "French", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchbelgium", + "displayName": "French (Belgium)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchcameroon", + "displayName": "French (Cameroon)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchcanada", + "displayName": "French (Canada)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchcotedivoire", + "displayName": "French (Côte d’Ivoire)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchhaiti", + "displayName": "French (Haiti)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchluxembourg", + "displayName": "French (Luxembourg)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchmali", + "displayName": "French (Mali)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchmonaco", + "displayName": "French (Monaco)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchmorocco", + "displayName": "French (Morocco)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchreunion", + "displayName": "French (Réunion)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchsenegal", + "displayName": "French (Senegal)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchswitzerland", + "displayName": "French (Switzerland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_frenchcongodrc", + "displayName": "French Congo (DRC)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_friulian", + "displayName": "Friulian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulah", + "displayName": "Fulah", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahadlam", + "displayName": "Fulah (Adlam)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahburkinafaso", + "displayName": "Fulah (Latin, Burkina Faso)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahcameroon", + "displayName": "Fulah (Latin, Cameroon)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahgambia", + "displayName": "Fulah (Latin, Gambia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahghana", + "displayName": "Fulah (Latin, Ghana)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahguinea", + "displayName": "Fulah (Latin, Guinea)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahguineabissau", + "displayName": "Fulah (Latin, Guinea-Bissau)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahliberia", + "displayName": "Fulah (Latin, Liberia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahmauritania", + "displayName": "Fulah (Latin, Mauritania)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahniger", + "displayName": "Fulah (Latin, Niger)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahnigeria", + "displayName": "Fulah (Latin, Nigeria)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_fulahsierraleone", + "displayName": "Fulah (Latin, Sierra Leone)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_galician", + "displayName": "Galician", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_georgian", + "displayName": "Georgian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_german", + "displayName": "German", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_germanaustria", + "displayName": "German (Austria)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_germanbelgium", + "displayName": "German (Belgium)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_germanitaly", + "displayName": "German (Italy)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_germanliechtenstein", + "displayName": "German (Liechtenstein)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_germanluxembourg", + "displayName": "German (Luxembourg)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_germanswitzerland", + "displayName": "German (Switzerland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_greek", + "displayName": "Greek", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_guarani", + "displayName": "Guarani", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_gujarati", + "displayName": "Gujarati", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_hausa", + "displayName": "Hausa", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_hawaiian", + "displayName": "Hawaiian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_hebrew", + "displayName": "Hebrew", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_hindi", + "displayName": "Hindi", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_hungarian", + "displayName": "Hungarian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_icelandic", + "displayName": "Icelandic", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_igbo", + "displayName": "Igbo", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_indonesian", + "displayName": "Indonesian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_interlingua", + "displayName": "Interlingua", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_inuktitut", + "displayName": "Inuktitut", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_inuktitutsyllabics", + "displayName": "Inuktitut (Syllabics)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_irish", + "displayName": "Irish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_irishunitedkingdom", + "displayName": "Irish (United Kingdom)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_italian", + "displayName": "Italian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_italianswitzerland", + "displayName": "Italian (Switzerland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_italianvaticancity", + "displayName": "Italian (Vatican City)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_japanese", + "displayName": "Japanese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_javanese", + "displayName": "Javanese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_javanesejavanese", + "displayName": "Javanese (Javanese)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kalaallisut", + "displayName": "Kalaallisut", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kannada", + "displayName": "Kannada", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kashmiri", + "displayName": "Kashmiri", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kashmiridevanagari", + "displayName": "Kashmiri (Devanagari)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kazakh", + "displayName": "Kazakh", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_khmer", + "displayName": "Khmer", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kinyarwanda", + "displayName": "Kinyarwanda", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kiswahili", + "displayName": "Kiswahili", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kiswahilicongodrc", + "displayName": "Kiswahili (Congo DRC)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kiswahilitanzania", + "displayName": "Kiswahili (Tanzania)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kiswahiliuganda", + "displayName": "Kiswahili (Uganda)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_konkani", + "displayName": "Konkani", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_korean", + "displayName": "Korean", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_koreannorthkorea", + "displayName": "Korean (North Korea)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_kyrgyz", + "displayName": "Kyrgyz", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_lao", + "displayName": "Lao", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_latvian", + "displayName": "Latvian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_lithuanian", + "displayName": "Lithuanian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_lowersorbian", + "displayName": "Lower Sorbian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_luxembourgish", + "displayName": "Luxembourgish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_macedonian", + "displayName": "Macedonian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_malagasy", + "displayName": "Malagasy", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_malay", + "displayName": "Malay", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_malaybrunei", + "displayName": "Malay (Brunei)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_malayindonesia", + "displayName": "Malay (Indonesia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_malaysingapore", + "displayName": "Malay (Singapore)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_malayalam", + "displayName": "Malayalam", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_maltese", + "displayName": "Maltese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_manipuri", + "displayName": "Manipuri", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_manx", + "displayName": "Manx", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_maori", + "displayName": "Maori", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_mapuche", + "displayName": "Mapuche", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_marathi", + "displayName": "Marathi", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_mazanderani", + "displayName": "Mazanderani", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_mohawk", + "displayName": "Mohawk", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_mongolian", + "displayName": "Mongolian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_mongolian_traditional_mongolian", + "displayName": "Mongolian (Traditional Mongolian)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_mongolian_traditional_mongolian_mongolia", + "displayName": "Mongolian (Traditional Mongolian, Mongolia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_nko", + "displayName": "N'ko", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_nepali", + "displayName": "Nepali", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_nepali_india", + "displayName": "Nepali (India)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_northern_luri", + "displayName": "Northern Luri", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_northern_sami", + "displayName": "Northern Sami", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_norwegian", + "displayName": "Norwegian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_norwegian_nynorsk", + "displayName": "Norwegian Nynorsk", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_occitan", + "displayName": "Occitan", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_odia", + "displayName": "Odia", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_oromo", + "displayName": "Oromo", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_oromo_kenya", + "displayName": "Oromo (Kenya)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_ossetic", + "displayName": "Ossetic", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_papiamento", + "displayName": "Papiamento", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_pashto", + "displayName": "Pashto", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_pashto_pakistan", + "displayName": "Pashto (Pakistan)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_persian", + "displayName": "Persian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_persian_afghanistan", + "displayName": "Persian (Afghanistan)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_polish", + "displayName": "Polish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese", + "displayName": "Portuguese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_angola", + "displayName": "Portuguese (Angola)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_cabo_verde", + "displayName": "Portuguese (Cabo Verde)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_equatorial_guinea", + "displayName": "Portuguese (Equatorial Guinea)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_guinea_bissau", + "displayName": "Portuguese (Guinea-Bissau)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_luxembourg", + "displayName": "Portuguese (Luxembourg)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_macao_sar", + "displayName": "Portuguese (Macao SAR)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_mozambique", + "displayName": "Portuguese (Mozambique)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_portugal", + "displayName": "Portuguese (Portugal)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_switzerland", + "displayName": "Portuguese (Switzerland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_sao_tome_principe", + "displayName": "Portuguese (São Tomé & Príncipe)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_portuguese_timor_leste", + "displayName": "Portuguese (Timor-Leste)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_prussian", + "displayName": "Prussian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_punjabi", + "displayName": "Punjabi", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_quechua", + "displayName": "Quechua", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_quechua_ecuador", + "displayName": "Quechua (Ecuador)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_quechua_peru", + "displayName": "Quechua (Peru)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_romanian", + "displayName": "Romanian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_romanian_moldova", + "displayName": "Romanian (Moldova)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_romansh", + "displayName": "Romansh", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_russian", + "displayName": "Russian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_russian_moldova", + "displayName": "Russian (Moldova)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sakha", + "displayName": "Sakha", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sami_lule_norway", + "displayName": "Sami, Lule (Norway)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sami_northern_finland", + "displayName": "Sami, Northern (Finland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sami_northern_sweden", + "displayName": "Sami, Northern (Sweden)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sami_southern_norway", + "displayName": "Sami, Southern (Norway)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sanskrit", + "displayName": "Sanskrit", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_scottish_gaelic", + "displayName": "Scottish Gaelic", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_serbian", + "displayName": "Serbian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_serbian_cyrillic", + "displayName": "Serbian (Cyrillic)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_serbian_cyrillic_bosnia_herzegovina", + "displayName": "Serbian (Cyrillic, Bosnia and Herzegovina)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_serbian_cyrillic_kosovo", + "displayName": "Serbian (Cyrillic, Kosovo)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_serbian_cyrillic_montenegro", + "displayName": "Serbian (Cyrillic, Montenegro)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_serbian_latin_bosnia_herzegovina", + "displayName": "Serbian (Latin, Bosnia & Herzegovina)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_serbian_latin_kosovo", + "displayName": "Serbian (Latin, Kosovo)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_serbian_latin_montenegro", + "displayName": "Serbian (Latin, Montenegro)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sesotho", + "displayName": "Sesotho", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sesotho_lesotho", + "displayName": "Sesotho (Lesotho)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sesotho_sa_leboa", + "displayName": "Sesotho sa Leboa", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_setswana", + "displayName": "Setswana", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_setswana_botswana", + "displayName": "Setswana (Botswana)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_shona", + "displayName": "Shona", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_sinhala", + "displayName": "Sinhala", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_slovak", + "displayName": "Slovak", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_slovenian", + "displayName": "Slovenian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_somali", + "displayName": "Somali", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_somali_djibouti", + "displayName": "Somali (Djibouti)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_somali_ethiopia", + "displayName": "Somali (Ethiopia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_somali_kenya", + "displayName": "Somali (Kenya)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish", + "displayName": "Spanish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_argentina", + "displayName": "Spanish (Argentina)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_belize", + "displayName": "Spanish (Belize)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_bolivia", + "displayName": "Spanish (Bolivia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_brazil", + "displayName": "Spanish (Brazil)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_chile", + "displayName": "Spanish (Chile)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_colombia", + "displayName": "Spanish (Colombia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_costa_rica", + "displayName": "Spanish (Costa Rica)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_cuba", + "displayName": "Spanish (Cuba)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_dominican_republic", + "displayName": "Spanish (Dominican Republic)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_ecuador", + "displayName": "Spanish (Ecuador)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_el_salvador", + "displayName": "Spanish (El Salvador)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_equatorial_guinea", + "displayName": "Spanish (Equatorial Guinea)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_guatemala", + "displayName": "Spanish (Guatemala)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_honduras", + "displayName": "Spanish (Honduras)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_latin_america", + "displayName": "Spanish (Latin America)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_mexico", + "displayName": "Spanish (Mexico)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_nicaragua", + "displayName": "Spanish (Nicaragua)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_panama", + "displayName": "Spanish (Panama)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_paraguay", + "displayName": "Spanish (Paraguay)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_peru", + "displayName": "Spanish (Peru)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_philippines", + "displayName": "Spanish (Philippines)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_puerto_rico", + "displayName": "Spanish (Puerto Rico)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_united_states", + "displayName": "Spanish (United States)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_uruguay", + "displayName": "Spanish (Uruguay)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_spanish_venezuela", + "displayName": "Spanish (Venezuela)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_standard_moroccan_tamazight", + "displayName": "Standard Moroccan Tamazight", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_swedish", + "displayName": "Swedish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_swedish_finland", + "displayName": "Swedish (Finland)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_swiss_german", + "displayName": "Swiss German", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_syriac", + "displayName": "Syriac", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tachelhit", + "displayName": "Tachelhit", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tachelhit_latin", + "displayName": "Tachelhit (Latin)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tajik", + "displayName": "Tajik", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tamil", + "displayName": "Tamil", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tamil_malaysia", + "displayName": "Tamil (Malaysia)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tamil_singapore", + "displayName": "Tamil (Singapore)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tamil_sri_lanka", + "displayName": "Tamil (Sri Lanka)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tatar", + "displayName": "Tatar", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_telugu", + "displayName": "Telugu", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_thai", + "displayName": "Thai", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tibetan", + "displayName": "Tibetan", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tibetan_india", + "displayName": "Tibetan (India)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_tigrinya", + "displayName": "Tigrinya", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_turkish", + "displayName": "Turkish", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_turkmen", + "displayName": "Turkmen", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_ukrainian", + "displayName": "Ukrainian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_upper_sorbian", + "displayName": "Upper Sorbian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_urdu", + "displayName": "Urdu", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_urdu_india", + "displayName": "Urdu (India)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_uyghur", + "displayName": "Uyghur", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_uzbek", + "displayName": "Uzbek", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_uzbek_arabic", + "displayName": "Uzbek (Arabic)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_uzbek_cyrillic", + "displayName": "Uzbek (Cyrillic)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_valencian_spain", + "displayName": "Valencian (Spain)", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_vietnamese", + "displayName": "Vietnamese", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_walser", + "displayName": "Walser", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_welsh", + "displayName": "Welsh", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_western_frisian", + "displayName": "Western Frisian", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_wolof", + "displayName": "Wolof", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_xitsonga", + "displayName": "Xitsonga", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_yi", + "displayName": "Yi", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_yoruba", + "displayName": "Yoruba", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_isixhosa", + "displayName": "IsiXhosa", + "description": null + }, + { + "id": "osrecoverysettings_keyboardsettings_isizulu", + "displayName": "IsiZulu", + "description": null + } + ] + }, + { "id": "osrecoverysettings_os", "displayName": "OS", "options": null }, + { + "id": "osrecoverysettings_qualityupdate", + "displayName": "Quality update only", + "options": [ + { + "id": "osrecoverysettings_qualityupdate_current", + "displayName": "Current", + "description": null + }, + { + "id": "osrecoverysettings_qualityupdate_lastmonth", + "displayName": "Last month", + "description": null + }, + { + "id": "osrecoverysettings_qualityupdate_monthbeforelast", + "displayName": "Month before last", + "description": null + } + ] + }, + { + "id": "passcode_changeatnextauth", + "displayName": "Change At Next Auth", + "options": [ + { + "id": "passcode_changeatnextauth_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "passcode_changeatnextauth_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "passcode_customregex", + "displayName": "Custom Regex", + "options": null + }, + { + "id": "passcode_customregex_description", + "displayName": "Description", + "options": null + }, + { + "id": "passcode_customregex_description_generickey", + "displayName": "ANY", + "options": null + }, + { + "id": "passcode_customregex_description_generickey_keytobereplaced", + "displayName": "Description", + "options": null + }, + { + "id": "passcode_customregex_regex", + "displayName": "Regex", + "options": null + }, + { + "id": "passcode_failedattemptsresetinminutes", + "displayName": "Failed Attempts Reset In Minutes", + "options": null + }, + { + "id": "passcode_maximumfailedattempts", + "displayName": "Maximum Number of Failed Attempts", + "options": null + }, + { + "id": "passcode_maximumgraceperiodinminutes", + "displayName": "Maximum Grace Period", + "options": null + }, + { + "id": "passcode_maximuminactivityinminutes", + "displayName": "Automatic Device Lock", + "options": null + }, + { + "id": "passcode_maximumpasscodeageindays", + "displayName": "Maximum Passcode Age In Days", + "options": null + }, + { + "id": "passcode_minimumcomplexcharacters", + "displayName": "Minimum Complex Characters", + "options": null + }, + { + "id": "passcode_minimumlength", + "displayName": "Minimum Passcode Length", + "options": null + }, + { "id": "passcode_passcode", "displayName": "Passcode", "options": null }, + { + "id": "passcode_passcodereuselimit", + "displayName": "Passcode Reuse Limit", + "options": null + }, + { + "id": "passcode_requirealphanumericpasscode", + "displayName": "Require Alphanumeric Passcode", + "options": [ + { + "id": "passcode_requirealphanumericpasscode_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "passcode_requirealphanumericpasscode_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "passcode_requirecomplexpasscode", + "displayName": "Require Complex Passcode", + "options": [ + { + "id": "passcode_requirecomplexpasscode_false", + "displayName": "False", + "description": null + }, + { + "id": "passcode_requirecomplexpasscode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "passcode_requirepasscode", + "displayName": "Require Passcode on Device", + "options": [ + { + "id": "passcode_requirepasscode_false", + "displayName": "False", + "description": null + }, + { + "id": "passcode_requirepasscode_true", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch", + "displayName": "Update Channel", + "options": [ + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid", + "displayName": "Channel Name: (Device)", + "options": [ + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_current", + "displayName": "Current Channel", + "description": null + }, + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_firstreleasecurrent", + "displayName": "Current Channel (Preview)", + "description": null + }, + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_monthlyenterprise", + "displayName": "Monthly Enterprise Channel", + "description": null + }, + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_deferred", + "displayName": "Semi-Annual Enterprise Channel", + "description": null + }, + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_firstreleasedeferred", + "displayName": "Semi-Annual Enterprise Channel (Preview)", + "description": null + }, + { + "id": "pdates~policy~l_microsoftofficemachine~l_updates_l_updatebranch_l_updatebranchid_insiderfast", + "displayName": "Beta Channel", + "description": null + } + ] + }, + { + "id": "settings_item_accessibilitysettings", + "displayName": "Accessibility Settings", + "options": null + }, + { + "id": "settings_item_accessibilitysettings_boldtextenabled", + "displayName": "Bold Text Enabled", + "options": [ + { + "id": "settings_item_accessibilitysettings_boldtextenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_boldtextenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_accessibilitysettings_increasecontrastenabled", + "displayName": "Increase Contrast Enabled", + "options": [ + { + "id": "settings_item_accessibilitysettings_increasecontrastenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_increasecontrastenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_accessibilitysettings_reducemotionenabled", + "displayName": "Reduce Motion Enabled", + "options": [ + { + "id": "settings_item_accessibilitysettings_reducemotionenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_reducemotionenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_accessibilitysettings_reducetransparencyenabled", + "displayName": "Reduce Transparency Enabled", + "options": [ + { + "id": "settings_item_accessibilitysettings_reducetransparencyenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_reducetransparencyenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_accessibilitysettings_textsize", + "displayName": "Text Size", + "options": [ + { + "id": "settings_item_accessibilitysettings_textsize_0", + "displayName": "0", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_1", + "displayName": "1", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_2", + "displayName": "2", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_3", + "displayName": "3", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_4", + "displayName": "4", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_5", + "displayName": "5", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_6", + "displayName": "6", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_7", + "displayName": "7", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_8", + "displayName": "8", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_9", + "displayName": "9", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_10", + "displayName": "10", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_textsize_11", + "displayName": "11", + "description": null + } + ] + }, + { + "id": "settings_item_accessibilitysettings_touchaccommodationsenabled", + "displayName": "Touch Accommodations Enabled", + "options": [ + { + "id": "settings_item_accessibilitysettings_touchaccommodationsenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_touchaccommodationsenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_accessibilitysettings_voiceoverenabled", + "displayName": "Voice Over Enabled", + "options": [ + { + "id": "settings_item_accessibilitysettings_voiceoverenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_voiceoverenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_accessibilitysettings_zoomenabled", + "displayName": "Zoom Enabled", + "options": [ + { + "id": "settings_item_accessibilitysettings_zoomenabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_accessibilitysettings_zoomenabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_appanalytics", + "displayName": "App Analytics", + "options": null + }, + { + "id": "settings_item_appanalytics_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "settings_item_appanalytics_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_appanalytics_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_bluetooth", + "displayName": "Bluetooth", + "options": null + }, + { + "id": "settings_item_bluetooth_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "settings_item_bluetooth_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_bluetooth_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_dataroaming", + "displayName": "Data Roaming", + "options": null + }, + { + "id": "settings_item_dataroaming_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "settings_item_dataroaming_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_dataroaming_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_diagnosticsubmission", + "displayName": "Diagnostic Submission", + "options": null + }, + { + "id": "settings_item_diagnosticsubmission_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "settings_item_diagnosticsubmission_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_diagnosticsubmission_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_mdmoptions", + "displayName": "MDM Options", + "options": null + }, + { + "id": "settings_item_mdmoptions_mdmoptions", + "displayName": "MDM Options", + "options": null + }, + { + "id": "settings_item_mdmoptions_mdmoptions_activationlockallowedwhilesupervised", + "displayName": "Activation Lock Allowed While Supervised", + "options": [ + { + "id": "settings_item_mdmoptions_mdmoptions_activationlockallowedwhilesupervised_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "settings_item_mdmoptions_mdmoptions_activationlockallowedwhilesupervised_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "settings_item_mdmoptions_mdmoptions_promptusertoallowbootstraptokenforauthentication", + "displayName": "Prompt User To Allow Bootstrap Token For Authentication", + "options": [ + { + "id": "settings_item_mdmoptions_mdmoptions_promptusertoallowbootstraptokenforauthentication_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "settings_item_mdmoptions_mdmoptions_promptusertoallowbootstraptokenforauthentication_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "settings_item_personalhotspot", + "displayName": "Personal Hotspot", + "options": null + }, + { + "id": "settings_item_personalhotspot_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "settings_item_personalhotspot_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_personalhotspot_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "settings_item_softwareupdatesettings", + "displayName": "Software Update Settings", + "options": null + }, + { + "id": "settings_item_softwareupdatesettings_recommendationcadence", + "displayName": "Recommendation Cadence", + "options": [ + { + "id": "settings_item_softwareupdatesettings_recommendationcadence_0", + "displayName": "Presents both options to the user.", + "description": null + }, + { + "id": "settings_item_softwareupdatesettings_recommendationcadence_1", + "displayName": "Presents the lower numbered (oldest) software update version.", + "description": null + }, + { + "id": "settings_item_softwareupdatesettings_recommendationcadence_2", + "displayName": "Presents only the highest numbered (most recent) release available for the device.", + "description": null + } + ] + }, + { + "id": "settings_item_timezone", + "displayName": "Time Zone", + "options": null + }, + { + "id": "settings_item_timezone_timezone", + "displayName": "Time Zone", + "options": null + }, + { + "id": "settings_item_voiceroaming", + "displayName": "Voice Roaming", + "options": null + }, + { + "id": "settings_item_voiceroaming_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "settings_item_voiceroaming_enabled_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "settings_item_voiceroaming_enabled_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "softwareupdate_allowstandarduserosupdates", + "displayName": "Allow Standard User OS Updates", + "options": [ + { + "id": "softwareupdate_allowstandarduserosupdates_false", + "displayName": "Blocked", + "description": null + }, + { + "id": "softwareupdate_allowstandarduserosupdates_true", + "displayName": "Allowed", + "description": null + } + ] + }, + { + "id": "softwareupdate_automaticactions", + "displayName": "Automatic Actions", + "options": null + }, + { + "id": "softwareupdate_automaticactions_download", + "displayName": "Download", + "options": [ + { + "id": "softwareupdate_automaticactions_download_0", + "displayName": "Allowed", + "description": null + }, + { + "id": "softwareupdate_automaticactions_download_1", + "displayName": "AlwaysOn", + "description": null + }, + { + "id": "softwareupdate_automaticactions_download_2", + "displayName": "AlwaysOff", + "description": null + } + ] + }, + { + "id": "softwareupdate_automaticactions_installosupdates", + "displayName": "Install OS Updates", + "options": [ + { + "id": "softwareupdate_automaticactions_installosupdates_0", + "displayName": "Allowed", + "description": null + }, + { + "id": "softwareupdate_automaticactions_installosupdates_1", + "displayName": "Always On", + "description": null + }, + { + "id": "softwareupdate_automaticactions_installosupdates_2", + "displayName": "Always Off", + "description": null + } + ] + }, + { + "id": "softwareupdate_automaticactions_installsecurityupdate", + "displayName": "Install Security Update", + "options": [ + { + "id": "softwareupdate_automaticactions_installsecurityupdate_0", + "displayName": "Allowed", + "description": null + }, + { + "id": "softwareupdate_automaticactions_installsecurityupdate_1", + "displayName": "AlwaysOn", + "description": null + }, + { + "id": "softwareupdate_automaticactions_installsecurityupdate_2", + "displayName": "AlwaysOff", + "description": null + } + ] + }, + { "id": "softwareupdate_beta", "displayName": "Beta", "options": null }, + { + "id": "softwareupdate_beta_offerprograms", + "displayName": "Offer Programs", + "options": null + }, + { + "id": "softwareupdate_beta_offerprograms_item_description", + "displayName": "Description", + "options": null + }, + { + "id": "softwareupdate_beta_offerprograms_item_token", + "displayName": "Token", + "options": null + }, + { + "id": "softwareupdate_beta_programenrollment", + "displayName": "Program Enrollment", + "options": [ + { + "id": "softwareupdate_beta_programenrollment_0", + "displayName": "Allowed", + "description": null + }, + { + "id": "softwareupdate_beta_programenrollment_1", + "displayName": "AlwaysOn", + "description": null + }, + { + "id": "softwareupdate_beta_programenrollment_2", + "displayName": "AlwaysOff", + "description": null + } + ] + }, + { + "id": "softwareupdate_beta_requireprogram", + "displayName": "Require Program", + "options": null + }, + { + "id": "softwareupdate_beta_requireprogram_description", + "displayName": "Description", + "options": null + }, + { + "id": "softwareupdate_beta_requireprogram_token", + "displayName": "Token", + "options": null + }, + { + "id": "softwareupdate_deferrals", + "displayName": "Deferrals", + "options": null + }, + { + "id": "softwareupdate_deferrals_combinedperiodindays", + "displayName": "Combined Period In Days", + "options": null + }, + { + "id": "softwareupdate_deferrals_majorperiodindays", + "displayName": "Major Period In Days", + "options": null + }, + { + "id": "softwareupdate_deferrals_minorperiodindays", + "displayName": "Minor Period In Days", + "options": null + }, + { + "id": "softwareupdate_deferrals_systemperiodindays", + "displayName": "System Period In Days", + "options": null + }, + { + "id": "softwareupdate_notifications", + "displayName": "Notifications", + "options": [ + { + "id": "softwareupdate_notifications_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "softwareupdate_notifications_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "softwareupdate_rapidsecurityresponse", + "displayName": "Rapid Security Response", + "options": null + }, + { + "id": "softwareupdate_rapidsecurityresponse_enable", + "displayName": "Enable", + "options": [ + { + "id": "softwareupdate_rapidsecurityresponse_enable_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "softwareupdate_rapidsecurityresponse_enable_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "softwareupdate_rapidsecurityresponse_enablerollback", + "displayName": "Enable Rollback", + "options": [ + { + "id": "softwareupdate_rapidsecurityresponse_enablerollback_false", + "displayName": "Disabled", + "description": null + }, + { + "id": "softwareupdate_rapidsecurityresponse_enablerollback_true", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "softwareupdate_recommendedcadence", + "displayName": "Recommended Cadence", + "options": [ + { + "id": "softwareupdate_recommendedcadence_0", + "displayName": "All", + "description": null + }, + { + "id": "softwareupdate_recommendedcadence_1", + "displayName": "Oldest", + "description": null + }, + { + "id": "softwareupdate_recommendedcadence_2", + "displayName": "Newest", + "description": null + } + ] + }, + { + "id": "softwareupdate_softwareupdate", + "displayName": "com.apple.configuration.softwareupdate.settings", + "options": null + }, + { + "id": "user_vendor_msft_clouddesktop_enablephysicaldeviceaccessonctrlaltdel", + "displayName": "Enable Physical Device Access On Ctrl Alt Del (User) (Windows Insiders only)", + "options": [ + { + "id": "user_vendor_msft_clouddesktop_enablephysicaldeviceaccessonctrlaltdel_false", + "displayName": "Access to physical device on CtrlAltDel page disabled", + "description": "Access to physical device on CtrlAltDel page disabled" + }, + { + "id": "user_vendor_msft_clouddesktop_enablephysicaldeviceaccessonctrlaltdel_true", + "displayName": "Access to physical device on CtrlAltDel page enabled", + "description": "Access to physical device on CtrlAltDel page enabled" + } + ] + }, + { + "id": "user_vendor_msft_clouddesktop_enablephysicaldeviceaccessonerrorscreens", + "displayName": "Enable Physical Device Access On Error Screens (User) (Windows Insiders only)", + "options": [ + { + "id": "user_vendor_msft_clouddesktop_enablephysicaldeviceaccessonerrorscreens_false", + "displayName": "Access to physical device on error screens disabled", + "description": "Access to physical device on error screens disabled" + }, + { + "id": "user_vendor_msft_clouddesktop_enablephysicaldeviceaccessonerrorscreens_true", + "displayName": "Access to physical device on error screens enabled", + "description": "Access to physical device on error screens enabled" + } + ] + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}", + "displayName": "User-scoped settings", + "options": null + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_enablepinrecovery", + "displayName": "Enable Pin Recovery (User)", + "options": [ + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_enablepinrecovery_false", + "displayName": "false", + "description": "Disabled" + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_enablepinrecovery_true", + "displayName": "true", + "description": "Enabled" + } + ] + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_digits", + "displayName": "Digits (User)", + "options": [ + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_digits_0", + "displayName": "Allows the use of digits in PIN.", + "description": "Allows the use of digits in PIN." + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_digits_1", + "displayName": "Requires the use of at least one digits in PIN.", + "description": "Requires the use of at least one digits in PIN." + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_digits_2", + "displayName": "Does not allow the use of digits in PIN.", + "description": "Does not allow the use of digits in PIN." + } + ] + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_expiration", + "displayName": "Expiration (User)", + "options": null + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_history", + "displayName": "PIN History (User)", + "options": null + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_lowercaseletters", + "displayName": "Lowercase Letters (User)", + "options": [ + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_lowercaseletters_0", + "displayName": "Allowed", + "description": "Allows the use of lowercase letters in PIN." + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_lowercaseletters_1", + "displayName": "Required", + "description": "Requires the use of at least one lowercase letters in PIN." + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_lowercaseletters_2", + "displayName": "Blocked", + "description": "Does not allow the use of lowercase letters in PIN." + } + ] + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_maximumpinlength", + "displayName": "Maximum PIN Length (User)", + "options": null + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_minimumpinlength", + "displayName": "Minimum PIN Length (User)", + "options": null + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_specialcharacters", + "displayName": "Special Characters (User)", + "options": [ + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_specialcharacters_0", + "displayName": "Allows the use of special characters in PIN.", + "description": "Allows the use of special characters in PIN." + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_specialcharacters_1", + "displayName": "Requires the use of at least one special characters in PIN.", + "description": "Requires the use of at least one special characters in PIN." + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_specialcharacters_2", + "displayName": "Does not allow the use of special characters in PIN.", + "description": "Does not allow the use of special characters in PIN." + } + ] + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_uppercaseletters", + "displayName": "Uppercase Letters (User)", + "options": [ + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_uppercaseletters_0", + "displayName": "Allowed", + "description": "Allows the use of uppercase letters in PIN." + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_uppercaseletters_1", + "displayName": "Required", + "description": "Requires the use of at least one uppercase letters in PIN." + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_pincomplexity_uppercaseletters_2", + "displayName": "Blocked", + "description": "Does not allow the use of uppercase letters in PIN." + } + ] + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_requiresecuritydevice", + "displayName": "Require Security Device (User)", + "options": [ + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_requiresecuritydevice_false", + "displayName": "false", + "description": "Disabled" + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_requiresecuritydevice_true", + "displayName": "true", + "description": "Enabled" + } + ] + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_usepassportforwork", + "displayName": "Use Windows Hello For Business (User)", + "options": [ + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_usepassportforwork_false", + "displayName": "false", + "description": "Disabled" + }, + { + "id": "user_vendor_msft_passportforwork_{tenantid}_policies_usepassportforwork_true", + "displayName": "true", + "description": "Enabled" + } + ] + }, + { + "id": "user_vendor_msft_pde_enablepersonaldataencryption", + "displayName": "Enable Personal Data Encryption (User)", + "options": [ + { + "id": "user_vendor_msft_pde_enablepersonaldataencryption_0", + "displayName": "Disable Personal Data Encryption.", + "description": "Disable Personal Data Encryption." + }, + { + "id": "user_vendor_msft_pde_enablepersonaldataencryption_1", + "displayName": "Enable Personal Data Encryption.", + "description": "Enable Personal Data Encryption." + } + ] + }, + { + "id": "user_vendor_msft_pde_protectfolders_protectdesktop", + "displayName": "Protect Desktop (User) (Windows Insiders only)", + "options": [ + { + "id": "user_vendor_msft_pde_protectfolders_protectdesktop_0", + "displayName": "Disable Personal Data Encryption on the folder. If the folder is currently protected by Personal Data Encryption, this will result in unprotecting the folder.", + "description": "Disable Personal Data Encryption on the folder. If the folder is currently protected by Personal Data Encryption, this will result in unprotecting the folder." + }, + { + "id": "user_vendor_msft_pde_protectfolders_protectdesktop_1", + "displayName": "Enable Personal Data Encryption on the folder.", + "description": "Enable Personal Data Encryption on the folder." + } + ] + }, + { + "id": "user_vendor_msft_pde_protectfolders_protectdocuments", + "displayName": "Protect Documents (User) (Windows Insiders only)", + "options": [ + { + "id": "user_vendor_msft_pde_protectfolders_protectdocuments_0", + "displayName": "Disable Personal Data Encryption on the folder. If the folder is currently protected by Personal Data Encryption, this will result in unprotecting the folder.", + "description": "Disable Personal Data Encryption on the folder. If the folder is currently protected by Personal Data Encryption, this will result in unprotecting the folder." + }, + { + "id": "user_vendor_msft_pde_protectfolders_protectdocuments_1", + "displayName": "Enable Personal Data Encryption on the folder.", + "description": "Enable Personal Data Encryption on the folder." + } + ] + }, + { + "id": "user_vendor_msft_pde_protectfolders_protectpictures", + "displayName": "Protect Pictures (User) (Windows Insiders only)", + "options": [ + { + "id": "user_vendor_msft_pde_protectfolders_protectpictures_0", + "displayName": "Disable Personal Data Encryption on the folder. If the folder is currently protected by Personal Data Encryption, this will result in unprotecting the folder.", + "description": "Disable Personal Data Encryption on the folder. If the folder is currently protected by Personal Data Encryption, this will result in unprotecting the folder." + }, + { + "id": "user_vendor_msft_pde_protectfolders_protectpictures_1", + "displayName": "Enable Personal Data Encryption on the folder.", + "description": "Enable Personal Data Encryption on the folder." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_defaultdatabasefolder", + "displayName": "Default database folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_defaultdatabasefolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_defaultdatabasefolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_defaultdatabasefolder_l_defaultdatabasefolder6", + "displayName": "Default database folder (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_recentlyusedfilelist", + "displayName": "Number of files in the Recent list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_recentlyusedfilelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_recentlyusedfilelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_recentlyusedfilelist_l_numberofentries", + "displayName": "Number of entries: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_setnumberofplacesintherecentplaceslist", + "displayName": "Number of folders in the Recent Folders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_setnumberofplacesintherecentplaceslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_setnumberofplacesintherecentplaceslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_general5_l_setnumberofplacesintherecentplaceslist_l_setnumberofplacesintherecentplaceslistspinid", + "displayName": "Number of folders: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_cursormovement", + "displayName": "Cursor movement (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_cursormovement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_cursormovement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_cursormovement_l_cursormovement2", + "displayName": "Cursor movement (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_cursormovement_l_cursormovement2_0", + "displayName": "Logical", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_cursormovement_l_cursormovement2_1", + "displayName": "Visual", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_defaultdirection", + "displayName": "Default direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_defaultdirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_defaultdirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_defaultdirection_l_defaultdirection0", + "displayName": "Default direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_defaultdirection_l_defaultdirection0_0", + "displayName": "Left-to-Right", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_defaultdirection_l_defaultdirection0_1", + "displayName": "Right-to-left", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_generalalignment", + "displayName": "General Alignment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_generalalignment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_generalalignment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_generalalignment_l_generalalignment1", + "displayName": "General Alignment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_generalalignment_l_generalalignment1_0", + "displayName": "Interface mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_international_l_generalalignment_l_generalalignment1_1", + "displayName": "Text mode", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_configurecngcipherchainingmode", + "displayName": "Configure CNG cipher chaining mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_configurecngcipherchainingmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_configurecngcipherchainingmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecbc", + "displayName": "Cipher Block Chaining (CBC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecfb", + "displayName": "Cipher Feedback (CFB)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngcipheralgorithm", + "displayName": "Set CNG cipher algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngcipheralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngcipheralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngcipheralgorithm_l_setcngcipheralgorithmid", + "displayName": "CNG cipher algorithm: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngcipherkeylength", + "displayName": "Set CNG cipher key length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngcipherkeylength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngcipherkeylength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngcipherkeylength_l_setcngcipherkeylengthspinid", + "displayName": "Cipher key length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngpasswordspincount", + "displayName": "Set CNG password spin count (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngpasswordspincount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngpasswordspincount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setcngpasswordspincount_l_setcngpasswordspincountspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setparametersforcngcontext", + "displayName": "Set parameters for CNG context (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setparametersforcngcontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setparametersforcngcontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_setparametersforcngcontext_l_setparametersforcngcontextid", + "displayName": "Parameters (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycnghashalgorithm", + "displayName": "Specify CNG hash algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycnghashalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycnghashalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha512", + "displayName": "SHA512", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm", + "displayName": "Specify CNG random number generator algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_l_specifycngrandomnumbergeneratoralgorithmid", + "displayName": "Random number generator: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycngsaltlength", + "displayName": "Specify CNG salt length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycngsaltlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycngsaltlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifycngsaltlength_l_specifycngsaltlengthspinid", + "displayName": "Number of bytes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifyencryptioncompatibility", + "displayName": "Specify encryption compatibility (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifyencryptioncompatibility_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifyencryptioncompatibility_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_0", + "displayName": "Use legacy format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_1", + "displayName": "Use next generation format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_2", + "displayName": "All files save with next generation format", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_blockmacroexecutionfrominternet", + "displayName": "Block macros from running in Office files from the Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_disableallapplicationextensions", + "displayName": "Disable all application add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_disableallapplicationextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_disableallapplicationextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned", + "displayName": "Require that application add-ins are signed by Trusted Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments", + "displayName": "Set maximum number of trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_l_setmaximumnumberoftrusteddocumentsspinid", + "displayName": "Maximum number: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve", + "displayName": "Set maximum number of trust records to preserve (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_l_setmaximumnumberoftrustrecordstopreservespinid", + "displayName": "Maximum to preserve: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_turnofftrusteddocuments", + "displayName": "Turn off trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_turnofftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_turnofftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork", + "displayName": "Turn off Trusted Documents on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_vbawarningspolicy", + "displayName": "VBA Macro Notification Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_vbawarningspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_vbawarningspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_vbawarningspolicy_l_empty", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_2", + "displayName": "Disable all with notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_3", + "displayName": "Disable all except digitally signed macros", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_4", + "displayName": "Disable all without notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_1", + "displayName": "Enable all macros (not recommended)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork", + "displayName": "Allow Trusted Locations on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc", + "displayName": "Disable all trusted locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01", + "displayName": "Trusted Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_datecolon", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_descriptioncolon", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_pathcolon", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02", + "displayName": "Trusted Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders10", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders10_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders10_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_datecolon8", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_descriptioncolon9", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_pathcolon7", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03", + "displayName": "Trusted Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders14", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders14_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders14_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_datecolon12", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_descriptioncolon13", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_pathcolon11", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04", + "displayName": "Trusted Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders18", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders18_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders18_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_datecolon16", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_descriptioncolon17", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_pathcolon15", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05", + "displayName": "Trusted Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders22", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders22_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders22_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_datecolon20", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_descriptioncolon21", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_pathcolon19", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06", + "displayName": "Trusted Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders26", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders26_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders26_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_datecolon24", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_descriptioncolon25", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_pathcolon23", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07", + "displayName": "Trusted Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders30", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders30_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders30_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_datecolon28", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_descriptioncolon29", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_pathcolon27", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08", + "displayName": "Trusted Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders34", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders34_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders34_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_datecolon32", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_descriptioncolon33", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_pathcolon31", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09", + "displayName": "Trusted Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders38", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders38_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders38_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_datecolon36", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_descriptioncolon37", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_pathcolon35", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10", + "displayName": "Trusted Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders42", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders42_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders42_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_datecolon40", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_descriptioncolon41", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_pathcolon39", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11", + "displayName": "Trusted Location #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders46", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders46_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders46_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_datecolon44", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_descriptioncolon45", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_pathcolon43", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12", + "displayName": "Trusted Location #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders50", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders50_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders50_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_datecolon48", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_descriptioncolon49", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_pathcolon47", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13", + "displayName": "Trusted Location #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders54", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders54_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders54_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_datecolon52", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_descriptioncolon53", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_pathcolon51", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14", + "displayName": "Trusted Location #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders58", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders58_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders58_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_datecolon56", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_descriptioncolon57", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_pathcolon55", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15", + "displayName": "Trusted Location #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders62", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders62_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders62_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_datecolon60", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_descriptioncolon61", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_pathcolon59", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16", + "displayName": "Trusted Location #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders66", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders66_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders66_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_datecolon64", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_descriptioncolon65", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_pathcolon63", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17", + "displayName": "Trusted Location #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders70", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders70_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders70_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_datecolon68", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_descriptioncolon69", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_pathcolon67", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18", + "displayName": "Trusted Location #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders74", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders74_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders74_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_datecolon72", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_descriptioncolon73", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_pathcolon71", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19", + "displayName": "Trusted Location #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders78", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders78_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders78_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_datecolon76", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_descriptioncolon77", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_pathcolon75", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20", + "displayName": "Trusted Location #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders82", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders82_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders82_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_datecolon80", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_descriptioncolon81", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_pathcolon79", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor", + "displayName": "Followed hyperlink color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4", + "displayName": "Followed hyperlink color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_0", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_1", + "displayName": "Maroon", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_2", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_3", + "displayName": "Olive", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_4", + "displayName": "Dark Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_5", + "displayName": "Violet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_6", + "displayName": "Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_7", + "displayName": "Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_8", + "displayName": "Silver", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_9", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_10", + "displayName": "Bright Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_11", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_12", + "displayName": "Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_13", + "displayName": "Fuchsia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_14", + "displayName": "Aqua", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_followedhyperlinkcolor_l_followedhyperlinkcolor4_15", + "displayName": "White", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor", + "displayName": "Hyperlink color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3", + "displayName": "Hyperlink color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_0", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_1", + "displayName": "Maroon", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_2", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_3", + "displayName": "Olive", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_4", + "displayName": "Dark Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_5", + "displayName": "Violet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_6", + "displayName": "Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_7", + "displayName": "Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_8", + "displayName": "Silver", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_9", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_10", + "displayName": "Bright Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_11", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_12", + "displayName": "Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_13", + "displayName": "Fuchsia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_14", + "displayName": "Aqua", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_hyperlinkcolor_l_hyperlinkcolor3_15", + "displayName": "White", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_underlinehyperlinks", + "displayName": "Underline hyperlinks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_underlinehyperlinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_applicationsettings~l_weboptions~l_general_l_underlinehyperlinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_customizableerrormessages_l_listoferrormessagestocustomize", + "displayName": "List of error messages to customize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_customizableerrormessages_l_listoferrormessagestocustomize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_customizableerrormessages_l_listoferrormessagestocustomize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize84", + "displayName": "List of error messages to customize (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize84_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize84_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems85", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems85_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems85_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems85_l_enteracommandbaridtodisable", + "displayName": "Enter a command bar ID to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys86", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys86_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys86_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys86_l_enterakeyandmodifiertodisable", + "displayName": "Enter a key and modifier to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient", + "displayName": "File tab | Access Options | Customize | All Commands | Email (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsaddinsacc", + "displayName": "Database Tools | Database Tools | Add-Ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsaddinsacc_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsaddinsacc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacroconvertmacrostovisualbasic", + "displayName": "Database Tools | Macro | Convert Macros to Visual Basic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacroconvertmacrostovisualbasic_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacroconvertmacrostovisualbasic_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrocreateshortcutmenufrommacro", + "displayName": "Database Tools | Macro | Create Shortcut Menu from Macro (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrocreateshortcutmenufrommacro_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrocreateshortcutmenufrommacro_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrorunmacro", + "displayName": "Database Tools | Macro | Run Macro (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrorunmacro_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrorunmacro_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditoracc", + "displayName": "Database tools | Macro | Visual Basic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditoracc_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditoracc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityencryptdecryptdatabase", + "displayName": "File tab | Access Options | Customize | All Commands | Encode/Decode Database (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityencryptdecryptdatabase_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityencryptdecryptdatabase_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecuritysetdatabasepassword", + "displayName": "Database tools | Database tools | Encrypt with Password (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecuritysetdatabasepassword_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecuritysetdatabasepassword_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserandgroupaccounts", + "displayName": "File tab | Access Options | Customize | All Commands | User and Group accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserandgroupaccounts_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserandgroupaccounts_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserandgrouppermissions", + "displayName": "File tab | Access Options | Customize | All Commands | User and Group Permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserandgrouppermissions_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserandgrouppermissions_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserlevelsecuritywizard", + "displayName": "File tab | Access Options | Customize | All Commands | User-Level Security Wizard... (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserlevelsecuritywizard_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolssecurityuserlevelsecuritywizard_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditoracc", + "displayName": "Alt+F11 (Database Tools | Macro | Visual Basic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditoracc_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditoracc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindacc", + "displayName": "Ctrl+F (Home | Find | Find) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindacc_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindacc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkacc", + "displayName": "Ctrl+K (File tab | Options | Customize | All Commands | Insert Hyperlinks) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkacc_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkacc_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_2007compatiblecachepolicy", + "displayName": "Use Access 2007 compatible cache (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_2007compatiblecachepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_2007compatiblecachepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_clearcacheonclosepolicy", + "displayName": "Clear cache on close (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_clearcacheonclosepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_clearcacheonclosepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultcustomtab", + "displayName": "Show custom templates tab by default in Access on the Office Start screen and in File | New (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultcustomtab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultcustomtab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultfileformat", + "displayName": "Default file format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultfileformat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultfileformat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultfileformat_l_empty87", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultfileformat_l_empty87_12", + "displayName": "Access 2007", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultfileformat_l_empty87_10", + "displayName": "Access 2002-2003", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_defaultfileformat_l_empty87_9", + "displayName": "Access 2000", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_donotprompttoconvertolderdatabases", + "displayName": "Do not prompt to convert older databases (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_donotprompttoconvertolderdatabases_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_donotprompttoconvertolderdatabases_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_nevercachepolicy", + "displayName": "Never cache data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_nevercachepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_nevercachepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_personaltemplatespath", + "displayName": "Personal templates path for Access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_personaltemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_personaltemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_miscellaneous_l_personaltemplatespath_l_personaltemplatespath", + "displayName": "Personal templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_toolssecurity_l_modaltrustdecisiononly", + "displayName": "Modal Trust Decision Only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_toolssecurity_l_modaltrustdecisiononly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_toolssecurity_l_modaltrustdecisiononly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_toolssecurity~l_workgroupadministrator_l_pathtosharedworkgroupinformationfileforsecuredmdbfiles", + "displayName": "Path to shared Workgroup information file for secured MDB files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_toolssecurity~l_workgroupadministrator_l_pathtosharedworkgroupinformationfileforsecuredmdbfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_toolssecurity~l_workgroupadministrator_l_pathtosharedworkgroupinformationfileforsecuredmdbfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_access16v2~policy~l_microsoftofficeaccess~l_toolssecurity~l_workgroupadministrator_l_pathtosharedworkgroupinformationfileforsecuredmdbfiles_l_pathtosharedworkgroupinformationfileforsecuredmdbfiles83", + "displayName": "Path to shared Workgroup information file for secured MDB files (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_defaultcategory", + "displayName": "Specify default category for Add New Programs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_defaultcategory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_defaultcategory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_defaultcategory_defaultcategorybox", + "displayName": "Category: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfromcdorfloppy", + "displayName": "Hide the \"Add a program from CD-ROM or floppy disk\" option (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfromcdorfloppy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfromcdorfloppy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfrominternet", + "displayName": "Hide the \"Add programs from Microsoft\" option (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfrominternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfrominternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfromnetwork", + "displayName": "Hide the \"Add programs from your network\" option (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfromnetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddfromnetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddpage", + "displayName": "Hide Add New Programs page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddremoveprograms", + "displayName": "Remove Add or Remove Programs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddremoveprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noaddremoveprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nochooseprogramspage", + "displayName": "Hide the Set Program Access and Defaults page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nochooseprogramspage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nochooseprogramspage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noremovepage", + "displayName": "Hide Change or Remove Programs page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noremovepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noremovepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noservices", + "displayName": "Go directly to Components Wizard (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noservices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_noservices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nosupportinfo", + "displayName": "Remove Support Information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nosupportinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nosupportinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nowindowssetuppage", + "displayName": "Hide Add/Remove Windows Components page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nowindowssetuppage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_addremoveprograms_nowindowssetuppage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprogramcompatibilityassistant_1", + "displayName": "Turn off Program Compatibility Assistant (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprogramcompatibilityassistant_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_appcompat_appcompatturnoffprogramcompatibilityassistant_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockfileelevation", + "displayName": "Block launching desktop apps associated with a file. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockfileelevation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockfileelevation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockprotocolelevation", + "displayName": "Block launching desktop apps associated with a URI scheme (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockprotocolelevation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_appxruntime_appxruntimeblockprotocolelevation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_estimatefilehandlerrisk", + "displayName": "Trust logic for file attachments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_estimatefilehandlerrisk_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_estimatefilehandlerrisk_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_estimatefilehandlerrisk_am_trustlogicsetting", + "displayName": "Determine risk by (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_estimatefilehandlerrisk_am_trustlogicsetting_2", + "displayName": "Preferring the file handler", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_estimatefilehandlerrisk_am_trustlogicsetting_3", + "displayName": "Looking at the file handler and type", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_estimatefilehandlerrisk_am_trustlogicsetting_1", + "displayName": "Preferring the file type", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setfilerisklevel", + "displayName": "Default risk level for file attachments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setfilerisklevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setfilerisklevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setfilerisklevel_am_risklevel", + "displayName": "Set the default risk level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setfilerisklevel_am_risklevel_6150", + "displayName": "High Risk", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setfilerisklevel_am_risklevel_6151", + "displayName": "Moderate Risk", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setfilerisklevel_am_risklevel_6152", + "displayName": "Low Risk", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_sethighriskinclusion", + "displayName": "Inclusion list for high risk file types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_sethighriskinclusion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_sethighriskinclusion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_sethighriskinclusion_am_instructhighriskinclusionlist", + "displayName": "Specify high risk extensions (include a leading period, e.g. .cmd;.exe;). (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setlowriskinclusion", + "displayName": "Inclusion list for low file types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setlowriskinclusion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setlowriskinclusion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setlowriskinclusion_am_instructlowriskinclusionlist", + "displayName": "Specify low risk extensions (include a leading period, e.g. .bmp;.gif;). (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setmodriskinclusion", + "displayName": "Inclusion list for moderate risk file types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setmodriskinclusion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setmodriskinclusion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_attachmentmanager_am_setmodriskinclusion_am_instructmodriskinclusionlist", + "displayName": "Specify moderate risk extensions (include a leading period, e.g. .doc;.pdf;). (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_com_appmgmt_com_searchforclsid_1", + "displayName": "Download missing COM components (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_com_appmgmt_com_searchforclsid_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_com_appmgmt_com_searchforclsid_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_disallowcpls", + "displayName": "Hide specified Control Panel items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_disallowcpls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_disallowcpls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_disallowcpls_disallowcplslist", + "displayName": "List of disallowed Control Panel items (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_forceclassiccontrolpanel", + "displayName": "Always open All Control Panel Items when opening Control Panel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_forceclassiccontrolpanel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_forceclassiccontrolpanel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_nocontrolpanel", + "displayName": "Prohibit access to Control Panel and PC settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_nocontrolpanel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_nocontrolpanel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_restrictcpls", + "displayName": "Show only specified Control Panel items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_restrictcpls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_restrictcpls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpanel_restrictcpls_restrictcplslist", + "displayName": "List of allowed Control Panel items (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_display_disable", + "displayName": "Disable the Display Control Panel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_display_disable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_display_disable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_display_hidesettings", + "displayName": "Hide Settings tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_display_hidesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_display_hidesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablecolorschemechoice", + "displayName": "Prevent changing color scheme (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablecolorschemechoice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablecolorschemechoice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablethemechange", + "displayName": "Prevent changing theme (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablethemechange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablethemechange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablevisualstyle", + "displayName": "Prevent changing visual style for windows and buttons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablevisualstyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_disablevisualstyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_enablescreensaver", + "displayName": "Enable screen saver (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_enablescreensaver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_enablescreensaver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_lockfontsize", + "displayName": "Prohibit selection of visual style font size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_lockfontsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_lockfontsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nocolorappearanceui", + "displayName": "Prevent changing color and appearance (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nocolorappearanceui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nocolorappearanceui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nodesktopbackgroundui", + "displayName": "Prevent changing desktop background (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nodesktopbackgroundui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nodesktopbackgroundui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nodesktopiconsui", + "displayName": "Prevent changing desktop icons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nodesktopiconsui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nodesktopiconsui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nomousepointersui", + "displayName": "Prevent changing mouse pointers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nomousepointersui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nomousepointersui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_noscreensaverui", + "displayName": "Prevent changing screen saver (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_noscreensaverui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_noscreensaverui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nosoundschemeui", + "displayName": "Prevent changing sounds (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nosoundschemeui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_nosoundschemeui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_screensaverissecure", + "displayName": "Password protect the screen saver (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_screensaverissecure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_screensaverissecure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_screensavertimeout", + "displayName": "Screen saver timeout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_screensavertimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_screensavertimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_screensavertimeout_screensavertimeoutfreqspin", + "displayName": "Seconds: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_setscreensaver", + "displayName": "Force specific screen saver (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_setscreensaver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_setscreensaver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_setscreensaver_screensaverfilename", + "displayName": "Screen saver executable name (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_settheme", + "displayName": "Load a specific theme (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_settheme_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_settheme_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_settheme_themefilename", + "displayName": "Path to theme file: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_setvisualstyle", + "displayName": "Force a specific visual style file or force Windows Classic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_setvisualstyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_setvisualstyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_controlpaneldisplay_cpl_personalization_setvisualstyle_themes_name", + "displayName": "Path to Visual Style: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disablechangepassword", + "displayName": "Remove Change Password (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disablechangepassword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disablechangepassword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disablelockcomputer", + "displayName": "Remove Lock Computer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disablelockcomputer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disablelockcomputer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disabletaskmgr", + "displayName": "Remove Task Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disabletaskmgr_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_disabletaskmgr_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_nologoff", + "displayName": "Remove Logoff (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_nologoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_ctrlaltdel_nologoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_enablefilter", + "displayName": "Enable filter in Find dialog box (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_enablefilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_enablefilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_hidedirectoryfolder", + "displayName": "Hide Active Directory folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_hidedirectoryfolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_hidedirectoryfolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_querylimit", + "displayName": "Maximum size of Active Directory searches (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_querylimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_querylimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_ad_querylimit_ad_querylimit_box", + "displayName": "Number of objects returned: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_forceactivedesktopon", + "displayName": "Enable Active Desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_forceactivedesktopon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_forceactivedesktopon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_noactivedesktop", + "displayName": "Disable Active Desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_noactivedesktop_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_noactivedesktop_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_noactivedesktopchanges", + "displayName": "Prohibit changes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_noactivedesktopchanges_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_noactivedesktopchanges_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nodesktop", + "displayName": "Hide and disable all items on the desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nodesktop_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nodesktop_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nodesktopcleanupwizard", + "displayName": "Remove the Desktop Cleanup Wizard (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nodesktopcleanupwizard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nodesktopcleanupwizard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nointerneticon", + "displayName": "Hide Internet Explorer icon on desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nointerneticon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nointerneticon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nomycomputericon", + "displayName": "Remove Computer icon on the desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nomycomputericon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nomycomputericon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nomydocumentsicon", + "displayName": "Remove My Documents icon on the desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nomydocumentsicon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nomydocumentsicon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nonethood", + "displayName": "Hide Network Locations icon on desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nonethood_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nonethood_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nopropertiesmycomputer", + "displayName": "Remove Properties from the Computer icon context menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nopropertiesmycomputer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nopropertiesmycomputer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nopropertiesmydocuments", + "displayName": "Remove Properties from the Documents icon context menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nopropertiesmydocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nopropertiesmydocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecentdocsnethood", + "displayName": "Do not add shares of recently opened documents to Network Locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecentdocsnethood_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecentdocsnethood_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecyclebinicon", + "displayName": "Remove Recycle Bin icon from desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecyclebinicon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecyclebinicon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecyclebinproperties", + "displayName": "Remove Properties from the Recycle Bin context menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecyclebinproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_norecyclebinproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nosavesettings", + "displayName": "Don't save settings at exit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nosavesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nosavesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nowindowminimizingshortcuts", + "displayName": "Turn off Aero Shake window minimizing mouse gesture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_nowindowminimizingshortcuts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_nowindowminimizingshortcuts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_admincomponents_title", + "displayName": "Add/Delete items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_admincomponents_title_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_admincomponents_title_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_admincomponents_title_sz_atc_adminadditem", + "displayName": "Enter URL(s) of desktop item(s) to Add (space separated): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_admincomponents_title_sz_atc_admindeleteitem", + "displayName": "Enter URL(s) of desktop item(s) to Delete (space separated): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableadd", + "displayName": "Prohibit adding items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableadd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableadd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableclose", + "displayName": "Prohibit closing items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableclose_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableclose_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disabledel", + "displayName": "Prohibit deleting items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disabledel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disabledel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableedit", + "displayName": "Prohibit editing items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableedit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_disableedit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_nocomponents", + "displayName": "Disable all items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_nocomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_atc_nocomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_db_dragdropclose", + "displayName": "Prevent adding, dragging, dropping and closing the Taskbar's toolbars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_db_dragdropclose_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_db_dragdropclose_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_db_moving", + "displayName": "Prohibit adjusting desktop toolbars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_db_moving_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_db_moving_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_dwp_nohtmlpaper", + "displayName": "Allow only bitmapped wallpaper (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_dwp_nohtmlpaper_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_sz_dwp_nohtmlpaper_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper", + "displayName": "Desktop Wallpaper (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_wallpapername", + "displayName": "Wallpaper Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_wallpaperstyle", + "displayName": "Wallpaper Style: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_wallpaperstyle_0", + "displayName": "Center", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_wallpaperstyle_1", + "displayName": "Tile", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_wallpaperstyle_2", + "displayName": "Stretch", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_wallpaperstyle_3", + "displayName": "Fit", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_wallpaperstyle_4", + "displayName": "Fill", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_desktop_wallpaper_wallpaperstyle_5", + "displayName": "Span", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_digitallocker_digitalx_diableapplication_titletext_1", + "displayName": "Do not allow Digital Locker to run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_digitallocker_digitalx_diableapplication_titletext_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_digitallocker_digitalx_diableapplication_titletext_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_1", + "displayName": "Specify a default color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_1_dwmdefaultcolorizationcoloralpha", + "displayName": "Alpha (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_1_dwmdefaultcolorizationcolorblue", + "displayName": "Blue (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_1_dwmdefaultcolorizationcolorgreen", + "displayName": "Green (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdefaultcolorizationcolor_1_dwmdefaultcolorizationcolorred", + "displayName": "Red (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdisallowanimations_1", + "displayName": "Do not allow window animations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdisallowanimations_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdisallowanimations_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdisallowcolorizationcolorchanges_1", + "displayName": "Do not allow color changes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdisallowcolorizationcolorchanges_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_dwm_dwmdisallowcolorizationcolorchanges_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_donotincludenonpublishingstandardglyphinthecandidatelist", + "displayName": "Do not include Non-Publishing Standard Glyph in the candidate list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_donotincludenonpublishingstandardglyphinthecandidatelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_donotincludenonpublishingstandardglyphinthecandidatelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_restrictcharactercoderangeofconversion", + "displayName": "Restrict character code range of conversion (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_restrictcharactercoderangeofconversion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_restrictcharactercoderangeofconversion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_restrictcharactercoderangeofconversion_l_restrictcharactercoderangeofconversionid", + "displayName": "Character code range: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffcustomdictionary", + "displayName": "Turn off custom dictionary (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffcustomdictionary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffcustomdictionary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffhistorybasedpredictiveinput", + "displayName": "Turn off history-based predictive input (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffhistorybasedpredictiveinput_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffhistorybasedpredictiveinput_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffinternetsearchintegration", + "displayName": "Turn off Internet search integration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffinternetsearchintegration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffinternetsearchintegration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffopenextendeddictionary", + "displayName": "Turn off Open Extended Dictionary (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffopenextendeddictionary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffopenextendeddictionary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffsavingautotuningdatatofile", + "displayName": "Turn off saving auto-tuning data to file (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffsavingautotuningdatatofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoffsavingautotuningdatatofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoncloudcandidate", + "displayName": "Turn on cloud candidate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoncloudcandidate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoncloudcandidate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoncloudcandidatechs", + "displayName": "Turn on cloud candidate for CHS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoncloudcandidatechs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnoncloudcandidatechs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonlexiconupdate", + "displayName": "Turn on lexicon update (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonlexiconupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonlexiconupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonlivestickers", + "displayName": "Turn on Live Sticker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonlivestickers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonlivestickers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonmisconversionloggingformisconversionreport", + "displayName": "Turn on misconversion logging for misconversion report (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonmisconversionloggingformisconversionreport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_eaime_l_turnonmisconversionloggingformisconversionreport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werarchive_1", + "displayName": "Configure Report Archive (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werarchive_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werarchive_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werarchive_1_werarchivebehavior", + "displayName": "Archive behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werarchive_1_werarchivebehavior_2", + "displayName": "Store all", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werarchive_1_werarchivebehavior_1", + "displayName": "Store parameters only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werarchive_1_wermaxarchivecount", + "displayName": "Maximum number of reports to store: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werautoapproveosdumps_1", + "displayName": "Automatically send memory dumps for OS-generated error reports (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werautoapproveosdumps_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werautoapproveosdumps_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypassdatathrottling_1", + "displayName": "Do not throttle additional data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypassdatathrottling_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypassdatathrottling_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypassnetworkcostthrottling_1", + "displayName": "Send data when on connected to a restricted/costed network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypassnetworkcostthrottling_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypassnetworkcostthrottling_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypasspowerthrottling_1", + "displayName": "Send additional data when on battery power (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypasspowerthrottling_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werbypasspowerthrottling_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentcustomize_1", + "displayName": "Customize consent settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentcustomize_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentcustomize_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentcustomize_1_werconsentcustomize", + "displayName": "Customize consent settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentcustomize_1_werconsentcustomize_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentcustomize_1_werconsentcustomize_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentoverride_1", + "displayName": "Ignore custom consent settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentoverride_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werconsentoverride_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_1", + "displayName": "Configure Default consent (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_1_werconsent", + "displayName": "Consent level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_1_werconsent_1", + "displayName": "Always ask before sending data", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_1_werconsent_2", + "displayName": "Send parameters", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_1_werconsent_3", + "displayName": "Send parameters and safe additional data", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdefaultconsent_1_werconsent_4", + "displayName": "Send all data", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdisable_1", + "displayName": "Disable Windows Error Reporting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdisable_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werdisable_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werexlusion_1", + "displayName": "List of applications to be excluded (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werexlusion_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werexlusion_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werexlusion_1_werexlusionlist", + "displayName": "List of applications to be excluded (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_wernologging_1", + "displayName": "Disable logging (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_wernologging_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_wernologging_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_wernosecondleveldata_1", + "displayName": "Do not send additional data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_wernosecondleveldata_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_wernosecondleveldata_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1", + "displayName": "Configure Report Queue (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1_wermaxqueuecount", + "displayName": "Maximum number of reports to queue: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1_wermaxqueuesize", + "displayName": "Maximum size of the queue (MB): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1_werqueuebehavior", + "displayName": "Queuing behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1_werqueuebehavior_0", + "displayName": "Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1_werqueuebehavior_1", + "displayName": "Always queue", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_errorreporting_werqueue_1_werupdatecheck", + "displayName": "Number of days between solution check reminders: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_explorer_alwaysshowclassicmenu", + "displayName": "Display the menu bar in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_explorer_alwaysshowclassicmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_explorer_alwaysshowclassicmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_explorer_preventitemcreationinusersfilesfolder", + "displayName": "Prevent users from adding files to the root of their Users Files folder. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_explorer_preventitemcreationinusersfilesfolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_explorer_preventitemcreationinusersfilesfolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_explorer_turnoffspianimations", + "displayName": "Turn off common control and window animations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_explorer_turnoffspianimations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_explorer_turnoffspianimations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_filerevocation_delegatedpackagefamilynames", + "displayName": "Allow Windows Runtime apps to revoke enterprise data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_filerevocation_delegatedpackagefamilynames_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_filerevocation_delegatedpackagefamilynames_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_filerevocation_delegatedpackagefamilynames_delegatedpackagefamilynames_eids", + "displayName": "\r\nApps permitted to revoke all protected data from the device for the specified enterprise identifier:\r\n", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpin", + "displayName": "Do not automatically make all redirected folders available offline (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder", + "displayName": "Do not automatically make specific redirected folders available offline (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinappdataroaming", + "displayName": "AppData(Roaming) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinappdataroaming_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinappdataroaming_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepincontacts", + "displayName": "Contacts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepincontacts_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepincontacts_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindesktop", + "displayName": "Desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindesktop_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindesktop_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindocuments", + "displayName": "Documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindocuments_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindocuments_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindownloads", + "displayName": "Downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindownloads_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepindownloads_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinfavorites", + "displayName": "Favorites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinfavorites_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinfavorites_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinlinks", + "displayName": "Links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinlinks_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinlinks_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinmusic", + "displayName": "Music (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinmusic_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinmusic_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinpictures", + "displayName": "Pictures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinpictures_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinpictures_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinsavedgames", + "displayName": "Saved Games (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinsavedgames_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinsavedgames_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinsearches", + "displayName": "Searches (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinsearches_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinsearches_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinstartmenu", + "displayName": "Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinstartmenu_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinstartmenu_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinvideos", + "displayName": "Videos (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinvideos_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_disablefradminpinbyfolder_disablepinvideos_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_folderredirectionenablecacherename", + "displayName": "Enable optimized move of contents in Offline Files cache on Folder Redirection server path change (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_folderredirectionenablecacherename_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_folderredirectionenablecacherename_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_localizexprelativepaths_1", + "displayName": "Use localized subfolder names when redirecting Start Menu and My Documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_localizexprelativepaths_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_localizexprelativepaths_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_primarycomputer_fr_1", + "displayName": "Redirect folders on primary computers only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_primarycomputer_fr_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_folderredirection_primarycomputer_fr_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_framepanes_nopreviewpane", + "displayName": "Turn on or off details pane (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_framepanes_nopreviewpane_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_framepanes_nopreviewpane_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_framepanes_nopreviewpane_previewpane_dropdownlist_box", + "displayName": "Configure details pane (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_framepanes_nopreviewpane_previewpane_dropdownlist_box_1", + "displayName": "Always hide", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_framepanes_nopreviewpane_previewpane_dropdownlist_box_2", + "displayName": "Always show", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_framepanes_noreadingpane", + "displayName": "Turn off Preview Pane (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_framepanes_noreadingpane_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_framepanes_noreadingpane_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_customlocalesnoselect_1", + "displayName": "Disallow selection of Custom Locales (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_customlocalesnoselect_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_customlocalesnoselect_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_hideadminoptions", + "displayName": "Hide Regional and Language Options administrative options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_hideadminoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_hideadminoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidecurrentlocation", + "displayName": "Hide the geographic location option (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidecurrentlocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidecurrentlocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidelanguageselection", + "displayName": "Hide the select language group options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidelanguageselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidelanguageselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidelocaleselectandcustomize", + "displayName": "Hide user locale selection and customization options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidelocaleselectandcustomize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_hidelocaleselectandcustomize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_implicitdatacollectionoff_1", + "displayName": "Turn off automatic learning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_implicitdatacollectionoff_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_implicitdatacollectionoff_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_localeuserrestrict_1", + "displayName": "Restrict user locales (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_localeuserrestrict_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_localeuserrestrict_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_localeuserrestrict_1_allowableuserlocaletaglist", + "displayName": "User Locales (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage", + "displayName": "Restricts the UI languages Windows should use for the selected user (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect", + "displayName": "Restrict users to the following language: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_en-us", + "displayName": "English", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_ja-jp", + "displayName": "Japanese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_ko-kr", + "displayName": "Korean", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_de-de", + "displayName": "German", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_zh-cn", + "displayName": "Simplified Chinese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_zh-tw", + "displayName": "Traditional Chinese (Taiwan)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_fr-fr", + "displayName": "French", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_es-es", + "displayName": "Spanish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_it-it", + "displayName": "Italian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_sv-se", + "displayName": "Swedish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_nl-nl", + "displayName": "Dutch", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_pt-br", + "displayName": "Portuguese (Brazil)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_fi-fi", + "displayName": "Finnish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_nb-no", + "displayName": "Norwegian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_da-dk", + "displayName": "Danish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_hu-hu", + "displayName": "Hungarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_pl-pl", + "displayName": "Polish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_ru-ru", + "displayName": "Russian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_cs-cz", + "displayName": "Czech", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_el-gr", + "displayName": "Greek", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_pt-pt", + "displayName": "Portuguese (Portugal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_tr-tr", + "displayName": "Turkish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_ar-sa", + "displayName": "Arabic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_he-il", + "displayName": "Hebrew", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_sk-sk", + "displayName": "Slovak", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_sl-si", + "displayName": "Slovenian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_ro-ro", + "displayName": "Romanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_hr-hr", + "displayName": "Croatian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_bg-bg", + "displayName": "Bulgarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_et-ee", + "displayName": "Estonian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_lt-lt", + "displayName": "Lithuanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_lv-lv", + "displayName": "Latvian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_th-th", + "displayName": "Thai", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_zh-hk", + "displayName": "Traditional Chinese (Hong Kong)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_sr-latn-cs", + "displayName": "Serbian (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_lockuseruilanguage_uilangselect_uk-ua", + "displayName": "Ukrainian", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_preventgeoidchange_1", + "displayName": "Disallow changing of geographic location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_preventgeoidchange_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_preventgeoidchange_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_preventuseroverrides_1", + "displayName": "Disallow user override of locale settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_preventuseroverrides_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_preventuseroverrides_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect", + "displayName": "Restrict selection of Windows menus and dialogs language (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect", + "displayName": "Restrict users to the following language: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000409", + "displayName": "English", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000411", + "displayName": "Japanese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000412", + "displayName": "Korean", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000407", + "displayName": "German", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000804", + "displayName": "Simplified Chinese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000404", + "displayName": "Traditional Chinese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000040c", + "displayName": "French", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000c0a", + "displayName": "Spanish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000410", + "displayName": "Italian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000041d", + "displayName": "Swedish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000413", + "displayName": "Dutch", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000416", + "displayName": "Portuguese (Brazil)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000040b", + "displayName": "Finnish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000414", + "displayName": "Norwegian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000406", + "displayName": "Danish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000040e", + "displayName": "Hungarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000415", + "displayName": "Polish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000419", + "displayName": "Russian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000405", + "displayName": "Czech", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000408", + "displayName": "Greek", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000816", + "displayName": "Portuguese (Portugal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000041f", + "displayName": "Turkish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000401", + "displayName": "Arabic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000040d", + "displayName": "Hebrew", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000041b", + "displayName": "Slovak", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000424", + "displayName": "Slovenian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000418", + "displayName": "Romanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000041a", + "displayName": "Croatian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000402", + "displayName": "Bulgarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000425", + "displayName": "Estonian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000427", + "displayName": "Lithuanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_00000426", + "displayName": "Latvian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_restrictuilangselect_uilangselect_0000041e", + "displayName": "Thai", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffautocorrectmisspelledwords", + "displayName": "Turn off autocorrect misspelled words (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffautocorrectmisspelledwords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffautocorrectmisspelledwords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffhighlightmisspelledwords", + "displayName": "Turn off highlight misspelled words (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffhighlightmisspelledwords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffhighlightmisspelledwords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffinsertspace", + "displayName": "Turn off insert a space after selecting a text prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffinsertspace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffinsertspace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffoffertextpredictions", + "displayName": "Turn off offer text predictions as I type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffoffertextpredictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_turnoffoffertextpredictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_y2k", + "displayName": "Century interpretation for Year 2000 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_globalization_y2k_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_y2k_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_globalization_y2k_y2kyear", + "displayName": "Year (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_denyrsoptointeractiveuser_1", + "displayName": "Determine if interactive users can generate Resultant Set of Policy data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_denyrsoptointeractiveuser_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_denyrsoptointeractiveuser_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_disableautoadmupdate", + "displayName": "Turn off automatic update of ADM files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_disableautoadmupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_disableautoadmupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_enforcepoliciesonly", + "displayName": "Enforce Show Policies Only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_enforcepoliciesonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_enforcepoliciesonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gpdcoptions", + "displayName": "Configure Group Policy domain controller selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gpdcoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gpdcoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gpdcoptions_gpdcoptionsdesc", + "displayName": "When Group Policy Object Editor is selecting a domain controller to use, it should: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gpdcoptions_gpdcoptionsdesc_1", + "displayName": "Use the Primary Domain Controller", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gpdcoptions_gpdcoptionsdesc_2", + "displayName": "Inherit from Active Directory Snap-ins", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gpdcoptions_gpdcoptionsdesc_3", + "displayName": "Use any available domain controller", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_1", + "displayName": "Configure Group Policy slow link detection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_gptransferrate_1_transferrateop1", + "displayName": "Connection speed (Kbps): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrateuser", + "displayName": "Set Group Policy refresh interval for users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrateuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrateuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrateuser_gprefreshrate3", + "displayName": "Minutes: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_grouppolicyrefreshrateuser_gprefreshrateoffset3", + "displayName": "Minutes: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_newgpodisplayname", + "displayName": "Set default name for new Group Policy objects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_newgpodisplayname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_newgpodisplayname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_newgpodisplayname_newgpodisplaynameheading", + "displayName": "GPO Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_newgpolinksdisabled", + "displayName": "Create new Group Policy Object links disabled by default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_newgpolinksdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_newgpolinksdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions", + "displayName": "Process Mitigation Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_processmitigationoptionslist", + "displayName": "Process Mitigation Options (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_processmitigationoptionslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_grouppolicy_processmitigationoptions_processmitigationoptionslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_help_restrictrunfromhelp", + "displayName": "Restrict these programs from being launched from Help (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_help_restrictrunfromhelp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_help_restrictrunfromhelp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_help_restrictrunfromhelp_restrictrunfromhelp_edit", + "displayName": "Enter executables separated by commas: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hpexplicitfeedback", + "displayName": "Turn off Help Ratings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hpexplicitfeedback_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hpexplicitfeedback_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hpimplicitfeedback", + "displayName": "Turn off Help Experience Improvement Program (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hpimplicitfeedback_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hpimplicitfeedback_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hponlineassistance", + "displayName": "Turn off Windows Online (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hponlineassistance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_helpandsupport_hponlineassistance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_disablehttpprinting_1", + "displayName": "Turn off printing over HTTP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_disablehttpprinting_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_disablehttpprinting_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_disablewebpnpdownload_1", + "displayName": "Turn off downloading of print drivers over HTTP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_disablewebpnpdownload_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_disablewebpnpdownload_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_internetmanagement_restrictcommunication_1", + "displayName": "Restrict Internet communication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_internetmanagement_restrictcommunication_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_internetmanagement_restrictcommunication_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellnouseinternetopenwith_1", + "displayName": "Turn off Internet File Association service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_shellnouseinternetopenwith_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellnouseinternetopenwith_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellnousestoreopenwith_1", + "displayName": "Turn off access to the Store (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_shellnousestoreopenwith_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellnousestoreopenwith_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellpreventwpwdownload_1", + "displayName": "Turn off Internet download for Web publishing and online ordering wizards (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_shellpreventwpwdownload_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellpreventwpwdownload_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellremoveorderprints_1", + "displayName": "Turn off the \"Order Prints\" picture task (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_shellremoveorderprints_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellremoveorderprints_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellremovepublishtoweb_1", + "displayName": "Turn off the \"Publish to Web\" task for files and folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_shellremovepublishtoweb_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_shellremovepublishtoweb_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_winmsg_noinstrumentation_1", + "displayName": "Turn off the Windows Messenger Customer Experience Improvement Program (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_icm_winmsg_noinstrumentation_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_icm_winmsg_noinstrumentation_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_disableexplorerrunlegacy_1", + "displayName": "Do not process the legacy run list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_logon_disableexplorerrunlegacy_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_disableexplorerrunlegacy_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_disableexplorerrunoncelegacy_1", + "displayName": "Do not process the run once list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_logon_disableexplorerrunoncelegacy_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_disableexplorerrunoncelegacy_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_nowelcometips_1", + "displayName": "Do not display the Getting Started welcome screen at logon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_logon_nowelcometips_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_nowelcometips_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_run_1", + "displayName": "Run these programs at user logon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_logon_run_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_run_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_logon_run_1_runlistbox1", + "displayName": "Items to run at logon (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_activexcontrol", + "displayName": "ActiveX Control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_activexcontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_activexcontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_extendview", + "displayName": "Extended View (Web View) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_extendview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_extendview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_linktoweb", + "displayName": "Link to Web Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_linktoweb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_linktoweb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_restrict_author", + "displayName": "Restrict the user from entering author mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_restrict_author_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_restrict_author_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_restrict_to_permitted_snapins", + "displayName": "Restrict users to the explicitly permitted list of snap-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_restrict_to_permitted_snapins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmc_mmc_restrict_to_permitted_snapins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activedirdomtrusts", + "displayName": "Active Directory Domains and Trusts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activedirdomtrusts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activedirdomtrusts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activedirsitesservices", + "displayName": "Active Directory Sites and Services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activedirsitesservices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activedirsitesservices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activediruserscomp", + "displayName": "Active Directory Users and Computers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activediruserscomp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_activediruserscomp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admcomputers_1", + "displayName": "Administrative Templates (Computers) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admcomputers_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admcomputers_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admcomputers_2", + "displayName": "Administrative Templates (Computers) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admcomputers_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admcomputers_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admusers_1", + "displayName": "Administrative Templates (Users) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admusers_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admusers_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admusers_2", + "displayName": "Administrative Templates (Users) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admusers_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_admusers_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_adsi", + "displayName": "ADSI Edit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_adsi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_adsi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_appletalkrouting", + "displayName": "AppleTalk Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_appletalkrouting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_appletalkrouting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_authman", + "displayName": "Authorization Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_authman_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_authman_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certauth", + "displayName": "Certification Authority (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certauth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certauth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certauthpolset", + "displayName": "Certification Authority Policy Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certauthpolset_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certauthpolset_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certs", + "displayName": "Certificates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certstemplate", + "displayName": "Certificate Templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certstemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_certstemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_componentservices", + "displayName": "Component Services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_componentservices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_componentservices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_computermanagement", + "displayName": "Computer Management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_computermanagement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_computermanagement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_connectionsharingnat", + "displayName": "Connection Sharing (NAT) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_connectionsharingnat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_connectionsharingnat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dcomcfg", + "displayName": "DCOM Configuration Extension (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dcomcfg_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dcomcfg_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_devicemanager_1", + "displayName": "Device Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_devicemanager_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_devicemanager_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_devicemanager_2", + "displayName": "Device Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_devicemanager_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_devicemanager_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dfs", + "displayName": "Distributed File System (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dfs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dfs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dhcprelaymgmt", + "displayName": "DHCP Relay Management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dhcprelaymgmt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_dhcprelaymgmt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_diskdefrag", + "displayName": "Disk Defragmenter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_diskdefrag_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_diskdefrag_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_diskmgmt", + "displayName": "Disk Management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_diskmgmt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_diskmgmt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_enterprisepki", + "displayName": "Enterprise PKI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_enterprisepki_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_enterprisepki_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_1", + "displayName": "Event Viewer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_2", + "displayName": "Event Viewer (Windows Vista) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_3", + "displayName": "Event Viewer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_4", + "displayName": "Event Viewer (Windows Vista) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_eventviewer_4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_failoverclusters", + "displayName": "Failover Clusters Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_failoverclusters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_failoverclusters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_faxservice", + "displayName": "FAX Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_faxservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_faxservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_folderredirection_1", + "displayName": "Folder Redirection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_folderredirection_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_folderredirection_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_folderredirection_2", + "displayName": "Folder Redirection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_folderredirection_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_folderredirection_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_frontpageext", + "displayName": "FrontPage Server Extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_frontpageext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_frontpageext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicymanagementsnapin", + "displayName": "Group Policy Management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicymanagementsnapin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicymanagementsnapin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicysnapin", + "displayName": "Group Policy Object Editor (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicysnapin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicysnapin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicytab", + "displayName": "Group Policy tab for Active Directory Tools (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicytab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_grouppolicytab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_hra", + "displayName": "Health Registration Authority (HRA) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_hra_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_hra_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ias", + "displayName": "Internet Authentication Service (IAS) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ias_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ias_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iaslogging", + "displayName": "IAS Logging (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iaslogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iaslogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iemaintenance_1", + "displayName": "Internet Explorer Maintenance (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iemaintenance_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iemaintenance_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iemaintenance_2", + "displayName": "Internet Explorer Maintenance (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iemaintenance_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iemaintenance_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_igmprouting", + "displayName": "IGMP Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_igmprouting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_igmprouting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iis", + "displayName": "Internet Information Services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iis_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iis_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_indexingservice", + "displayName": "Indexing Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_indexingservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_indexingservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iprouting", + "displayName": "IP Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iprouting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_iprouting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmanage", + "displayName": "IP Security Policy Management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmanage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmanage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmanage_gp", + "displayName": "IP Security Policy Management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmanage_gp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmanage_gp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmonitor", + "displayName": "IP Security Monitor (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmonitor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipsecmonitor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxriprouting", + "displayName": "IPX RIP Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxriprouting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxriprouting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxrouting", + "displayName": "IPX Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxrouting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxrouting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxsaprouting", + "displayName": "IPX SAP Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxsaprouting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ipxsaprouting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_localusersgroups", + "displayName": "Local Users and Groups (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_localusersgroups_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_localusersgroups_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_logicalmappeddrives", + "displayName": "Logical and Mapped Drives (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_logicalmappeddrives_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_logicalmappeddrives_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_napsnap", + "displayName": "NAP Client Configuration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_napsnap_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_napsnap_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_napsnap_gp", + "displayName": "NAP Client Configuration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_napsnap_gp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_napsnap_gp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_net_framework", + "displayName": ".Net Framework Configuration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_net_framework_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_net_framework_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_npsui", + "displayName": "Network Policy Server (NPS) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_npsui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_npsui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ocsp", + "displayName": "Online Responder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ocsp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ocsp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ospfrouting", + "displayName": "OSPF Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ospfrouting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ospfrouting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_perflogsalerts", + "displayName": "Performance Logs and Alerts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_perflogsalerts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_perflogsalerts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_publickey", + "displayName": "Public Key Policies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_publickey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_publickey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_qosadmission", + "displayName": "QoS Admission Control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_qosadmission_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_qosadmission_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ras_dialinuser", + "displayName": "RAS Dialin - User Node (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ras_dialinuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ras_dialinuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remoteaccess", + "displayName": "Remote Access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remoteaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remoteaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remotedesktop", + "displayName": "Remote Desktops (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remotedesktop_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remotedesktop_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remstore", + "displayName": "Removable Storage (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remstore_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_remstore_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_resultantsetofpolicysnapin", + "displayName": "Resultant Set of Policy snap-in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_resultantsetofpolicysnapin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_resultantsetofpolicysnapin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_riprouting", + "displayName": "RIP Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_riprouting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_riprouting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ris", + "displayName": "Remote Installation Services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ris_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_ris_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_routing", + "displayName": "Routing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_routing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_routing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_rra", + "displayName": "Routing and Remote Access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_rra_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_rra_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_rsm", + "displayName": "Removable Storage Management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_rsm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_rsm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sca", + "displayName": "Security Configuration and Analysis (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sca_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sca_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsmachine_1", + "displayName": "Scripts (Startup/Shutdown) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsmachine_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsmachine_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsmachine_2", + "displayName": "Scripts (Startup/Shutdown) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsmachine_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsmachine_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsuser_1", + "displayName": "Scripts (Logon/Logoff) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsuser_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsuser_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsuser_2", + "displayName": "Scripts (Logon/Logoff) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsuser_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_scriptsuser_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitysettings_1", + "displayName": "Security Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitysettings_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitysettings_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitysettings_2", + "displayName": "Security Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitysettings_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitysettings_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitytemplates", + "displayName": "Security Templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitytemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_securitytemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sendconsolemessage", + "displayName": "Send Console Message (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sendconsolemessage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sendconsolemessage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_servermanager", + "displayName": "Server Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_servermanager_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_servermanager_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_servicedependencies", + "displayName": "Service Dependencies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_servicedependencies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_servicedependencies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_services", + "displayName": "Services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_services_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_services_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sharedfolders", + "displayName": "Shared Folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sharedfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sharedfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sharedfolders_ext", + "displayName": "Shared Folders Ext (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sharedfolders_ext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sharedfolders_ext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_smtpprotocol", + "displayName": "SMTP Protocol (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_smtpprotocol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_smtpprotocol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_snmp", + "displayName": "SNMP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_snmp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_snmp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstalationcomputers_1", + "displayName": "Software Installation (Computers) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstalationcomputers_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstalationcomputers_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstalationcomputers_2", + "displayName": "Software Installation (Computers) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstalationcomputers_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstalationcomputers_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstallationusers_1", + "displayName": "Software Installation (Users) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstallationusers_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstallationusers_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstallationusers_2", + "displayName": "Software Installation (Users) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstallationusers_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_softwareinstallationusers_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sysinfo", + "displayName": "System Information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sysinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sysinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sysprop", + "displayName": "System Properties (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sysprop_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_sysprop_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_telephony", + "displayName": "Telephony (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_telephony_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_telephony_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_terminalservices", + "displayName": "Remote Desktop Services Configuration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_terminalservices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_terminalservices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_tpmmanagement", + "displayName": "TPM Management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_tpmmanagement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_tpmmanagement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_windowsfirewall", + "displayName": "Windows Firewall with Advanced Security (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_windowsfirewall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_windowsfirewall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_windowsfirewall_gp", + "displayName": "Windows Firewall with Advanced Security (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_windowsfirewall_gp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_windowsfirewall_gp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirednetworkpolicy", + "displayName": "Wired Network (IEEE 802.3) Policies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirednetworkpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirednetworkpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirelessmon", + "displayName": "Wireless Monitor (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirelessmon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirelessmon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirelessnetworkpolicy", + "displayName": "Wireless Network (IEEE 802.11) Policies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirelessnetworkpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wirelessnetworkpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wmi", + "displayName": "WMI Control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wmi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mmcsnapins_mmc_wmi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mobilepcmobilitycenter_mobilitycenterenable_1", + "displayName": "Turn off Windows Mobility Center (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mobilepcmobilitycenter_mobilitycenterenable_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mobilepcmobilitycenter_mobilitycenterenable_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_mobilepcpresentationsettings_presentationsettingsenable_1", + "displayName": "Turn off Windows presentation settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_mobilepcpresentationsettings_presentationsettingsenable_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_mobilepcpresentationsettings_presentationsettingsenable_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_msi_disablemedia", + "displayName": "Prevent removable media source for any installation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_msi_disablemedia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_msi_disablemedia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_msi_disablerollback_1", + "displayName": "Prohibit rollback (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_msi_disablerollback_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_msi_disablerollback_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_msi_searchorder", + "displayName": "Specify the order in which Windows Installer searches for installation files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_msi_searchorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_msi_searchorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_msi_searchorder_searchorder", + "displayName": "Search order (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_addremovecomponents", + "displayName": "Prohibit adding and removing components for a LAN or remote access connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_addremovecomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_addremovecomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_advancedsettings", + "displayName": "Prohibit access to the Advanced Settings item on the Advanced menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_advancedsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_advancedsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_allowadvancedtcpipconfig", + "displayName": "Prohibit TCP/IP advanced configuration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_allowadvancedtcpipconfig_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_allowadvancedtcpipconfig_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_changebindstate", + "displayName": "Prohibit Enabling/Disabling components of a LAN connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_changebindstate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_changebindstate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_deletealluserconnection", + "displayName": "Ability to delete all user remote access connections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_deletealluserconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_deletealluserconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_deleteconnection", + "displayName": "Prohibit deletion of remote access connections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_deleteconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_deleteconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_dialupprefs", + "displayName": "Prohibit access to the Remote Access Preferences item on the Advanced menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_dialupprefs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_dialupprefs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_enableadminprohibits", + "displayName": "Enable Windows 2000 Network Connections settings for Administrators (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_enableadminprohibits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_enableadminprohibits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_ipstatechecking", + "displayName": "Turn off notifications when a connection has only limited or no connectivity (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_ipstatechecking_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_ipstatechecking_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanchangeproperties", + "displayName": "Prohibit access to properties of components of a LAN connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanchangeproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanchangeproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanconnect", + "displayName": "Ability to Enable/Disable a LAN connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanconnect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanconnect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanproperties", + "displayName": "Prohibit access to properties of a LAN connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_lanproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_newconnectionwizard", + "displayName": "Prohibit access to the New Connection Wizard (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_newconnectionwizard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_newconnectionwizard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasalluserproperties", + "displayName": "Ability to change properties of an all user remote access connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasalluserproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasalluserproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_raschangeproperties", + "displayName": "Prohibit access to properties of components of a remote access connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_raschangeproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_raschangeproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasconnect", + "displayName": "Prohibit connecting and disconnecting a remote access connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasconnect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasconnect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasmyproperties", + "displayName": "Prohibit changing properties of a private remote access connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasmyproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_rasmyproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamealluserrasconnection", + "displayName": "Ability to rename all user remote access connections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamealluserrasconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamealluserrasconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renameconnection", + "displayName": "Ability to rename LAN connections or remote access connections available to all users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renameconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renameconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamelanconnection", + "displayName": "Ability to rename LAN connections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamelanconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamelanconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamemyrasconnection", + "displayName": "Prohibit renaming private remote access connections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamemyrasconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_renamemyrasconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_statistics", + "displayName": "Prohibit viewing of status for an active connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_statistics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_networkconnections_nc_statistics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_1", + "displayName": "Specify administratively assigned Offline Files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_1_lbl_assignedofflinefileslist", + "displayName": "Files and Folders: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_1_lbl_assignedofflinefileslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_assignedofflinefiles_1_lbl_assignedofflinefileslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_1", + "displayName": "Non-default server disconnect actions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_1_lbl_customgoofflineactionslist", + "displayName": "Customize actions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_1_lbl_customgoofflineactionslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_customgoofflineactions_1_lbl_customgoofflineactionslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_eventlogginglevel_1", + "displayName": "Event logging level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_eventlogginglevel_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_eventlogginglevel_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_eventlogginglevel_1_lbl_eventlogginglevelspin", + "displayName": "Enter [0-3]: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_1", + "displayName": "Action on server disconnect (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_1_lbl_goofflineactioncombo", + "displayName": "Action: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_1_lbl_goofflineactioncombo_0", + "displayName": "Work offline", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_goofflineaction_1_lbl_goofflineactioncombo_1", + "displayName": "Never go offline", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nocacheviewer_1", + "displayName": "Prevent use of Offline Files folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nocacheviewer_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nocacheviewer_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_noconfigcache_1", + "displayName": "Prohibit user configuration of Offline Files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_noconfigcache_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_noconfigcache_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nomakeavailableoffline_1", + "displayName": "Remove \"Make Available Offline\" command (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nomakeavailableoffline_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nomakeavailableoffline_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_1", + "displayName": "Remove \"Make Available Offline\" for these files and folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_1_lbl_nopinfileslist", + "displayName": "Files and Folders: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_1_lbl_nopinfileslist_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_nopinfiles_1_lbl_nopinfileslist_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_noreminders_1", + "displayName": "Turn off reminder balloons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_noreminders_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_noreminders_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_reminderfreq_1", + "displayName": "Reminder balloon frequency (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_reminderfreq_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_reminderfreq_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_reminderfreq_1_lbl_reminderfreqspin", + "displayName": "Minutes: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_reminderinittimeout_1", + "displayName": "Initial reminder balloon lifetime (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_reminderinittimeout_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_reminderinittimeout_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_reminderinittimeout_1_lbl_reminderinittimeoutspin", + "displayName": "Seconds: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_remindertimeout_1", + "displayName": "Reminder balloon lifetime (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_remindertimeout_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_remindertimeout_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_remindertimeout_1_lbl_remindertimeoutspin", + "displayName": "Seconds: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogoff_1", + "displayName": "Synchronize all offline files before logging off (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogoff_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogoff_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogon_1", + "displayName": "Synchronize all offline files when logging on (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogon_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatlogon_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_1", + "displayName": "Synchronize offline files before suspend (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_1_lbl_syncatsuspendcombo", + "displayName": "Action: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_1_lbl_syncatsuspendcombo_0", + "displayName": "Quick", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_syncatsuspend_1_lbl_syncatsuspendcombo_1", + "displayName": "Full", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_workofflinedisabled_1", + "displayName": "Remove \"Work offline\" command (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_workofflinedisabled_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_offlinefiles_pol_workofflinedisabled_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_pentraining_pentrainingoff_1", + "displayName": "Turn off Tablet PC Pen Training (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_pentraining_pentrainingoff_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_pentraining_pentrainingoff_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_power_pw_promptpasswordonresume", + "displayName": "Prompt for password on resume from hibernate/suspend (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_power_pw_promptpasswordonresume_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_power_pw_promptpasswordonresume_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablemodulelogging", + "displayName": "Turn on Module Logging (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablemodulelogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablemodulelogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablemodulelogging_listbox_modulenames", + "displayName": "Module Names (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts", + "displayName": "Turn on Script Execution (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_executionpolicy", + "displayName": "Execution Policy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_executionpolicy_allsigned", + "displayName": "Allow only signed scripts", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_executionpolicy_remotesigned", + "displayName": "Allow local scripts and remote signed scripts", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enablescripts_executionpolicy_unrestricted", + "displayName": "Allow all scripts", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting", + "displayName": "Turn on PowerShell Transcription (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_enableinvocationheader", + "displayName": "Include invocation headers: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_enableinvocationheader_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_enableinvocationheader_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enabletranscripting_outputdirectory", + "displayName": "Transcript output directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enableupdatehelpdefaultsourcepath", + "displayName": "Set the default source path for Update-Help (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enableupdatehelpdefaultsourcepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enableupdatehelpdefaultsourcepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_powershellexecutionpolicy_enableupdatehelpdefaultsourcepath_sourcepathforupdatehelp", + "displayName": "Default Source Path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablebackuprestore_1", + "displayName": "Prevent restoring previous versions from backups (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablebackuprestore_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablebackuprestore_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablelocalpage_1", + "displayName": "Hide previous versions list for local files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablelocalpage_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablelocalpage_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablelocalrestore_1", + "displayName": "Prevent restoring local previous versions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablelocalrestore_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disablelocalrestore_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disableremotepage_1", + "displayName": "Hide previous versions list for remote files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disableremotepage_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disableremotepage_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disableremoterestore_1", + "displayName": "Prevent restoring remote previous versions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disableremoterestore_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_disableremoterestore_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_hidebackupentries_1", + "displayName": "Hide previous versions of files on backup location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_previousversions_hidebackupentries_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_previousversions_hidebackupentries_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_downlevelbrowse", + "displayName": "Browse the network to find printers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_printing_downlevelbrowse_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_downlevelbrowse_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_intranetprintersurl", + "displayName": "Browse a common web site to find printers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_printing_intranetprintersurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_intranetprintersurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_intranetprintersurl_intranetprintersurl_link", + "displayName": "Printers Page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_legacydefaultprintermode", + "displayName": "Turn off Windows default printer management (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_printing_legacydefaultprintermode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_legacydefaultprintermode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_nodeleteprinter", + "displayName": "Prevent deletion of printers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_printing_nodeleteprinter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_nodeleteprinter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_packagepointandprintonly", + "displayName": "Only use Package Point and print (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_printing_packagepointandprintonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_packagepointandprintonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_packagepointandprintserverlist", + "displayName": "Package Point and print - Approved servers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_printing_packagepointandprintserverlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_packagepointandprintserverlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_packagepointandprintserverlist_packagepointandprintserverlist_edit", + "displayName": "Enter fully qualified server names (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_printerdirectorysearchscope", + "displayName": "Default Active Directory path when searching for printers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_printing_printerdirectorysearchscope_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_printerdirectorysearchscope_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_printing_printerdirectorysearchscope_printerdirectorysearchscope_name", + "displayName": "Default Active Directory path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_nodefaultprograms", + "displayName": "Hide \"Set Program Access and Computer Defaults\" page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_programs_nodefaultprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_nodefaultprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_nogetprograms", + "displayName": "Hide \"Get Programs\" page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_programs_nogetprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_nogetprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_noinstalledupdates", + "displayName": "Hide \"Installed Updates\" page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_programs_noinstalledupdates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_noinstalledupdates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_noprogramsandfeatures", + "displayName": "Hide \"Programs and Features\" page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_programs_noprogramsandfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_noprogramsandfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_noprogramscpl", + "displayName": "Hide the Programs Control Panel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_programs_noprogramscpl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_noprogramscpl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_nowindowsfeatures", + "displayName": "Hide \"Windows Features\" (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_programs_nowindowsfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_nowindowsfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_nowindowsmarketplace", + "displayName": "Hide \"Windows Marketplace\" (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_programs_nowindowsmarketplace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_programs_nowindowsmarketplace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_accessrights_reboottime_1", + "displayName": "Set time (in seconds) to force reboot (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_accessrights_reboottime_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_accessrights_reboottime_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_accessrights_reboottime_1_accessrights_reboottime_seconds", + "displayName": "Time (in seconds): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyread_access_1", + "displayName": "CD and DVD: Deny read access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyread_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denyread_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denywrite_access_1", + "displayName": "CD and DVD: Deny write access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denywrite_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_cdanddvd_denywrite_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_customclasses_denyread_access_1", + "displayName": "Custom Classes: Deny read access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_customclasses_denyread_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_customclasses_denyread_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_customclasses_denyread_access_1_customclasses_list", + "displayName": "GUID for custom removable storage class: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_customclasses_denywrite_access_1", + "displayName": "Custom Classes: Deny write access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_customclasses_denywrite_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_customclasses_denywrite_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_customclasses_denywrite_access_1_customclasses_list", + "displayName": "GUID for custom removable storage class: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyread_access_1", + "displayName": "Floppy Drives: Deny read access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyread_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_floppydrives_denyread_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_floppydrives_denywrite_access_1", + "displayName": "Floppy Drives: Deny write access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_floppydrives_denywrite_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_floppydrives_denywrite_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyread_access_1", + "displayName": "Removable Disks: Deny read access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyread_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removabledisks_denyread_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removabledisks_denywrite_access_1", + "displayName": "Removable Disks: Deny write access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removabledisks_denywrite_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removabledisks_denywrite_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removablestorageclasses_denyall_access_1", + "displayName": "All Removable Storage classes: Deny all access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removablestorageclasses_denyall_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_removablestorageclasses_denyall_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyread_access_1", + "displayName": "Tape Drives: Deny read access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyread_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_tapedrives_denyread_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_tapedrives_denywrite_access_1", + "displayName": "Tape Drives: Deny write access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_tapedrives_denywrite_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_tapedrives_denywrite_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_wpddevices_denyread_access_1", + "displayName": "WPD Devices: Deny read access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_wpddevices_denyread_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_wpddevices_denyread_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_wpddevices_denywrite_access_1", + "displayName": "WPD Devices: Deny write access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_wpddevices_denywrite_access_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_removablestorage_wpddevices_denywrite_access_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_legacy_logon_script_hidden", + "displayName": "Run legacy logon scripts hidden (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_legacy_logon_script_hidden_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_legacy_logon_script_hidden_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logoff_script_visible", + "displayName": "Display instructions in logoff scripts as they run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logoff_script_visible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logoff_script_visible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logon_script_sync_1", + "displayName": "Run logon scripts synchronously (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logon_script_sync_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logon_script_sync_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logon_script_visible", + "displayName": "Display instructions in logon scripts as they run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logon_script_visible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_logon_script_visible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_user_ps_scripts_first", + "displayName": "Run Windows PowerShell scripts first at user logon, logoff (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_user_ps_scripts_first_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_scripts_run_user_ps_scripts_first_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablelocation_1", + "displayName": "Turn off location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablelocation_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablelocation_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablelocationscripting_1", + "displayName": "Turn off location scripting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablelocationscripting_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablelocationscripting_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablesensors_1", + "displayName": "Turn off sensors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablesensors_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_sensors_disablesensors_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_sharedfolders_publishdfsroots", + "displayName": "Allow DFS roots to be published (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_sharedfolders_publishdfsroots_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_sharedfolders_publishdfsroots_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_sharedfolders_publishsharedfolders", + "displayName": "Allow shared folders to be published (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_sharedfolders_publishsharedfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_sharedfolders_publishsharedfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_sharing_noinplacesharing", + "displayName": "Prevent users from sharing files within their profile. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_sharing_noinplacesharing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_sharing_noinplacesharing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disablecmd", + "displayName": "Prevent access to the command prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disablecmd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disablecmd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disablecmd_disablecmdscripts", + "displayName": "Disable the command prompt script processing also? (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disablecmd_disablecmdscripts_1", + "displayName": "Yes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disablecmd_disablecmdscripts_2", + "displayName": "No", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disableregedit", + "displayName": "Prevent access to registry editing tools (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disableregedit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disableregedit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disableregedit_disableregeditmode", + "displayName": "Disable regedit from running silently? (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disableregedit_disableregeditmode_2", + "displayName": "Yes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disableregedit_disableregeditmode_1", + "displayName": "No", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disallowapps", + "displayName": "Don't run specified Windows applications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disallowapps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disallowapps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_disallowapps_disallowappslist", + "displayName": "List of disallowed applications (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_restrictapps", + "displayName": "Run only specified Windows applications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_restrictapps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_restrictapps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_shellcommandpromptregedittools_restrictapps_restrictapps_restrictappslist", + "displayName": "List of allowed applications (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_soundrec_soundrec_diableapplication_titletext_1", + "displayName": "Do not allow Sound Recorder to run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_soundrec_soundrec_diableapplication_titletext_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_soundrec_soundrec_diableapplication_titletext_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_addsearchinternetlinkinstartmenu", + "displayName": "Add Search Internet link to Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_addsearchinternetlinkinstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_addsearchinternetlinkinstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_clearrecentdocsonexit", + "displayName": "Clear history of recently opened documents on exit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_clearrecentdocsonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_clearrecentdocsonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_clearrecentprogfornewuserinstartmenu", + "displayName": "Clear the recent programs list for new users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_clearrecentprogfornewuserinstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_clearrecentprogfornewuserinstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_cleartilesonexit", + "displayName": "Clear tile notifications during log on (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_cleartilesonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_cleartilesonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_desktopappsfirstinappsview", + "displayName": "List desktop apps first in the Apps view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_desktopappsfirstinappsview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_desktopappsfirstinappsview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_disableglobalsearchonappsview", + "displayName": "Search just apps from the Apps view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_disableglobalsearchonappsview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_disableglobalsearchonappsview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_forcestartmenulogoff", + "displayName": "Add Logoff to the Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_forcestartmenulogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_forcestartmenulogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_gotodesktoponsignin", + "displayName": "Go to the desktop instead of Start when signing in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_gotodesktoponsignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_gotodesktoponsignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_greymsiads", + "displayName": "Gray unavailable Windows Installer programs Start Menu shortcuts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_greymsiads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_greymsiads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_intellimenus", + "displayName": "Turn off personalized menus (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_intellimenus_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_intellimenus_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_locktaskbar", + "displayName": "Lock the Taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_locktaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_locktaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_memcheckboxinrundlg", + "displayName": "Add \"Run in Separate Memory Space\" check box to Run dialog box (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_memcheckboxinrundlg_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_memcheckboxinrundlg_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noautotraynotify", + "displayName": "Turn off notification area cleanup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noautotraynotify_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noautotraynotify_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noballoontip", + "displayName": "Remove Balloon Tips on Start Menu items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noballoontip_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noballoontip_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nochangestartmenu", + "displayName": "Prevent users from customizing their Start Screen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nochangestartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nochangestartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noclose", + "displayName": "Remove and prevent access to the Shut Down, Restart, Sleep, and Hibernate commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noclose_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noclose_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nocommongroups", + "displayName": "Remove common program groups from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nocommongroups_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nocommongroups_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nofavoritesmenu", + "displayName": "Remove Favorites menu from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nofavoritesmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nofavoritesmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nofind", + "displayName": "Remove Search link from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nofind_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nofind_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nogamesfolderonstartmenu", + "displayName": "Remove Games link from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nogamesfolderonstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nogamesfolderonstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nohelp", + "displayName": "Remove Help menu from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nohelp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nohelp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noinstrumentation", + "displayName": "Turn off user tracking (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noinstrumentation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noinstrumentation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist", + "displayName": "Remove All Programs list from the Start menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown", + "displayName": "Choose one of the following actions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown_0", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown_3", + "displayName": "Collapse", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown_2", + "displayName": "Collapse and disable setting", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nomoreprogramslist_nomoreprogramslistdropdown_1", + "displayName": "Remove and disable setting", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nonetanddialupconnect", + "displayName": "Remove Network Connections from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nonetanddialupconnect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nonetanddialupconnect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nopinnedprograms", + "displayName": "Remove pinned programs list from the Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nopinnedprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nopinnedprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_norecentdocsmenu", + "displayName": "Remove Recent Items menu from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_norecentdocsmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_norecentdocsmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noresolvesearch", + "displayName": "Do not use the search-based method when resolving shell shortcuts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noresolvesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noresolvesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noresolvetrack", + "displayName": "Do not use the tracking-based method when resolving shell shortcuts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noresolvetrack_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_noresolvetrack_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_norun", + "displayName": "Remove Run menu from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_norun_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_norun_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchcomminstartmenu", + "displayName": "Do not search communications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchcomminstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchcomminstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchcomputerlinkinstartmenu", + "displayName": "Remove Search Computer link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchcomputerlinkinstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchcomputerlinkinstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearcheverywherelinkinstartmenu", + "displayName": "Remove See More Results / Search Everywhere link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearcheverywherelinkinstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearcheverywherelinkinstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchfilesinstartmenu", + "displayName": "Do not search for files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchfilesinstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchfilesinstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchinternetinstartmenu", + "displayName": "Do not search Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchinternetinstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchinternetinstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchprogramsinstartmenu", + "displayName": "Do not search programs and Control Panel items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchprogramsinstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosearchprogramsinstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosetfolders", + "displayName": "Remove programs on Settings menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosetfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosetfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosettaskbar", + "displayName": "Prevent changes to Taskbar and Start Menu Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosettaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosettaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmconfigureprograms", + "displayName": "Remove Default Programs link from the Start menu. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmconfigureprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmconfigureprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmydocuments", + "displayName": "Remove Documents icon from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmydocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmydocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmymusic", + "displayName": "Remove Music icon from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmymusic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmymusic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmynetworkplaces", + "displayName": "Remove Network icon from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmynetworkplaces_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmynetworkplaces_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmypictures", + "displayName": "Remove Pictures icon from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmypictures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nosmmypictures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenudownload", + "displayName": "Remove Downloads link from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenudownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenudownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenuhomegroup", + "displayName": "Remove Homegroup link from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenuhomegroup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenuhomegroup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenurecordedtv", + "displayName": "Remove Recorded TV link from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenurecordedtv_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenurecordedtv_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenusubfolders", + "displayName": "Remove user's folders from the Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenusubfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenusubfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenuvideos", + "displayName": "Remove Videos link from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenuvideos_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartmenuvideos_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartpage", + "displayName": "Force classic Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nostartpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notaskbarclock", + "displayName": "Remove Clock from the system notification area (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notaskbarclock_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notaskbarclock_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notaskgrouping", + "displayName": "Prevent grouping of taskbar items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notaskgrouping_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notaskgrouping_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notoolbarsontaskbar", + "displayName": "Do not display any custom toolbars in the taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notoolbarsontaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notoolbarsontaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notraycontextmenu", + "displayName": "Remove access to the context menus for the taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notraycontextmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notraycontextmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notrayitemsdisplay", + "displayName": "Hide the notification area (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notrayitemsdisplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_notrayitemsdisplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nouninstallfromstart", + "displayName": "Prevent users from uninstalling applications from Start (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nouninstallfromstart_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nouninstallfromstart_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nouserfolderonstartmenu", + "displayName": "Remove user folder link from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nouserfolderonstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nouserfolderonstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nousernameonstartmenu", + "displayName": "Remove user name from Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nousernameonstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nousernameonstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nowindowsupdate", + "displayName": "Remove links and access to Windows Update (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nowindowsupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_nowindowsupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction", + "displayName": "Change Start Menu power button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_powerbuttonactiondropdown", + "displayName": "Choose one of the following actions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_powerbuttonactiondropdown_2", + "displayName": "Shut Down", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_powerbuttonactiondropdown_16", + "displayName": "Sleep", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_powerbuttonactiondropdown_1", + "displayName": "Log off", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_powerbuttonactiondropdown_512", + "displayName": "Lock", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_powerbuttonactiondropdown_4", + "displayName": "Restart", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_powerbuttonactiondropdown_256", + "displayName": "Switch User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_powerbuttonaction_powerbuttonactiondropdown_64", + "displayName": "Hibernate", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_quicklaunchenabled", + "displayName": "Show QuickLaunch on Taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_quicklaunchenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_quicklaunchenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_removeundockpcbutton", + "displayName": "Remove the \"Undock PC\" button from the Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_removeundockpcbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_removeundockpcbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showappsviewonstart", + "displayName": "Show the Apps view automatically when the user goes to Start (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showappsviewonstart_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showappsviewonstart_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showrunasdifferentuserinstart", + "displayName": "Show \"Run as different user\" command on Start (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showrunasdifferentuserinstart_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showrunasdifferentuserinstart_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showruninstartmenu", + "displayName": "Add the Run command to the Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showruninstartmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showruninstartmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showstartondisplaywithforegroundonwinkey", + "displayName": "Show Start on the display the user is using when they press the Windows logo key (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showstartondisplaywithforegroundonwinkey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_showstartondisplaywithforegroundonwinkey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_startmenulogoff", + "displayName": "Remove Logoff on the Start Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_startmenulogoff_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_startmenulogoff_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_startpinappswheninstalled", + "displayName": "Pin Apps to Start when installed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_startmenu_startpinappswheninstalled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_startpinappswheninstalled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_startmenu_startpinappswheninstalled_startpinappswheninstalled_name", + "displayName": "Add AppIDs to the list: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_autocomplete_1", + "displayName": "Turn off AutoComplete integration with Input Panel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_autocomplete_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_autocomplete_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_edgetarget_1", + "displayName": "Prevent Input Panel tab from appearing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_edgetarget_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_edgetarget_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptarget_1", + "displayName": "For tablet pen input, don’t show the Input Panel icon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptarget_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptarget_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptouchtarget_1", + "displayName": "For touch input, don’t show the Input Panel icon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptouchtarget_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_iptiptouchtarget_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1", + "displayName": "Turn off password security in Input Panel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1_passwordsecurity", + "displayName": "Turn off password security in Input Panel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1_passwordsecurity_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1_passwordsecurity_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1_passwordsecurity_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1_passwordsecurity_4", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_passwordsecurity_1_passwordsecurity_5", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_prediction_1", + "displayName": "Disable text prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_prediction_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_prediction_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_rarechar_1", + "displayName": "Include rarely used Chinese, Kanji, or Hanja characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_rarechar_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_rarechar_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_1", + "displayName": "Turn off tolerant and Z-shaped scratch-out gestures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_1_scratchout", + "displayName": "Turn off tolerant and Z-shaped scratch-out gestures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_1_scratchout_1", + "displayName": "All", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_1_scratchout_2", + "displayName": "Tolerant", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletpcinputpanel_scratchout_1_scratchout_3", + "displayName": "None", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disableinkball_1", + "displayName": "Do not allow Inkball to run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disableinkball_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disableinkball_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablejournal_1", + "displayName": "Do not allow Windows Journal to be run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablejournal_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablejournal_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablenotewriterprinting_1", + "displayName": "Do not allow printing to Journal Note Writer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablenotewriterprinting_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablenotewriterprinting_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablesnippingtool_1", + "displayName": "Do not allow Snipping Tool to run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablesnippingtool_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_disablesnippingtool_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventbackescmapping_1", + "displayName": "Prevent Back-ESC mapping (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventbackescmapping_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventbackescmapping_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventflicks_1", + "displayName": "Prevent flicks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventflicks_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventflicks_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventflickslearningmode_1", + "displayName": "Prevent Flicks Learning Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventflickslearningmode_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventflickslearningmode_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventlaunchapp_1", + "displayName": "Prevent launch an application (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventlaunchapp_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventlaunchapp_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventpressandhold_1", + "displayName": "Prevent press and hold (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventpressandhold_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_preventpressandhold_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_turnoffbuttons_1", + "displayName": "Turn off hardware buttons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_turnoffbuttons_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_turnoffbuttons_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_turnofffeedback_1", + "displayName": "Turn off pen feedback (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_turnofffeedback_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_tabletshell_turnofffeedback_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_disablenotificationcenter", + "displayName": "Remove Notifications and Action Center (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_disablenotificationcenter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_disablenotificationcenter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_enablelegacyballoonnotifications", + "displayName": "Disable showing balloon notifications as toasts. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_enablelegacyballoonnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_enablelegacyballoonnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescahealth", + "displayName": "Remove the Security and Maintenance icon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescahealth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescahealth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescanetwork", + "displayName": "Remove the networking icon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescanetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescanetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescapower", + "displayName": "Remove the battery meter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescapower_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescapower_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescavolume", + "displayName": "Remove the volume control icon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescavolume_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_hidescavolume_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_noballoonfeatureadvertisements", + "displayName": "Turn off feature advertisement balloon notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_noballoonfeatureadvertisements_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_noballoonfeatureadvertisements_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningstoretotaskbar", + "displayName": "Do not allow pinning Store app to the Taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningstoretotaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningstoretotaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningtodestinations", + "displayName": "Do not allow pinning items in Jump Lists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningtodestinations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningtodestinations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningtotaskbar", + "displayName": "Do not allow pinning programs to the Taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningtotaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nopinningtotaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_noremotedestinations", + "displayName": "Do not display or track items in Jump Lists from remote locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_noremotedestinations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_noremotedestinations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nosystraysystempromotion", + "displayName": "Turn off automatic promotion of notification icons to the taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nosystraysystempromotion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_nosystraysystempromotion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_showwindowsstoreappsontaskbar", + "displayName": "Show Windows Store apps on the taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_showwindowsstoreappsontaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_showwindowsstoreappsontaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarlockall", + "displayName": "Lock all taskbar settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarlockall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarlockall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoaddremovetoolbar", + "displayName": "Prevent users from adding or removing toolbars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoaddremovetoolbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoaddremovetoolbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnodragtoolbar", + "displayName": "Prevent users from rearranging toolbars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnodragtoolbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnodragtoolbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnomultimon", + "displayName": "Do not allow taskbars on more than one display (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnomultimon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnomultimon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnonotification", + "displayName": "Turn off all balloon notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnonotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnonotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnopinnedlist", + "displayName": "Remove pinned programs from the Taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnopinnedlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnopinnedlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoredock", + "displayName": "Prevent users from moving taskbar to another screen dock location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoredock_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoredock_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoresize", + "displayName": "Prevent users from resizing the taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoresize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnoresize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnothumbnail", + "displayName": "Turn off taskbar thumbnails (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnothumbnail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_taskbar_taskbarnothumbnail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_signed_files_1", + "displayName": "Allow .rdp files from valid publishers and user's default .rdp settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_signed_files_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_signed_files_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_unsigned_files_1", + "displayName": "Allow .rdp files from unknown publishers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_unsigned_files_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_allow_unsigned_files_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_disable_password_saving_1", + "displayName": "Do not allow passwords to be saved (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_disable_password_saving_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_disable_password_saving_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_trusted_certificate_thumbprints_2", + "displayName": "Specify SHA1 thumbprints of certificates representing trusted .rdp publishers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_trusted_certificate_thumbprints_2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_trusted_certificate_thumbprints_2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_client_trusted_certificate_thumbprints_2_trusted_certificate_thumbprints", + "displayName": "Comma-separated list of SHA1 trusted certificate thumbprints: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_easy_print_user", + "displayName": "Use Remote Desktop Easy Print printer driver first (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_easy_print_user_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_easy_print_user_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method", + "displayName": "Set RD Gateway authentication method (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_auth_mode", + "displayName": "Set RD Gateway authentication method (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_auth_mode_5", + "displayName": "Ask for credentials, use Negotiate protocol", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_auth_mode_2", + "displayName": "Ask for credentials, use NTLM protocol", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_auth_mode_1", + "displayName": "Ask for credentials, use Basic protocol", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_auth_mode_4", + "displayName": "Use locally logged-on credentials", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_auth_mode_3", + "displayName": "Use smart-card", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_override", + "displayName": "Allow users to change this setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_override_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_auth_method_ts_gateway_override_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_enable", + "displayName": "Enable connection through RD Gateway (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_enable_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_enable_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_enable_ts_gateway_override", + "displayName": "Allow users to change this setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_enable_ts_gateway_override_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_enable_ts_gateway_override_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_server", + "displayName": "Set RD Gateway server address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_server_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_server_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_server_ts_gateway_override", + "displayName": "Allow users to change this setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_server_ts_gateway_override_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_server_ts_gateway_override_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_gateway_policy_server_ts_gateway_server", + "displayName": "Set RD Gateway server address (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_radc_defaultconnection", + "displayName": "Specify default connection URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_radc_defaultconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_radc_defaultconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_radc_defaultconnection_ts_radc_defaultconnectionurl", + "displayName": "Default connection URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1", + "displayName": "Set rules for remote control of Remote Desktop Services user sessions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1_ts_remotecontrol_levels", + "displayName": "Options: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1_ts_remotecontrol_levels_0", + "displayName": "No remote control allowed", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1_ts_remotecontrol_levels_1", + "displayName": "Full Control with user's permission", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1_ts_remotecontrol_levels_2", + "displayName": "Full Control without user's permission", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1_ts_remotecontrol_levels_3", + "displayName": "View Session with user's permission", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_remotecontrol_1_ts_remotecontrol_levels_4", + "displayName": "View Session without user's permission", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_session_end_on_limit_1", + "displayName": "End session when time limits are reached (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_session_end_on_limit_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_session_end_on_limit_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1", + "displayName": "Set time limit for disconnected sessions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected", + "displayName": "End a disconnected session (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_0", + "displayName": "Never", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_60000", + "displayName": "1 minute", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_300000", + "displayName": "5 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_600000", + "displayName": "10 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_900000", + "displayName": "15 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_1800000", + "displayName": "30 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_3600000", + "displayName": "1 hour", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_7200000", + "displayName": "2 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_10800000", + "displayName": "3 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_21600000", + "displayName": "6 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_28800000", + "displayName": "8 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_43200000", + "displayName": "12 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_57600000", + "displayName": "16 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_64800000", + "displayName": "18 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_86400000", + "displayName": "1 day", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_172800000", + "displayName": "2 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_259200000", + "displayName": "3 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_345600000", + "displayName": "4 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_disconnected_timeout_1_ts_sessions_enddisconnected_432000000", + "displayName": "5 days", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1", + "displayName": "Set time limit for active but idle Remote Desktop Services sessions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext", + "displayName": "Idle session limit: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_0", + "displayName": "Never", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_60000", + "displayName": "1 minute", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_300000", + "displayName": "5 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_600000", + "displayName": "10 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_900000", + "displayName": "15 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_1800000", + "displayName": "30 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_3600000", + "displayName": "1 hour", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_7200000", + "displayName": "2 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_10800000", + "displayName": "3 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_21600000", + "displayName": "6 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_28800000", + "displayName": "8 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_43200000", + "displayName": "12 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_57600000", + "displayName": "16 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_64800000", + "displayName": "18 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_86400000", + "displayName": "1 day", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_172800000", + "displayName": "2 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_259200000", + "displayName": "3 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_345600000", + "displayName": "4 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_idle_limit_1_ts_sessions_idlelimittext_432000000", + "displayName": "5 days", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1", + "displayName": "Set time limit for active Remote Desktop Services sessions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit", + "displayName": "Active session limit : (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_0", + "displayName": "Never", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_60000", + "displayName": "1 minute", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_300000", + "displayName": "5 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_600000", + "displayName": "10 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_900000", + "displayName": "15 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_1800000", + "displayName": "30 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_3600000", + "displayName": "1 hour", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_7200000", + "displayName": "2 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_10800000", + "displayName": "3 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_21600000", + "displayName": "6 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_28800000", + "displayName": "8 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_43200000", + "displayName": "12 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_57600000", + "displayName": "16 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_64800000", + "displayName": "18 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_86400000", + "displayName": "1 day", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_172800000", + "displayName": "2 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_259200000", + "displayName": "3 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_345600000", + "displayName": "4 days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_sessions_limits_1_ts_sessions_activelimit_432000000", + "displayName": "5 days", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_start_program_1", + "displayName": "Start a program on connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_start_program_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_start_program_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_start_program_1_ts_program_name", + "displayName": "Program path and file name (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_terminalserver_ts_start_program_1_ts_workdir", + "displayName": "Working Directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbnails", + "displayName": "Turn off the display of thumbnails and only display icons. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbnails_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbnails_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbnailsonnetworkfolders", + "displayName": "Turn off the display of thumbnails and only display icons on network folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbnailsonnetworkfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbnailsonnetworkfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbsdbonnetworkfolders", + "displayName": "Turn off the caching of thumbnails in hidden thumbs.db files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbsdbonnetworkfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_thumbnails_disablethumbsdbonnetworkfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_touchinput_panningeverywhereoff_1", + "displayName": "Turn off Touch Panning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_touchinput_panningeverywhereoff_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_touchinput_panningeverywhereoff_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_touchinput_touchinputoff_1", + "displayName": "Turn off Tablet PC touch input (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_touchinput_touchinputoff_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_touchinput_touchinputoff_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_calculator", + "displayName": "Calculator (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_calculator_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_calculator_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod", + "displayName": "Configure Sync Method (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_settingsimportnotification_delay", + "displayName": "Notification delay (in seconds): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_settingsimportnotification_enable", + "displayName": "Enable notification (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_settingsimportnotification_enable_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_settingsimportnotification_enable_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_syncmethodconfiguration_list", + "displayName": "Sync Method: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_syncmethodconfiguration_list_syncprovider", + "displayName": "SyncProvider", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_syncmethodconfiguration_list_none", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configuresyncmethod_syncmethodconfiguration_list_external", + "displayName": "External", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configurevdi", + "displayName": "VDI Configuration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configurevdi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configurevdi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_configurevdi_vdicollectionname", + "displayName": "VDI Collection Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewin8sync", + "displayName": "Do not synchronize Windows Apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewin8sync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewin8sync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings", + "displayName": "Synchronize Windows settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_desktopsettings", + "displayName": "Desktop settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_desktopsettings_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_desktopsettings_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_easeofaccesssettings", + "displayName": "Ease of access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_easeofaccesssettings_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_easeofaccesssettings_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_networkprinters", + "displayName": "Network Printers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_networkprinters_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_networkprinters_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_roamingcredentialsettings", + "displayName": "Roaming Credentials (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_roamingcredentialsettings_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_roamingcredentialsettings_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_themesettings", + "displayName": "Themes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_themesettings_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_disablewindowsossettings_themesettings_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_finance", + "displayName": "Finance (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_finance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_finance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_games", + "displayName": "Games (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_games_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_games_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer10", + "displayName": "Internet Explorer 10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer11", + "displayName": "Internet Explorer 11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer8", + "displayName": "Internet Explorer 8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer8_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer8_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer9", + "displayName": "Internet Explorer 9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer9_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorer9_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorercommon", + "displayName": "Internet Explorer Common Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorercommon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_internetexplorercommon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_maps", + "displayName": "Maps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_maps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_maps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_maxpackagesizeinbytes", + "displayName": "Settings package size warning threshold (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_maxpackagesizeinbytes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_maxpackagesizeinbytes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_maxpackagesizeinbytes_maxpackagesizeinbytes", + "displayName": "Package size threshold (in bytes): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010access", + "displayName": "Microsoft Access 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010access_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010access_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010common", + "displayName": "Microsoft Office 2010 Common Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010common_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010common_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010excel", + "displayName": "Microsoft Excel 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010excel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010excel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010infopath", + "displayName": "Microsoft InfoPath 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010infopath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010infopath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010lync", + "displayName": "Microsoft Lync 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010lync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010lync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010onenote", + "displayName": "Microsoft OneNote 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010onenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010onenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010outlook", + "displayName": "Microsoft Outlook 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010outlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010outlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010powerpoint", + "displayName": "Microsoft PowerPoint 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010powerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010powerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010project", + "displayName": "Microsoft Project 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010project_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010project_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010publisher", + "displayName": "Microsoft Publisher 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010publisher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010publisher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointdesigner", + "displayName": "Microsoft SharePoint Designer 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointdesigner_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointdesigner_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointworkspace", + "displayName": "Microsoft SharePoint Workspace 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointworkspace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010sharepointworkspace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010visio", + "displayName": "Microsoft Visio 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010visio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010visio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010word", + "displayName": "Microsoft Word 2010 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010word_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2010word_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013access", + "displayName": "Microsoft Access 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013access_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013access_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013accessbackup", + "displayName": "Access 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013accessbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013accessbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013common", + "displayName": "Microsoft Office 2013 Common Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013common_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013common_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013commonbackup", + "displayName": "Common 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013commonbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013commonbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excel", + "displayName": "Microsoft Excel 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excelbackup", + "displayName": "Excel 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excelbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013excelbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopath", + "displayName": "Microsoft InfoPath 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopathbackup", + "displayName": "InfoPath 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopathbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013infopathbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lync", + "displayName": "Microsoft Lync 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lyncbackup", + "displayName": "Lync 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lyncbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013lyncbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onedriveforbusiness", + "displayName": "Microsoft OneDrive for Business 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onedriveforbusiness_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onedriveforbusiness_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenote", + "displayName": "Microsoft OneNote 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenotebackup", + "displayName": "OneNote 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenotebackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013onenotebackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlook", + "displayName": "Microsoft Outlook 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlookbackup", + "displayName": "Outlook 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlookbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013outlookbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpoint", + "displayName": "Microsoft PowerPoint 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpointbackup", + "displayName": "PowerPoint 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpointbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013powerpointbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013project", + "displayName": "Microsoft Project 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013project_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013project_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013projectbackup", + "displayName": "Project 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013projectbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013projectbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisher", + "displayName": "Microsoft Publisher 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisherbackup", + "displayName": "Publisher 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisherbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013publisherbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesigner", + "displayName": "Microsoft SharePoint Designer 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesigner_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesigner_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesignerbackup", + "displayName": "SharePoint Designer 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesignerbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013sharepointdesignerbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013uploadcenter", + "displayName": "Microsoft Office 2013 Upload Center (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013uploadcenter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013uploadcenter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visio", + "displayName": "Microsoft Visio 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visiobackup", + "displayName": "Visio 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visiobackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013visiobackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013word", + "displayName": "Microsoft Word 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013word_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013word_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013wordbackup", + "displayName": "Word 2013 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013wordbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2013wordbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016access", + "displayName": "Microsoft Access 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016access_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016access_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016accessbackup", + "displayName": "Access 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016accessbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016accessbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016common", + "displayName": "Microsoft Office 2016 Common Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016common_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016common_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016commonbackup", + "displayName": "Common 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016commonbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016commonbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excel", + "displayName": "Microsoft Excel 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excelbackup", + "displayName": "Excel 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excelbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016excelbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lync", + "displayName": "Microsoft Lync 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lyncbackup", + "displayName": "Lync 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lyncbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016lyncbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onedriveforbusiness", + "displayName": "Microsoft OneDrive for Business 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onedriveforbusiness_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onedriveforbusiness_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenote", + "displayName": "Microsoft OneNote 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenotebackup", + "displayName": "OneNote 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenotebackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016onenotebackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlook", + "displayName": "Microsoft Outlook 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlookbackup", + "displayName": "Outlook 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlookbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016outlookbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpoint", + "displayName": "Microsoft PowerPoint 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpointbackup", + "displayName": "PowerPoint 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpointbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016powerpointbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016project", + "displayName": "Microsoft Project 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016project_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016project_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016projectbackup", + "displayName": "Project 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016projectbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016projectbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisher", + "displayName": "Microsoft Publisher 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisherbackup", + "displayName": "Publisher 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisherbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016publisherbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016uploadcenter", + "displayName": "Microsoft Office 2016 Upload Center (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016uploadcenter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016uploadcenter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visio", + "displayName": "Microsoft Visio 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visiobackup", + "displayName": "Visio 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visiobackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016visiobackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016word", + "displayName": "Microsoft Word 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016word_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016word_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016wordbackup", + "displayName": "Word 2016 backup only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016wordbackup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice2016wordbackup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2013", + "displayName": "Microsoft Office 365 Access 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2016", + "displayName": "Microsoft Office 365 Access 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365access2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2013", + "displayName": "Microsoft Office 365 Common 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2016", + "displayName": "Microsoft Office 365 Common 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365common2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2013", + "displayName": "Microsoft Office 365 Excel 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2016", + "displayName": "Microsoft Office 365 Excel 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365excel2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365infopath2013", + "displayName": "Microsoft Office 365 InfoPath 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365infopath2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365infopath2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2013", + "displayName": "Microsoft Office 365 Lync 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2016", + "displayName": "Microsoft Office 365 Lync 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365lync2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2013", + "displayName": "Microsoft Office 365 OneNote 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2016", + "displayName": "Microsoft Office 365 OneNote 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365onenote2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2013", + "displayName": "Microsoft Office 365 Outlook 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2016", + "displayName": "Microsoft Office 365 Outlook 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365outlook2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2013", + "displayName": "Microsoft Office 365 PowerPoint 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2016", + "displayName": "Microsoft Office 365 PowerPoint 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365powerpoint2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2013", + "displayName": "Microsoft Office 365 Project 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2016", + "displayName": "Microsoft Office 365 Project 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365project2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2013", + "displayName": "Microsoft Office 365 Publisher 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2016", + "displayName": "Microsoft Office 365 Publisher 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365publisher2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365sharepointdesigner2013", + "displayName": "Microsoft Office 365 SharePoint Designer 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365sharepointdesigner2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365sharepointdesigner2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2013", + "displayName": "Microsoft Office 365 Visio 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2016", + "displayName": "Microsoft Office 365 Visio 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365visio2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2013", + "displayName": "Microsoft Office 365 Word 2013 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2013_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2013_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2016", + "displayName": "Microsoft Office 365 Word 2016 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2016_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_microsoftoffice365word2016_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_music", + "displayName": "Music (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_music_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_music_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_news", + "displayName": "News (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_news_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_news_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_notepad", + "displayName": "Notepad (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_notepad_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_notepad_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_reader", + "displayName": "Reader (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_reader_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_reader_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_repositorytimeout", + "displayName": "Synchronization timeout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_repositorytimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_repositorytimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_repositorytimeout_repositorytimeout", + "displayName": "Synchronization timeout (in milliseconds): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_settingsstoragepath", + "displayName": "Settings storage path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_settingsstoragepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_settingsstoragepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_settingsstoragepath_settingsstoragepath", + "displayName": "Settings storage path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_sports", + "displayName": "Sports (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_sports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_sports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncenabled", + "displayName": "Use User Experience Virtualization (UE-V) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetwork", + "displayName": "Sync settings over metered connections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetworkwhenroaming", + "displayName": "Sync settings over metered connections even when roaming (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetworkwhenroaming_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncovermeterednetworkwhenroaming_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncproviderpingenabled", + "displayName": "Ping the settings storage location before sync (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncproviderpingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_syncproviderpingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_travel", + "displayName": "Travel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_travel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_travel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_video", + "displayName": "Video (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_video_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_video_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_weather", + "displayName": "Weather (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_weather_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_weather_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_wordpad", + "displayName": "WordPad (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_wordpad_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userexperiencevirtualization_wordpad_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize", + "displayName": "Limit profile size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_includereginproquota", + "displayName": "Show registry files in the file list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_includereginproquota_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_includereginproquota_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_profilesize", + "displayName": "Max Profile size (KB) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_sizemessage", + "displayName": "Custom Message (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_warnuser", + "displayName": "Notify user when profile storage space is exceeded. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_warnuser_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_warnuser_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_userprofiles_limitsize_warnusertimeout", + "displayName": "Remind user every X minutes: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wincal_turnoffwincal_1", + "displayName": "Turn off Windows Calendar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_wincal_turnoffwincal_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wincal_turnoffwincal_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowscolorsystem_prohibitchanginginstalledprofilelist_1", + "displayName": "Prohibit installing or uninstalling color profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowscolorsystem_prohibitchanginginstalledprofilelist_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowscolorsystem_prohibitchanginginstalledprofilelist_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsconnectnow_wcn_disablewcnui_1", + "displayName": "Prohibit access of the Windows Connect Now wizards (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsconnectnow_wcn_disablewcnui_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsconnectnow_wcn_disablewcnui_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_classicshell", + "displayName": "Turn on Classic Shell (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_classicshell_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_classicshell_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_confirmfiledelete", + "displayName": "Display confirmation dialog when deleting files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_confirmfiledelete_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_confirmfiledelete_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_defaultlibrarieslocation", + "displayName": "Location where all default Library definition files for users/machines reside. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_defaultlibrarieslocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_defaultlibrarieslocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_defaultlibrarieslocation_defaultlibrarieslocation", + "displayName": "Default Libraries definition location (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disablebinddirectlytopropertysetstorage", + "displayName": "Disable binding directly to IPropertySetStorage without intermediate layers. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disablebinddirectlytopropertysetstorage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disablebinddirectlytopropertysetstorage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disableindexedlibraryexperience", + "displayName": "Turn off Windows Libraries features that rely on indexed file data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disableindexedlibraryexperience_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disableindexedlibraryexperience_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disableknownfolders", + "displayName": "Disable Known Folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disableknownfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disableknownfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disableknownfolders_disableknownfolders_prompt", + "displayName": "Disable these Known Folders. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disablesearchboxsuggestions", + "displayName": "Turn off display of recent search entries in the File Explorer search box (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disablesearchboxsuggestions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_disablesearchboxsuggestions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_enforceshellextensionsecurity", + "displayName": "Allow only per user or approved shell extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_enforceshellextensionsecurity_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_enforceshellextensionsecurity_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized", + "displayName": "Start File Explorer with ribbon minimized (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown", + "displayName": "Pick one of the following settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown_1", + "displayName": "Always open new File Explorer windows with the ribbon minimized.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown_2", + "displayName": "Never open new File Explorer windows with the ribbon minimized.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown_3", + "displayName": "Minimize the ribbon when File Explorer is opened the first time.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_explorerribbonstartsminimized_explorerribbonstartsminimizeddropdown_4", + "displayName": "Display the full ribbon when File Explorer is opened the first time.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_hidecontentviewmodesnippets", + "displayName": "Turn off the display of snippets in Content view mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_hidecontentviewmodesnippets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_hidecontentviewmodesnippets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internet", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internetlockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internetlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_internetlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranet", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranetlockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranetlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_intranetlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachine", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachinelockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachinelockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_localmachinelockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restricted", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restricted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restricted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restrictedlockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restrictedlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_restrictedlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trusted", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trusted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trusted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trustedlockdown", + "displayName": "Allow previewing and custom thumbnails of OpenSearch query results in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trustedlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchpreview_trustedlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internet", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internetlockdown", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internetlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_internetlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranet", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranetlockdown", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranetlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_intranetlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachine", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachinelockdown", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachinelockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_localmachinelockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restricted", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restricted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restricted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restrictedlockdown", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restrictedlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_restrictedlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trusted", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trusted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trusted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trustedlockdown", + "displayName": "Allow OpenSearch queries in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trustedlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_iz_policy_opensearchquery_trustedlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_linkresolveignorelinkinfo", + "displayName": "Do not track Shell shortcuts during roaming (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_linkresolveignorelinkinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_linkresolveignorelinkinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_maxrecentdocs", + "displayName": "Maximum number of recent documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_maxrecentdocs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_maxrecentdocs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_maxrecentdocs_maxrecentdocs", + "displayName": "Maximum number of recent documents (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nobackbutton", + "displayName": "Hide the common dialog back button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nobackbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nobackbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nocachethumbnailpictures", + "displayName": "Turn off caching of thumbnail pictures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nocachethumbnailpictures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nocachethumbnailpictures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nocdburning", + "displayName": "Remove CD Burning features (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nocdburning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nocdburning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nochangeanimation", + "displayName": "Remove UI to change menu animation setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nochangeanimation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nochangeanimation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nochangekeyboardnavigationindicators", + "displayName": "Remove UI to change keyboard navigation indicator setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nochangekeyboardnavigationindicators_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nochangekeyboardnavigationindicators_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodfstab", + "displayName": "Remove DFS tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodfstab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodfstab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives", + "displayName": "Hide these specified drives in My Computer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_nodrivesdropdown", + "displayName": "Pick one of the following combinations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_nodrivesdropdown_3", + "displayName": "Restrict A and B drives only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_nodrivesdropdown_4", + "displayName": "Restrict C drive only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_nodrivesdropdown_8", + "displayName": "Restrict D drive only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_nodrivesdropdown_7", + "displayName": "Restrict A, B and C drives only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_nodrivesdropdown_15", + "displayName": "Restrict A, B, C and D drives only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_nodrivesdropdown_67108863", + "displayName": "Restrict all drives", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nodrives_nodrivesdropdown_0", + "displayName": "Do not restrict drives", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noentirenetwork", + "displayName": "No Entire Network in Network Locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noentirenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noentirenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofilemenu", + "displayName": "Remove File menu from File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofilemenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofilemenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofilemru", + "displayName": "Hide the dropdown list of recent files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofilemru_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofilemru_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofolderoptions", + "displayName": "Do not allow Folder Options to be opened from the Options button on the View tab of the ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofolderoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nofolderoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nohardwaretab", + "displayName": "Remove Hardware tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nohardwaretab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nohardwaretab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nomanagemycomputerverb", + "displayName": "Hides the Manage item on the File Explorer context menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nomanagemycomputerverb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nomanagemycomputerverb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nomycomputershareddocuments", + "displayName": "Remove Shared Documents from My Computer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nomycomputershareddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nomycomputershareddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nonetconnectdisconnect", + "displayName": "Remove \"Map Network Drive\" and \"Disconnect Network Drive\" (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nonetconnectdisconnect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nonetconnectdisconnect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noplacesbar", + "displayName": "Hide the common dialog places bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noplacesbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noplacesbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_norecyclefiles", + "displayName": "Do not move deleted files to the Recycle Bin (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_norecyclefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_norecyclefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_norunasinstallprompt", + "displayName": "Do not request alternate credentials (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_norunasinstallprompt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_norunasinstallprompt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nosearchinternettryharderbutton", + "displayName": "Remove the Search the Internet \"Search again\" link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nosearchinternettryharderbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nosearchinternettryharderbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nosecuritytab", + "displayName": "Remove Security tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nosecuritytab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nosecuritytab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noshellsearchbutton", + "displayName": "Remove Search button from File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noshellsearchbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noshellsearchbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nostrcmplogical", + "displayName": "Turn off numerical sorting in File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nostrcmplogical_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nostrcmplogical_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewcontextmenu", + "displayName": "Remove File Explorer's default context menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewcontextmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewcontextmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive", + "displayName": "Prevent access to drives from My Computer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_nodrivesdropdown", + "displayName": "Pick one of the following combinations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_nodrivesdropdown_3", + "displayName": "Restrict A and B drives only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_nodrivesdropdown_4", + "displayName": "Restrict C drive only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_nodrivesdropdown_8", + "displayName": "Restrict D drive only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_nodrivesdropdown_7", + "displayName": "Restrict A, B and C drives only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_nodrivesdropdown_15", + "displayName": "Restrict A, B, C and D drives only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_nodrivesdropdown_67108863", + "displayName": "Restrict all drives", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noviewondrive_nodrivesdropdown_0", + "displayName": "Do not restrict drives", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nowindowshotkeys", + "displayName": "Turn off Windows Key hotkeys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nowindowshotkeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_nowindowshotkeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noworkgroupcontents", + "displayName": "No Computers Near Me in Network Locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noworkgroupcontents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_noworkgroupcontents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_placesbar", + "displayName": "Items displayed in Places Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_placesbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_placesbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_placesbar_places0", + "displayName": "Item 1 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_placesbar_places1", + "displayName": "Item 2 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_placesbar_places2", + "displayName": "Item 3 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_placesbar_places3", + "displayName": "Item 4 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_placesbar_places4", + "displayName": "Item 5 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_promptrunasinstallnetpath", + "displayName": "Request credentials for network installations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_promptrunasinstallnetpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_promptrunasinstallnetpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_recyclebinsize", + "displayName": "Maximum allowed Recycle Bin size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_recyclebinsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_recyclebinsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_recyclebinsize_recyclebinsizespin", + "displayName": "Maximum Recycle Bin size: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_shellprotocolprotectedmodetitle_1", + "displayName": "Turn off shell protocol protected mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_shellprotocolprotectedmodetitle_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_shellprotocolprotectedmodetitle_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedlibrary", + "displayName": "Pin Libraries or Search Connectors to the \"Search again\" links and the Start menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedlibrary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedlibrary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedlibrary_library0", + "displayName": "Location 1 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedlibrary_library1", + "displayName": "Location 2 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedlibrary_library2", + "displayName": "Location 3 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedlibrary_library3", + "displayName": "Location 4 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedlibrary_library4", + "displayName": "Location 5 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch", + "displayName": "Pin Internet search sites to the \"Search again\" links and the Start menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearch0", + "displayName": "Site URL 1 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearch1", + "displayName": "Site URL 2 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearch2", + "displayName": "Site URL 3 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearch3", + "displayName": "Site URL 4 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearch4", + "displayName": "Site URL 5 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearchlabel0", + "displayName": "Site Name 1 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearchlabel1", + "displayName": "Site Name 2 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearchlabel2", + "displayName": "Site Name 3 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearchlabel3", + "displayName": "Site Name 4 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsexplorer_tryharderpinnedopensearch_opensearchlabel4", + "displayName": "Site Name 5 (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings", + "displayName": "Configure HTTP Proxy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_bypassproxylocal", + "displayName": "Bypass proxy for local addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_bypassproxylocal_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_bypassproxylocal_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_donotuseproxylocal", + "displayName": "Do not use proxy server for addresses beginning with (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_proxyaddress", + "displayName": "Proxy address (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_proxyport", + "displayName": "Proxy port (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_proxytype", + "displayName": "Proxy type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_proxytype_3", + "displayName": "Autodetect", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_proxytype_2", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurehttpproxysettings_proxytype_1", + "displayName": "Use browser proxy settings", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings", + "displayName": "Configure MMS Proxy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_bypassproxylocal", + "displayName": "Bypass proxy for local addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_bypassproxylocal_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_bypassproxylocal_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_donotuseproxylocal", + "displayName": "Do not use proxy server for addresses beginning with (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_proxyaddress", + "displayName": "Proxy address (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_proxyport", + "displayName": "Proxy port (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_proxytype", + "displayName": "Proxy type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_proxytype_3", + "displayName": "Autodetect", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configuremmsproxysettings_proxytype_2", + "displayName": "Custom", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings", + "displayName": "Configure RTSP Proxy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_bypassproxylocal", + "displayName": "Bypass proxy for local addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_bypassproxylocal_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_bypassproxylocal_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_donotuseproxylocal", + "displayName": "Do not use proxy server for addresses beginning with (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_proxyaddress", + "displayName": "Proxy address (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_proxyport", + "displayName": "Proxy port (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_proxytype", + "displayName": "Proxy type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_proxytype_3", + "displayName": "Autodetect", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_configurertspproxysettings_proxytype_2", + "displayName": "Custom", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_disablenetworksettings", + "displayName": "Hide Network Tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_disablenetworksettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_disablenetworksettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_donotshowanchor", + "displayName": "Do Not Show Anchor (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_donotshowanchor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_donotshowanchor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_enablescreensaver", + "displayName": "Allow Screen Saver (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_enablescreensaver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_enablescreensaver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_hideprivacytab", + "displayName": "Hide Privacy Tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_hideprivacytab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_hideprivacytab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_hidesecuritytab", + "displayName": "Hide Security Tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_hidesecuritytab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_hidesecuritytab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_networkbuffering", + "displayName": "Configure Network Buffering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_networkbuffering_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_networkbuffering_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_networkbuffering_bufferingtime", + "displayName": "Buffering Time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_networkbuffering_bufferingtime_1", + "displayName": "Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_networkbuffering_bufferingtime_2", + "displayName": "Custom", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_networkbuffering_networkbuffering", + "displayName": "Configure Network Buffering (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_policycodecupdate", + "displayName": "Prevent Codec Download (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_policycodecupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_policycodecupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventcddvdmetadataretrieval", + "displayName": "Prevent CD and DVD Media Information Retrieval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventcddvdmetadataretrieval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventcddvdmetadataretrieval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventmusicfilemetadataretrieval", + "displayName": "Prevent Music File Media Information Retrieval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventmusicfilemetadataretrieval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventmusicfilemetadataretrieval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventradiopresetsretrieval", + "displayName": "Prevent Radio Station Preset Retrieval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventradiopresetsretrieval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_preventradiopresetsretrieval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_skinlockdown", + "displayName": "Set and Lock Skin (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_skinlockdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_skinlockdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_skinlockdown_lockskin", + "displayName": "Skin (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols", + "displayName": "Streaming Media Protocols (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_httpcheckbox", + "displayName": "HTTP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_httpcheckbox_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_httpcheckbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_multicastcheckbox", + "displayName": "Multicast (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_multicastcheckbox_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_multicastcheckbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_tcpcheckbox", + "displayName": "TCP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_tcpcheckbox_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_tcpcheckbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_udpcheckbox", + "displayName": "UDP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_udpcheckbox_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_udpcheckbox_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsmediaplayer_windowsstreamingmediaprotocols_udpports", + "displayName": "UDP Ports (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsstore_disableosupgrade_1", + "displayName": "Turn off the offer to update to the latest version of Windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsstore_disableosupgrade_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsstore_disableosupgrade_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsstore_removewindowsstore_1", + "displayName": "Turn off the Store application (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_windowsstore_removewindowsstore_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_windowsstore_removewindowsstore_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_customshell", + "displayName": "Custom User Interface (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_winlogon_customshell_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_customshell_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_customshell_customshellinst", + "displayName": "Interface file name (for example, Explorer.exe) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhoursnotificationpolicydescription", + "displayName": "Remove logon hours expiration warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhoursnotificationpolicydescription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhoursnotificationpolicydescription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhourspolicydescription", + "displayName": "Set action to take when logon hours expire (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhourspolicydescription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhourspolicydescription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhourspolicydescription_logonhourspolicydescription", + "displayName": "Set action to take when logon hours expire (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhourspolicydescription_logonhourspolicydescription_1", + "displayName": "Lock", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhourspolicydescription_logonhourspolicydescription_2", + "displayName": "Disconnect", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_logonhourspolicydescription_logonhourspolicydescription_3", + "displayName": "Logoff", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_reportcachedlogonpolicydescription", + "displayName": "Report when logon server was not available during user logon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_winlogon_reportcachedlogonpolicydescription_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_winlogon_reportcachedlogonpolicydescription_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_wordwheel_customsearch", + "displayName": "Custom Instant Search Internet search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_wordwheel_customsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wordwheel_customsearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_wordwheel_customsearch_customsearch_nameprompt", + "displayName": "The string or DLL resource from which to load the string shown in the Instant Search menu. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wordwheel_customsearch_customsearch_urlprompt", + "displayName": "The URL to use when invoking the custom Internet search, with the search term indicated by \"%w\". (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenabletokenbroker", + "displayName": "Enables the use of Token Broker for AD FS authentication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenabletokenbroker_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenabletokenbroker_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders", + "displayName": "Specify Work Folders settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_autoprovision_chk", + "displayName": "Force automatic setup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_autoprovision_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_autoprovision_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_ghostingpreference_enum", + "displayName": "On-demand file access preference: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_ghostingpreference_enum_1", + "displayName": "Enable (recommended)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_ghostingpreference_enum_2", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_ghostingpreference_enum_3", + "displayName": "User choice", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_localfolderpath_edit", + "displayName": "Work Folders Local Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_workfoldersclient_pol_userenableworkfolders_lbl_serverurl_edit", + "displayName": "Work Folders URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_nocallsduringquiethours", + "displayName": "Turn off calls during Quiet Hours (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_wpn_nocallsduringquiethours_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_nocallsduringquiethours_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_nolockscreentoastnotification", + "displayName": "Turn off toast notifications on the lock screen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_wpn_nolockscreentoastnotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_nolockscreentoastnotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_noquiethours", + "displayName": "Turn off Quiet Hours (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_wpn_noquiethours_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_noquiethours_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_notoastnotification", + "displayName": "Turn off toast notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_wpn_notoastnotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_notoastnotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_quiethoursdailybeginminute", + "displayName": "Set the time Quiet Hours begins each day (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_wpn_quiethoursdailybeginminute_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_quiethoursdailybeginminute_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_quiethoursdailybeginminute_quiethoursdailybeginminutecontrol", + "displayName": "Minutes after midnight: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_quiethoursdailyendminute", + "displayName": "Set the time Quiet Hours ends each day (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_admx_wpn_quiethoursdailyendminute_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_quiethoursdailyendminute_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_admx_wpn_quiethoursdailyendminute_quiethoursdailyendminutecontrol", + "displayName": "Minutes after midnight: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_applicationmanagement_msialwaysinstallwithelevatedprivileges", + "displayName": "MSI Always Install With Elevated Privileges (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_applicationmanagement_msialwaysinstallwithelevatedprivileges_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "user_vendor_msft_policy_config_applicationmanagement_msialwaysinstallwithelevatedprivileges_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_applicationmanagement_requireprivatestoreonly", + "displayName": "Require Private Store Only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_applicationmanagement_requireprivatestoreonly_0", + "displayName": "Allow both public and Private store.", + "description": "Allow both public and Private store." + }, + { + "id": "user_vendor_msft_policy_config_applicationmanagement_requireprivatestoreonly_1", + "displayName": "Only Private store is enabled.", + "description": "Only Private store is enabled." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_attachmentmanager_donotpreservezoneinformation", + "displayName": "Do not preserve zone information in file attachments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_attachmentmanager_donotpreservezoneinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_attachmentmanager_donotpreservezoneinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_attachmentmanager_hidezoneinfomechanism", + "displayName": "Hide mechanisms to remove zone information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_attachmentmanager_hidezoneinfomechanism_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_attachmentmanager_hidezoneinfomechanism_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_attachmentmanager_notifyantivirusprograms", + "displayName": "Notify antivirus programs when opening attachments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_attachmentmanager_notifyantivirusprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_attachmentmanager_notifyantivirusprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_authentication_alloweapcertsso", + "displayName": "Allow EAP Cert SSO (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_authentication_alloweapcertsso_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_authentication_alloweapcertsso_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_autoplay_disallowautoplayfornonvolumedevices", + "displayName": "Disallow Autoplay for non-volume devices (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_autoplay_disallowautoplayfornonvolumedevices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_autoplay_disallowautoplayfornonvolumedevices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior", + "displayName": "Set the default behavior for AutoRun (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_noautorun_dropdown", + "displayName": "Default AutoRun Behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_noautorun_dropdown_1", + "displayName": "Do not execute any autorun commands", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_autoplay_setdefaultautorunbehavior_noautorun_dropdown_2", + "displayName": "Automatically execute autorun commands", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_autoplay_turnoffautoplay", + "displayName": "Turn off Autoplay (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_autoplay_turnoffautoplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_autoplay_turnoffautoplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_autoplay_turnoffautoplay_autorun_box", + "displayName": "Turn off Autoplay on: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_autoplay_turnoffautoplay_autorun_box_181", + "displayName": "CD-ROM and removable media drives", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_autoplay_turnoffautoplay_autorun_box_255", + "displayName": "All drives", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowaddressbardropdown", + "displayName": "Allow Address Bar Dropdown (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowaddressbardropdown_0", + "displayName": "Block", + "description": "Prevented/not allowed. Hide the Address bar drop-down functionality and disable the Show search and site suggestions as I type toggle in Settings." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowaddressbardropdown_1", + "displayName": "Allow", + "description": "Allowed. Show the Address bar drop-down list and make it available." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowautofill", + "displayName": "Allow Autofill (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowautofill_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowautofill_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowbrowser", + "displayName": "Allow Browser (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowbrowser_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowbrowser_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowconfigurationupdateforbookslibrary", + "displayName": "Allow Configuration Update For Books Library (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowconfigurationupdateforbookslibrary_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowconfigurationupdateforbookslibrary_1", + "displayName": "Allow", + "description": "Allowed. Microsoft Edge updates the configuration data for the Books Library automatically." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowcookies", + "displayName": "Allow Cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowcookies_0", + "displayName": "Block all cookies from all sites", + "description": "Block all cookies from all sites" + }, + { + "id": "user_vendor_msft_policy_config_browser_allowcookies_1", + "displayName": "Block only cookies from third party websites", + "description": "Block only cookies from third party websites" + }, + { + "id": "user_vendor_msft_policy_config_browser_allowcookies_2", + "displayName": "Allow all cookies from all sites", + "description": "Allow all cookies from all sites" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowdevelopertools", + "displayName": "Allow Developer Tools (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowdevelopertools_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowdevelopertools_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowdonottrack", + "displayName": "Allow Do Not Track (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowdonottrack_0", + "displayName": "Block", + "description": "Never send tracking information." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowdonottrack_1", + "displayName": "Allow", + "description": "Send tracking information." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowextensions", + "displayName": "Allow Extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowextensions_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowextensions_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowflash", + "displayName": "Allow Flash (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowflash_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowflash_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowflashclicktorun", + "displayName": "Allow Flash Click To Run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowflashclicktorun_0", + "displayName": "Block", + "description": "Load and run Adobe Flash content automatically." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowflashclicktorun_1", + "displayName": "Allow", + "description": "Does not load or run Adobe Flash content automatically. Requires action from the user." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowfullscreenmode", + "displayName": "Allow Full Screen Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowfullscreenmode_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowfullscreenmode_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowinprivate", + "displayName": "Allow InPrivate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowinprivate_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowinprivate_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowmicrosoftcompatibilitylist", + "displayName": "Allow Microsoft Compatibility List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowmicrosoftcompatibilitylist_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowmicrosoftcompatibilitylist_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowpasswordmanager", + "displayName": "Allow Password Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowpasswordmanager_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowpasswordmanager_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowpopups", + "displayName": "Allow Popups (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowpopups_0", + "displayName": "Block", + "description": "Turn off Pop-up Blocker letting pop-up windows open." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowpopups_1", + "displayName": "Allow", + "description": "Turn on Pop-up Blocker stopping pop-up windows from opening." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowprelaunch", + "displayName": "Allow Prelaunch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowprelaunch_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowprelaunch_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowprinting", + "displayName": "Allow Printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowprinting_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowprinting_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsavinghistory", + "displayName": "Allow Saving History (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowsavinghistory_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsavinghistory_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsearchenginecustomization", + "displayName": "Allow Search Engine Customization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowsearchenginecustomization_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsearchenginecustomization_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsearchsuggestionsinaddressbar", + "displayName": "Allow Search Suggestionsin Address Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowsearchsuggestionsinaddressbar_0", + "displayName": "Block", + "description": "Prevented/Not allowed. Hide the search suggestions." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsearchsuggestionsinaddressbar_1", + "displayName": "Allow", + "description": "Allowed. Show the search suggestions." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsideloadingofextensions", + "displayName": "Allow Sideloading Of Extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowsideloadingofextensions_0", + "displayName": "Block", + "description": "Prevented/Not allowed. Disabling does not prevent sideloading of extensions using Add-AppxPackage via Powershell. To prevent this, set the ApplicationManagement/AllowDeveloperUnlock policy to 1 (enabled)." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsideloadingofextensions_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsmartscreen", + "displayName": "Allow Smart Screen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowsmartscreen_0", + "displayName": "Block", + "description": "Turned off. Do not protect users from potential threats and prevent users from turning it on." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowsmartscreen_1", + "displayName": "Allow", + "description": "Turned on. Protect users from potential threats and prevent users from turning it off." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowtabpreloading", + "displayName": "Allow Tab Preloading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowtabpreloading_0", + "displayName": "Block", + "description": "Prevented/Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowtabpreloading_1", + "displayName": "Allow", + "description": "Allowed. Preload Start and New tab pages." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_allowwebcontentonnewtabpage", + "displayName": "Allow Web Content On New Tab Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_allowwebcontentonnewtabpage_0", + "displayName": "Block", + "description": "Load a blank page instead of the default New tab page and prevent users from changing it." + }, + { + "id": "user_vendor_msft_policy_config_browser_allowwebcontentonnewtabpage_1", + "displayName": "Allow", + "description": "Load the default New tab page." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_alwaysenablebookslibrary", + "displayName": "Always Enable Books Library (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_alwaysenablebookslibrary_0", + "displayName": "Disabled", + "description": "Show the Books Library only in countries or regions where supported." + }, + { + "id": "user_vendor_msft_policy_config_browser_alwaysenablebookslibrary_1", + "displayName": "Enabled", + "description": "Show the Books Library, regardless of the device's country or region." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_clearbrowsingdataonexit", + "displayName": "Clear Browsing Data On Exit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_clearbrowsingdataonexit_0", + "displayName": "Disabled", + "description": "Prevented/not allowed. Users can configure the 'Clear browsing data' option in Settings." + }, + { + "id": "user_vendor_msft_policy_config_browser_clearbrowsingdataonexit_1", + "displayName": "Enabled", + "description": "Allowed. Clear the browsing data upon exit automatically." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_configureadditionalsearchengines", + "displayName": "Configure Additional Search Engines (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_configurefavoritesbar", + "displayName": "Configure Favorites Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_configurefavoritesbar_0", + "displayName": "Disabled", + "description": "Hide the favorites bar on all pages. Also, the favorites bar toggle, in Settings, is set to Off and disabled preventing users from making changes. Microsoft Edge also hides the “show bar/hide bar” option in the context menu." + }, + { + "id": "user_vendor_msft_policy_config_browser_configurefavoritesbar_1", + "displayName": "Enabled", + "description": "Show the favorites bar on all pages. Also, the favorites bar toggle, in Settings, is set to On and disabled preventing users from making changes. Microsoft Edge also hides the “show bar/hide bar” option in the context menu." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_configurehomebutton", + "displayName": "Configure Home Button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_configurehomebutton_0", + "displayName": "Show home button and load the Start page", + "description": "Show home button and load the Start page" + }, + { + "id": "user_vendor_msft_policy_config_browser_configurehomebutton_1", + "displayName": "Show home button and load the New tab page", + "description": "Show home button and load the New tab page" + }, + { + "id": "user_vendor_msft_policy_config_browser_configurehomebutton_2", + "displayName": "Show home button and load the custom URL defined in the Set Home Button URL policy", + "description": "Show home button and load the custom URL defined in the Set Home Button URL policy" + }, + { + "id": "user_vendor_msft_policy_config_browser_configurehomebutton_3", + "displayName": "Hide home button", + "description": "Hide home button" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_configurekioskmode", + "displayName": "Configure Kiosk Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_configurekioskmode_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "user_vendor_msft_policy_config_browser_configurekioskmode_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_configurekioskresetafteridletimeout", + "displayName": "Configure Kiosk Reset After Idle Timeout (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith", + "displayName": "Configure Open Microsoft Edge With (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith_0", + "displayName": "Load the Start page", + "description": "Load the Start page" + }, + { + "id": "user_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith_1", + "displayName": "Load the New tab page", + "description": "Load the New tab page" + }, + { + "id": "user_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith_2", + "displayName": "Load the previous pages", + "description": "Load the previous pages" + }, + { + "id": "user_vendor_msft_policy_config_browser_configureopenmicrosoftedgewith_3", + "displayName": "Load a specific page or pages", + "description": "Load a specific page or pages" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics", + "displayName": "Configure Telemetry For Microsoft 365 Analytics (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics_0", + "displayName": "No data collected or sent", + "description": "No data collected or sent" + }, + { + "id": "user_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics_1", + "displayName": "Send intranet history only", + "description": "Send intranet history only" + }, + { + "id": "user_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics_2", + "displayName": "Send Internet history only", + "description": "Send Internet history only" + }, + { + "id": "user_vendor_msft_policy_config_browser_configuretelemetryformicrosoft365analytics_3", + "displayName": "Send both intranet and Internet history", + "description": "Send both intranet and Internet history" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_disablelockdownofstartpages", + "displayName": "Disable Lockdown Of Start Pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_disablelockdownofstartpages_0", + "displayName": "Disabled", + "description": "Lock down Start pages configured in either the ConfigureOpenEdgeWith policy and HomePages policy." + }, + { + "id": "user_vendor_msft_policy_config_browser_disablelockdownofstartpages_1", + "displayName": "Enabled", + "description": "Unlocked. Users can make changes to all configured start pages." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_enableextendedbookstelemetry", + "displayName": "Enable Extended Books Telemetry (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_enableextendedbookstelemetry_0", + "displayName": "Disabled", + "description": "Gather and send only basic diagnostic data, depending on the device configuration." + }, + { + "id": "user_vendor_msft_policy_config_browser_enableextendedbookstelemetry_1", + "displayName": "Enabled", + "description": "Gather all diagnostic data." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_enterprisemodesitelist", + "displayName": "Enterprise Mode Site List (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_enterprisesitelistserviceurl", + "displayName": "Enterprise Site List Service Url (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_homepages", + "displayName": "Home Pages (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_lockdownfavorites", + "displayName": "Lockdown Favorites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_lockdownfavorites_0", + "displayName": "Disabled", + "description": "Allowed/not locked down. Users can add, import, and make changes to the favorites." + }, + { + "id": "user_vendor_msft_policy_config_browser_lockdownfavorites_1", + "displayName": "Enabled", + "description": "Prevented/locked down." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_preventaccesstoaboutflagsinmicrosoftedge", + "displayName": "Prevent Access To About Flags In Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_preventaccesstoaboutflagsinmicrosoftedge_0", + "displayName": "Disabled", + "description": "Allowed." + }, + { + "id": "user_vendor_msft_policy_config_browser_preventaccesstoaboutflagsinmicrosoftedge_1", + "displayName": "Enabled", + "description": "Prevents users from accessing the about:flags page." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_preventcerterroroverrides", + "displayName": "Prevent Cert Error Overrides (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_preventcerterroroverrides_0", + "displayName": "Disabled", + "description": "Allowed/turned on. Override the security warning to sites that have SSL errors." + }, + { + "id": "user_vendor_msft_policy_config_browser_preventcerterroroverrides_1", + "displayName": "Enabled", + "description": "Prevented/turned on." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_preventlivetiledatacollection", + "displayName": "Prevent Live Tile Data Collection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_preventlivetiledatacollection_0", + "displayName": "Disabled", + "description": "Collect and send Live Tile metadata." + }, + { + "id": "user_vendor_msft_policy_config_browser_preventlivetiledatacollection_1", + "displayName": "Enabled", + "description": "No data collected." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_preventsmartscreenpromptoverride", + "displayName": "Prevent Smart Screen Prompt Override (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_preventsmartscreenpromptoverride_0", + "displayName": "Disabled", + "description": "Allowed/turned off. Users can ignore the warning and continue to the site." + }, + { + "id": "user_vendor_msft_policy_config_browser_preventsmartscreenpromptoverride_1", + "displayName": "Enabled", + "description": "Prevented/turned on." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_preventsmartscreenpromptoverrideforfiles", + "displayName": "Prevent Smart Screen Prompt Override For Files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_preventsmartscreenpromptoverrideforfiles_0", + "displayName": "Disabled", + "description": "Allowed/turned off. Users can ignore the warning and continue to download the unverified file(s)." + }, + { + "id": "user_vendor_msft_policy_config_browser_preventsmartscreenpromptoverrideforfiles_1", + "displayName": "Enabled", + "description": "Prevented/turned on." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_preventturningoffrequiredextensions", + "displayName": "Prevent Turning Off Required Extensions (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_preventusinglocalhostipaddressforwebrtc", + "displayName": "Prevent Using Local Host IP Address For Web RTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_preventusinglocalhostipaddressforwebrtc_0", + "displayName": "Disabled", + "description": "Allowed. Show localhost IP addresses." + }, + { + "id": "user_vendor_msft_policy_config_browser_preventusinglocalhostipaddressforwebrtc_1", + "displayName": "Enabled", + "description": "Prevented/Not allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_provisionfavorites", + "displayName": "Provision Favorites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_sendintranettraffictointernetexplorer", + "displayName": "Send Intranet Trafficto Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_sendintranettraffictointernetexplorer_0", + "displayName": "Disabled", + "description": "All sites, including intranet sites, open in Microsoft Edge automatically." + }, + { + "id": "user_vendor_msft_policy_config_browser_sendintranettraffictointernetexplorer_1", + "displayName": "Enabled", + "description": "Only intranet sites open in Internet Explorer 11 automatically." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_setdefaultsearchengine", + "displayName": "Set Default Search Engine (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_sethomebuttonurl", + "displayName": "Set Home Button URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_setnewtabpageurl", + "displayName": "Set New Tab Page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_browser_showmessagewhenopeningsitesininternetexplorer", + "displayName": "Show Message When Opening Sites In Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_showmessagewhenopeningsitesininternetexplorer_0", + "displayName": "No additional message displays.", + "description": "No additional message displays." + }, + { + "id": "user_vendor_msft_policy_config_browser_showmessagewhenopeningsitesininternetexplorer_1", + "displayName": "Show an additional message stating that a site has opened in IE11.", + "description": "Show an additional message stating that a site has opened in IE11." + }, + { + "id": "user_vendor_msft_policy_config_browser_showmessagewhenopeningsitesininternetexplorer_2", + "displayName": "Show an additional message with a \"Keep going in Microsoft Edge\" link.", + "description": "Show an additional message with a \"Keep going in Microsoft Edge\" link." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_syncfavoritesbetweenieandmicrosoftedge", + "displayName": "Sync Favorites Between IE And Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_syncfavoritesbetweenieandmicrosoftedge_0", + "displayName": "Disabled", + "description": "Turned off/not syncing." + }, + { + "id": "user_vendor_msft_policy_config_browser_syncfavoritesbetweenieandmicrosoftedge_1", + "displayName": "Enabled", + "description": "Turned on/syncing." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_unlockhomebutton", + "displayName": "Unlock Home Button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_unlockhomebutton_0", + "displayName": "Disabled", + "description": "Lock down and prevent users from making changes to the settings." + }, + { + "id": "user_vendor_msft_policy_config_browser_unlockhomebutton_1", + "displayName": "Enabled", + "description": "Let users make changes." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_browser_usesharedfolderforbooks", + "displayName": "Use Shared Folder For Books (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_browser_usesharedfolderforbooks_0", + "displayName": "Disabled", + "description": "Prevented/not allowed, but Microsoft Edge downloads book files to a per-user folder for each user." + }, + { + "id": "user_vendor_msft_policy_config_browser_usesharedfolderforbooks_1", + "displayName": "Enabled", + "description": "Allowed. Microsoft Edge downloads book files to a shared folder. For this policy to work correctly, you must also enable the Allow a Windows app to share application data between users group policy. Also, the users must be signed in with a school or work account." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_abusiveexperienceinterventionenforce", + "displayName": "Abusive Experience Intervention Enforce (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_abusiveexperienceinterventionenforce_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_abusiveexperienceinterventionenforce_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_accessibilityimagelabelsenabled", + "displayName": "Enable Get Image Descriptions from Google. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_accessibilityimagelabelsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_accessibilityimagelabelsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_additionaldnsquerytypesenabled", + "displayName": "Allow DNS queries for additional DNS record types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_additionaldnsquerytypesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_additionaldnsquerytypesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_adssettingforintrusiveadssites_1", + "displayName": "Allow ads on all sites", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_adssettingforintrusiveadssites_adssettingforintrusiveadssites_2", + "displayName": "Do not allow ads on sites with intrusive ads", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_advancedprotectionallowed", + "displayName": "Enable additional protections for users enrolled in the Advanced Protection program (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_advancedprotectionallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_advancedprotectionallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdeletingbrowserhistory", + "displayName": "Enable deleting browser and download history (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdeletingbrowserhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdeletingbrowserhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdinosaureasteregg", + "displayName": "Allow Dinosaur Easter Egg Game (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdinosaureasteregg_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowdinosaureasteregg_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alloweddomainsforapps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alloweddomainsforapps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alloweddomainsforapps_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowfileselectiondialogs", + "displayName": "Allow invocation of file selection dialogs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowfileselectiondialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowfileselectiondialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowsyncxhrinpagedismissal", + "displayName": "Allows a page to perform synchronous XHR requests during page dismissal. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowsyncxhrinpagedismissal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_allowsyncxhrinpagedismissal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alternateerrorpagesenabled", + "displayName": "Enable alternate error pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alternateerrorpagesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alternateerrorpagesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alwaysopenpdfexternally", + "displayName": "Always Open PDF files externally (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alwaysopenpdfexternally_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_alwaysopenpdfexternally_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for profile types. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for profile types. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Enable ambient authentication in regular sessions only.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enable ambient authentication in incognito and regular sessions.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_2", + "displayName": "Enable ambient authentication in guest and regular sessions.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_3", + "displayName": "Enable ambient authentication in regular, incognito and guest sessions.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_applicationlocalevalue", + "displayName": "Application locale (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_applicationlocalevalue_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_applicationlocalevalue_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_applicationlocalevalue_applicationlocalevalue", + "displayName": "Application locale (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowed", + "displayName": "Allow or deny audio capture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowedurls", + "displayName": "URLs that will be granted access to audio capture devices without prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiocaptureallowedurls_audiocaptureallowedurlsdesc", + "displayName": "URLs that will be granted access to audio capture devices without prompt (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audioprocesshighpriorityenabled", + "displayName": "Allow the audio process to run with priority above normal on Windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audioprocesshighpriorityenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audioprocesshighpriorityenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiosandboxenabled", + "displayName": "Allow the audio sandbox to run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiosandboxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_audiosandboxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofilladdressenabled", + "displayName": "Enable AutoFill for addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofilladdressenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofilladdressenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofillcreditcardenabled", + "displayName": "Enable AutoFill for credit cards (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofillcreditcardenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autofillcreditcardenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autolaunchprotocolsfromorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autolaunchprotocolsfromorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autolaunchprotocolsfromorigins_autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenallowedforurls", + "displayName": "URLs where AutoOpenFileTypes can apply (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenallowedforurls_autoopenallowedforurlsdesc", + "displayName": "URLs where AutoOpenFileTypes can apply (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenfiletypes", + "displayName": "List of file types that should be automatically opened on download (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenfiletypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenfiletypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoopenfiletypes_autoopenfiletypesdesc", + "displayName": "List of file types that should be automatically opened on download (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowed", + "displayName": "Allow media autoplay (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowlist", + "displayName": "Allow media autoplay on a allowlist of URL patterns (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_autoplayallowlist_autoplayallowlistdesc", + "displayName": "Allow media autoplay on a allowlist of URL patterns (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_backgroundmodeenabled", + "displayName": "Continue running background apps when Google Chrome is closed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_backgroundmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_backgroundmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_blockthirdpartycookies", + "displayName": "Block third party cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_blockthirdpartycookies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_blockthirdpartycookies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_bookmarkbarenabled", + "displayName": "Enable Bookmark Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_bookmarkbarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_bookmarkbarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browseraddpersonenabled", + "displayName": "Enable add person in user manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browseraddpersonenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browseraddpersonenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenabled", + "displayName": "Enable guest mode in browser (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenforced", + "displayName": "Enforce browser guest mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenforced_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserguestmodeenforced_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlabsenabled", + "displayName": "Browser experiments icon in toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlegacyextensionpointsblocked", + "displayName": "Block Browser Legacy Extension Points (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlegacyextensionpointsblocked_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserlegacyextensionpointsblocked_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsernetworktimequeriesenabled", + "displayName": "Allow queries to a Google time service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsernetworktimequeriesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsernetworktimequeriesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin", + "displayName": "Browser sign in settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_browsersignin", + "displayName": "Browser sign in settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_browsersignin_0", + "displayName": "Disable browser sign-in", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_browsersignin_1", + "displayName": "Enable browser sign-in", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsersignin_browsersignin_2", + "displayName": "Force users to sign-in to use the browser", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserthemecolor", + "displayName": "Configure the color of the browser's theme (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserthemecolor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserthemecolor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browserthemecolor_browserthemecolor", + "displayName": "Configure the color of the browser's theme (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsingdatalifetime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsingdatalifetime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_browsingdatalifetime_browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_builtindnsclientenabled", + "displayName": "Use built-in DNS client (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_builtindnsclientenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_builtindnsclientenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cecpq2enabled", + "displayName": "CECPQ2 post-quantum key-agreement enabled for TLS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cecpq2enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cecpq2enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforcas", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforcas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforcas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforcas_certificatetransparencyenforcementdisabledforcasdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforlegacycas", + "displayName": "Disable Certificate Transparency enforcement for a list of Legacy Certificate Authorities (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforlegacycas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforlegacycas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforlegacycas_certificatetransparencyenforcementdisabledforlegacycasdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of Legacy Certificate Authorities (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforurls", + "displayName": "Disable Certificate Transparency enforcement for a list of URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_certificatetransparencyenforcementdisabledforurls_certificatetransparencyenforcementdisabledforurlsdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of URLs (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupenabled", + "displayName": "Enable Chrome Cleanup on Windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupreportingenabled", + "displayName": "Control how Chrome Cleanup reports data to Google (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromecleanupreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations", + "displayName": "Determine the availability of variations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_chromevariations", + "displayName": "Determine the availability of variations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_chromevariations_0", + "displayName": "Enable all variations", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_chromevariations_1", + "displayName": "Enable variations concerning critical fixes only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_chromevariations_chromevariations_2", + "displayName": "Disable all variations", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clearbrowsingdataonexitlist", + "displayName": "Clear Browsing Data on Exit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clearbrowsingdataonexitlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clearbrowsingdataonexitlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clearbrowsingdataonexitlist_clearbrowsingdataonexitlistdesc", + "displayName": "Clear Browsing Data on Exit (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clicktocallenabled", + "displayName": "Enable the Click to Call Feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clicktocallenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clicktocallenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmentmandatory", + "displayName": "Enable mandatory cloud management enrollment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmentmandatory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmentmandatory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmenttoken", + "displayName": "The enrollment token of cloud policy on desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmenttoken_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmenttoken_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudmanagementenrollmenttoken_cloudmanagementenrollmenttoken", + "displayName": "The enrollment token of cloud policy on desktop (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudpolicyoverridesplatformpolicy", + "displayName": "Google Chrome cloud policy overrides Platform policy. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudpolicyoverridesplatformpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_cloudpolicyoverridesplatformpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicymerge", + "displayName": "Enables merging of user cloud policies into machine-level policies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicymerge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicymerge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicyoverridescloudmachinepolicy", + "displayName": "Allow user cloud policies to override Chrome Browser Cloud Management policies. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicyoverridescloudmachinepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_clouduserpolicyoverridescloudmachinepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_commandlineflagsecuritywarningsenabled", + "displayName": "Enable security warnings for command-line flags (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_commandlineflagsecuritywarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_commandlineflagsecuritywarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_componentupdatesenabled", + "displayName": "Enable component updates in Google Chrome (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_componentupdatesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_componentupdatesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_corsnonwildcardrequestheaderssupport", + "displayName": "CORS non-wildcard request headers support (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_corsnonwildcardrequestheaderssupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_corsnonwildcardrequestheaderssupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_crossoriginwebassemblymodulesharingenabled", + "displayName": "Specifies whether WebAssembly modules can be sent cross-origin (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_crossoriginwebassemblymodulesharingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_crossoriginwebassemblymodulesharingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultbrowsersettingenabled", + "displayName": "Set Google Chrome as Default Browser (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultbrowsersettingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultbrowsersettingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultsearchprovidercontextmenuaccessallowed", + "displayName": "Allow default search provider context menu search access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultsearchprovidercontextmenuaccessallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_defaultsearchprovidercontextmenuaccessallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_desktopsharinghubenabled", + "displayName": "Enable desktop sharing in the omnibox and 3-dot menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_desktopsharinghubenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_desktopsharinghubenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability", + "displayName": "Control where Developer Tools can be used (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_developertoolsavailability", + "displayName": "Control where Developer Tools can be used (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_developertoolsavailability_0", + "displayName": "Disallow usage of the Developer Tools on extensions installed by enterprise policy, allow usage of the Developer Tools in other contexts", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_developertoolsavailability_1", + "displayName": "Allow usage of the Developer Tools", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_developertoolsavailability_developertoolsavailability_2", + "displayName": "Disallow usage of the Developer Tools", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disable3dapis", + "displayName": "Disable support for 3D graphics APIs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disable3dapis_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disable3dapis_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablesafebrowsingproceedanyway", + "displayName": "Disable proceeding from the Safe Browsing warning page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablesafebrowsingproceedanyway_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablesafebrowsingproceedanyway_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablescreenshots", + "displayName": "Disable taking screenshots (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablescreenshots_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_disablescreenshots_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachedir", + "displayName": "Set disk cache directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachedir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachedir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachedir_diskcachedir", + "displayName": "Set disk cache directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachesize", + "displayName": "Set disk cache size in bytes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_diskcachesize_diskcachesize", + "displayName": "Set disk cache size: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_displaycapturepermissionspolicyenabled", + "displayName": "Specifies whether the display-capture permissions-policy is checked or skipped. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_displaycapturepermissionspolicyenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_displaycapturepermissionspolicyenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsinterceptionchecksenabled", + "displayName": "DNS interception checks enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsinterceptionchecksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsinterceptionchecksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode", + "displayName": "Controls the mode of DNS-over-HTTPS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_dnsoverhttpsmode", + "displayName": "Controls the mode of DNS-over-HTTPS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_dnsoverhttpsmode_off", + "displayName": "Disable DNS-over-HTTPS", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_dnsoverhttpsmode_automatic", + "displayName": "Enable DNS-over-HTTPS with insecure fallback", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpsmode_dnsoverhttpsmode_secure", + "displayName": "Enable DNS-over-HTTPS without insecure fallback", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpstemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpstemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_dnsoverhttpstemplates_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloaddirectory", + "displayName": "Set download directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloaddirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloaddirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloaddirectory_downloaddirectory", + "displayName": "Set download directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions", + "displayName": "Allow download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions", + "displayName": "Download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_0", + "displayName": "No special restrictions. Default.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_1", + "displayName": "Block malicious downloads and dangerous file types.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_2", + "displayName": "Block malicious downloads, uncommon or unwanted downloads and dangerous file types.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_3", + "displayName": "Block all downloads.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_downloadrestrictions_downloadrestrictions_4", + "displayName": "Block malicious downloads. Recommended.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_editbookmarksenabled", + "displayName": "Enable or disable bookmark editing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_editbookmarksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_editbookmarksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableexperimentalpolicies", + "displayName": "Enables experimental policies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableexperimentalpolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableexperimentalpolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableexperimentalpolicies_enableexperimentalpoliciesdesc", + "displayName": "Enables experimental policies (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableonlinerevocationchecks", + "displayName": "Enable online OCSP/CRL checks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableonlinerevocationchecks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enableonlinerevocationchecks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enterprisehardwareplatformapienabled", + "displayName": "Enables managed extensions to use the Enterprise Hardware Platform API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enterprisehardwareplatformapienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_enterprisehardwareplatformapienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_explicitlyallowednetworkports", + "displayName": "Explicitly allowed network ports (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_explicitlyallowednetworkports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_explicitlyallowednetworkports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_explicitlyallowednetworkports_explicitlyallowednetworkportsdesc", + "displayName": "Explicitly allowed network ports (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_externalprotocoldialogshowalwaysopencheckbox", + "displayName": "Show an \"Always open\" checkbox in external protocol dialog. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_externalprotocoldialogshowalwaysopencheckbox_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_externalprotocoldialogshowalwaysopencheckbox_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on Shutdown (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fetchkeepalivedurationsecondsonshutdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fetchkeepalivedurationsecondsonshutdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fetchkeepalivedurationsecondsonshutdown_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on Shutdown: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcedlanguages", + "displayName": "Configure the content and order of preferred languages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcedlanguages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcedlanguages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcedlanguages_forcedlanguagesdesc", + "displayName": "Configure the content and order of preferred languages (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceephemeralprofiles", + "displayName": "Ephemeral profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceephemeralprofiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceephemeralprofiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcegooglesafesearch", + "displayName": "Force Google SafeSearch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcegooglesafesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forcegooglesafesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_forceyoutuberestrict_0", + "displayName": "Do not enforce Restricted Mode on YouTube", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_forceyoutuberestrict_1", + "displayName": "Enforce at least Moderate Restricted Mode on YouTube", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_forceyoutuberestrict_forceyoutuberestrict_2", + "displayName": "Enforce Strict Restricted Mode for YouTube", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fullscreenallowed", + "displayName": "Allow fullscreen mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fullscreenallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_fullscreenallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_globallyscopehttpauthcacheenabled", + "displayName": "Enable globally scoped HTTP auth cache (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_globallyscopehttpauthcacheenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_globallyscopehttpauthcacheenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hardwareaccelerationmodeenabled", + "displayName": "Use hardware acceleration when available (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hardwareaccelerationmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hardwareaccelerationmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode", + "displayName": "Control use of the Headless Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_headlessmode", + "displayName": "Control use of the Headless Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_headlessmode_1", + "displayName": "Allow use of the Headless Mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_headlessmode_headlessmode_2", + "displayName": "Do not allow use of the Headless Mode", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hidewebstoreicon", + "displayName": "Hide the web store from the New Tab Page and app launcher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hidewebstoreicon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hidewebstoreicon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_historyclustersvisible", + "displayName": "Show history clusters on the Chrome history page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_historyclustersvisible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_historyclustersvisible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hstspolicybypasslist", + "displayName": "List of names that will bypass the HSTS policy check (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hstspolicybypasslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hstspolicybypasslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_hstspolicybypasslist_hstspolicybypasslistdesc", + "displayName": "List of names that will bypass the HSTS policy check (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode", + "displayName": "Allow HTTPS-Only Mode to be enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_httpsonlymode", + "displayName": "Allow HTTPS-Only Mode to be enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_httpsonlymode_allowed", + "displayName": "Allow users to enable HTTPS-Only Mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_httpsonlymode_disallowed", + "displayName": "Do not allow users to enable HTTPS-Only Mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_httpsonlymode_httpsonlymode_force_enabled", + "displayName": "Force enable HTTPS-Only Mode (not supported yet)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importautofillformdata", + "displayName": "Import autofill form data from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importautofillformdata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importautofillformdata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importbookmarks", + "displayName": "Import bookmarks from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importbookmarks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importbookmarks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhistory", + "displayName": "Import browsing history from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhomepage", + "displayName": "Import of homepage from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsavedpasswords", + "displayName": "Import saved passwords from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsavedpasswords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsavedpasswords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsearchengine", + "displayName": "Import search engines from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsearchengine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_importsearchengine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability", + "displayName": "Incognito mode availability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_incognitomodeavailability", + "displayName": "Incognito mode availability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_incognitomodeavailability_0", + "displayName": "Incognito mode available", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_incognitomodeavailability_1", + "displayName": "Incognito mode disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_incognitomodeavailability_incognitomodeavailability_2", + "displayName": "Incognito mode forced", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureformswarningsenabled", + "displayName": "Enable warnings for insecure forms (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureformswarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureformswarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowed", + "displayName": "Specifies whether to allow insecure websites to make requests to more-private network endpoints (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowedforurls", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from insecure contexts. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_insecureprivatenetworkrequestsallowedforurls_insecureprivatenetworkrequestsallowedforurlsdesc", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from insecure contexts. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intensivewakeupthrottlingenabled", + "displayName": "Control the IntensiveWakeUpThrottling feature. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intensivewakeupthrottlingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intensivewakeupthrottlingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior_0", + "displayName": "Use default browser behavior.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior_1", + "displayName": "Disable DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior_2", + "displayName": "Disable DNS interception checks; allow did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_intranetredirectbehavior_intranetredirectbehavior_3", + "displayName": "Allow DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_isolateorigins", + "displayName": "Enable Site Isolation for specified origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_isolateorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_isolateorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_isolateorigins_isolateorigins", + "displayName": "Enable Site Isolation for specified origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lensregionsearchenabled", + "displayName": "Allow Google Lens region search menu item to be shown in context menu if supported. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lensregionsearchenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lensregionsearchenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lockiconinaddressbarenabled", + "displayName": "Enable lock icon in the omnibox for secure connections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lockiconinaddressbarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lockiconinaddressbarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lookalikewarningallowlistdomains", + "displayName": "Suppress lookalike domain warnings on domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lookalikewarningallowlistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lookalikewarningallowlistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_lookalikewarningallowlistdomains_lookalikewarningallowlistdomainsdesc", + "displayName": "Suppress lookalike domain warnings on domains (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction", + "displayName": "Add restrictions on managed accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_managedaccountssigninrestriction", + "displayName": "Add restrictions on managed accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_managedaccountssigninrestriction_primary_account", + "displayName": "A Managed account must be a primary account", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_managedaccountssigninrestriction_primary_account_strict", + "displayName": "A Managed account must be a primary account and have no secondary accounts", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedaccountssigninrestriction_managedaccountssigninrestriction_none", + "displayName": "No restrictions on managed accounts", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedbookmarks", + "displayName": "Managed Bookmarks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedbookmarks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedbookmarks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedbookmarks_managedbookmarks", + "displayName": "Managed Bookmarks (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedconfigurationperorigin", + "displayName": "Sets managed configuration values to websites to specific origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedconfigurationperorigin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedconfigurationperorigin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_managedconfigurationperorigin_managedconfigurationperorigin", + "displayName": "Sets managed configuration values to websites to specific origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxconnectionsperproxy", + "displayName": "Maximal number of concurrent connections to the proxy server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxconnectionsperproxy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxconnectionsperproxy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxconnectionsperproxy_maxconnectionsperproxy", + "displayName": "Maximal number of concurrent connections to the proxy server: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxinvalidationfetchdelay", + "displayName": "Maximum fetch delay after a policy invalidation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxinvalidationfetchdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxinvalidationfetchdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_maxinvalidationfetchdelay_maxinvalidationfetchdelay", + "displayName": "Maximum fetch delay after a policy invalidation: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediarecommendationsenabled", + "displayName": "Enable Media Recommendations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediarecommendationsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediarecommendationsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediaroutercastallowallips", + "displayName": "Allow Google Cast to connect to Cast devices on all IP addresses. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediaroutercastallowallips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_mediaroutercastallowallips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_metricsreportingenabled", + "displayName": "Enable reporting of usage and crash-related data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_metricsreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_metricsreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_networkpredictionoptions", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular.\r\n(Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkpredictionoptions_networkpredictionoptions_2", + "displayName": "Do not predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkservicesandboxenabled", + "displayName": "Enable the network service sandbox (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkservicesandboxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_networkservicesandboxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcardsvisible", + "displayName": "Show cards on the New Tab Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcardsvisible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcardsvisible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcustombackgroundenabled", + "displayName": "Allow users to customize the background on the New Tab page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcustombackgroundenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_ntpcustombackgroundenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_overridesecurityrestrictionsoninsecureorigin", + "displayName": "Origins or hostname patterns for which restrictions on\r\ninsecure origins should not apply (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_overridesecurityrestrictionsoninsecureorigin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_overridesecurityrestrictionsoninsecureorigin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_overridesecurityrestrictionsoninsecureorigin_overridesecurityrestrictionsoninsecureorigindesc", + "displayName": "Origins or hostname patterns for which restrictions on\r\ninsecure origins should not apply (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_paymentmethodqueryenabled", + "displayName": "Allow websites to query for available payment methods. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_paymentmethodqueryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_paymentmethodqueryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyatomicgroupsenabled", + "displayName": "Enables the concept of policy atomic groups (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyatomicgroupsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyatomicgroupsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policydictionarymultiplesourcemergelist", + "displayName": "Allow merging dictionary policies from different sources (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policydictionarymultiplesourcemergelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policydictionarymultiplesourcemergelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policydictionarymultiplesourcemergelist_policydictionarymultiplesourcemergelistdesc", + "displayName": "Allow merging dictionary policies from different sources (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policylistmultiplesourcemergelist", + "displayName": "Allow merging list policies from different sources (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policylistmultiplesourcemergelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policylistmultiplesourcemergelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policylistmultiplesourcemergelist_policylistmultiplesourcemergelistdesc", + "displayName": "Allow merging list policies from different sources (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyrefreshrate", + "displayName": "Refresh rate for user policy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyrefreshrate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyrefreshrate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_policyrefreshrate_policyrefreshrate", + "displayName": "Refresh rate for user policy: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability", + "displayName": "Profile picker availability on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_profilepickeronstartupavailability", + "displayName": "Profile picker availability on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_profilepickeronstartupavailability_0", + "displayName": "Profile picker available at startup", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_profilepickeronstartupavailability_1", + "displayName": "Profile picker disabled at startup", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_profilepickeronstartupavailability_profilepickeronstartupavailability_2", + "displayName": "Profile picker forced at startup", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promotionaltabsenabled", + "displayName": "Enable showing full-tab promotional content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promotionaltabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promotionaltabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promptfordownloadlocation", + "displayName": "Ask where to save each file before downloading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promptfordownloadlocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_promptfordownloadlocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_proxysettings", + "displayName": "Proxy settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_proxysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_proxysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_proxysettings_proxysettings", + "displayName": "Proxy settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_quicallowed", + "displayName": "Allow QUIC protocol (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_quicallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_quicallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alternateerrorpagesenabled_recommended", + "displayName": "Enable alternate error pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alternateerrorpagesenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alternateerrorpagesenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alwaysopenpdfexternally_recommended", + "displayName": "Always Open PDF files externally (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alwaysopenpdfexternally_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_alwaysopenpdfexternally_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_applicationlocalevalue_recommended", + "displayName": "Application locale (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_applicationlocalevalue_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_applicationlocalevalue_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_applicationlocalevalue_recommended_applicationlocalevalue", + "displayName": "Application locale (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofilladdressenabled_recommended", + "displayName": "Enable AutoFill for addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofilladdressenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofilladdressenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofillcreditcardenabled_recommended", + "displayName": "Enable AutoFill for credit cards (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofillcreditcardenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_autofillcreditcardenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_backgroundmodeenabled_recommended", + "displayName": "Continue running background apps when Google Chrome is closed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_backgroundmodeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_backgroundmodeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_blockthirdpartycookies_recommended", + "displayName": "Block third party cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_blockthirdpartycookies_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_blockthirdpartycookies_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_bookmarkbarenabled_recommended", + "displayName": "Enable Bookmark Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_bookmarkbarenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_bookmarkbarenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultdownloaddirectory_recommended", + "displayName": "Set default download directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultdownloaddirectory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultdownloaddirectory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultdownloaddirectory_recommended_defaultdownloaddirectory", + "displayName": "Set default download directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultsearchprovidercontextmenuaccessallowed_recommended", + "displayName": "Allow default search provider context menu search access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultsearchprovidercontextmenuaccessallowed_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_defaultsearchprovidercontextmenuaccessallowed_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloaddirectory_recommended", + "displayName": "Set download directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloaddirectory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloaddirectory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloaddirectory_recommended_downloaddirectory", + "displayName": "Set download directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended", + "displayName": "Allow download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions", + "displayName": "Download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_0", + "displayName": "No special restrictions. Default.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_1", + "displayName": "Block malicious downloads and dangerous file types.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_2", + "displayName": "Block malicious downloads, uncommon or unwanted downloads and dangerous file types.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_3", + "displayName": "Block all downloads.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_downloadrestrictions_recommended_downloadrestrictions_4", + "displayName": "Block malicious downloads. Recommended.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importautofillformdata_recommended", + "displayName": "Import autofill form data from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importautofillformdata_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importautofillformdata_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importbookmarks_recommended", + "displayName": "Import bookmarks from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importbookmarks_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importbookmarks_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importhistory_recommended", + "displayName": "Import browsing history from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importhistory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importhistory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsavedpasswords_recommended", + "displayName": "Import saved passwords from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsavedpasswords_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsavedpasswords_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsearchengine_recommended", + "displayName": "Import search engines from default browser on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsearchengine_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_importsearchengine_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_metricsreportingenabled_recommended", + "displayName": "Enable reporting of usage and crash-related data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_metricsreportingenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_metricsreportingenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_networkpredictionoptions", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular.\r\n(Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_networkpredictionoptions_recommended_networkpredictionoptions_2", + "displayName": "Do not predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_safebrowsingfortrustedsourcesenabled_recommended", + "displayName": "Enable Safe Browsing for trusted sources (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_safebrowsingfortrustedsourcesenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_safebrowsingfortrustedsourcesenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_searchsuggestenabled_recommended", + "displayName": "Enable search suggestions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_searchsuggestenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_searchsuggestenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_showfullurlsinaddressbar_recommended", + "displayName": "Show Full URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_showfullurlsinaddressbar_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_showfullurlsinaddressbar_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_spellcheckserviceenabled_recommended", + "displayName": "Enable or disable spell checking web service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_spellcheckserviceenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_spellcheckserviceenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_translateenabled_recommended", + "displayName": "Enable Translate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_translateenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended_translateenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended", + "displayName": "Register protocol handlers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_registeredprotocolhandlers", + "displayName": "Register protocol handlers (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovideralternateurls_recommended", + "displayName": "List of alternate URLs for the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovideralternateurls_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovideralternateurls_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovideralternateurls_recommended_defaultsearchprovideralternateurlsdesc", + "displayName": "List of alternate URLs for the default search provider (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended", + "displayName": "Enable the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended", + "displayName": "Default search provider encodings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_defaultsearchproviderencodingsdesc", + "displayName": "Default search provider encodings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidericonurl_recommended", + "displayName": "Default search provider icon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidericonurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidericonurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidericonurl_recommended_defaultsearchprovidericonurl", + "displayName": "Default search provider icon (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended", + "displayName": "Parameter providing search-by-image feature for the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_defaultsearchproviderimageurl", + "displayName": "Parameter providing search-by-image feature for the default search provider (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended", + "displayName": "Parameters for image URL which uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for image URL which uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended", + "displayName": "Default search provider keyword (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended", + "displayName": "Default search provider name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_defaultsearchprovidername", + "displayName": "Default search provider name (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidernewtaburl_recommended", + "displayName": "Default search provider new tab page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidernewtaburl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidernewtaburl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidernewtaburl_recommended_defaultsearchprovidernewtaburl", + "displayName": "Default search provider new tab page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended", + "displayName": "Default search provider search URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurlpostparams_recommended", + "displayName": "Parameters for search URL which uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurlpostparams_recommended_defaultsearchprovidersearchurlpostparams", + "displayName": "Parameters for search URL which uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended", + "displayName": "Default search provider suggest URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_defaultsearchprovidersuggesturl", + "displayName": "Default search provider suggest URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturlpostparams_recommended", + "displayName": "Parameters for suggest URL which uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturlpostparams_recommended_defaultsearchprovidersuggesturlpostparams", + "displayName": "Parameters for suggest URL which uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_autofillenabled_recommended", + "displayName": "Enable AutoFill (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_autofillenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_autofillenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_safebrowsingenabled_recommended", + "displayName": "Enable Safe Browsing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_safebrowsingenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~deprecatedpolicies_recommended_safebrowsingenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordleakdetectionenabled_recommended", + "displayName": "Enable leak detection for entered credentials (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordleakdetectionenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordleakdetectionenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended", + "displayName": "Enable saving passwords to the password manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printheaderfooter_recommended", + "displayName": "Print Headers and Footers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printheaderfooter_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printheaderfooter_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpdfasimagedefault_recommended", + "displayName": "Print PDF as Image Default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpdfasimagedefault_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpdfasimagedefault_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended", + "displayName": "Use System Default Printer as Default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_clearsitedataonexit_recommended", + "displayName": "Clear site data on browser shutdown (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_clearsitedataonexit_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_clearsitedataonexit_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturl_recommended", + "displayName": "Default search provider instant URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturl_recommended_defaultsearchproviderinstanturl", + "displayName": "Default search provider instant URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturlpostparams_recommended", + "displayName": "Parameters for instant URL which uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchproviderinstanturlpostparams_recommended_defaultsearchproviderinstanturlpostparams", + "displayName": "Parameters for instant URL which uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchprovidersearchtermsreplacementkey_recommended", + "displayName": "Parameter controlling search term placement for the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchprovidersearchtermsreplacementkey_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchprovidersearchtermsreplacementkey_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_defaultsearchprovidersearchtermsreplacementkey_recommended_defaultsearchprovidersearchtermsreplacementkey", + "displayName": "Parameter controlling search term placement for the default search provider (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_dnsprefetchingenabled_recommended", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_dnsprefetchingenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_dnsprefetchingenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_instantenabled_recommended", + "displayName": "Enable Instant (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_instantenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~removedpolicies_recommended_instantenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended", + "displayName": "Safe Browsing Protection Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_safebrowsingprotectionlevel", + "displayName": "Safe Browsing Protection Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_safebrowsingprotectionlevel_0", + "displayName": "Safe Browsing is never active.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_safebrowsingprotectionlevel_1", + "displayName": "Safe Browsing is active in the standard mode.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~safebrowsing_recommended_safebrowsingprotectionlevel_recommended_safebrowsingprotectionlevel_2", + "displayName": "Safe Browsing is active in the enhanced mode. This mode provides better security, but requires sharing more browsing information with Google.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepageisnewtabpage_recommended", + "displayName": "Use New Tab Page as homepage (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepageisnewtabpage_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepageisnewtabpage_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepagelocation_recommended", + "displayName": "Configure the home page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepagelocation_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepagelocation_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_homepagelocation_recommended_homepagelocation", + "displayName": "Home page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended", + "displayName": "Action on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup", + "displayName": "Action on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_5", + "displayName": "Open New Tab Page", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartupurls_recommended", + "displayName": "URLs to open on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartupurls_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartupurls_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_restoreonstartupurls_recommended_restoreonstartupurlsdesc", + "displayName": "URLs to open on startup (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_showhomebutton_recommended", + "displayName": "Show Home button on toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_showhomebutton_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_recommended~startup_recommended_showhomebutton_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification", + "displayName": "Notify a user that a browser relaunch or device restart is recommended or required (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_relaunchnotification", + "displayName": "Notify a user that a browser relaunch or device restart is recommended or required (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_relaunchnotification_1", + "displayName": "Show a recurring prompt to the user indicating that a relaunch is recommended", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotification_relaunchnotification_2", + "displayName": "Show a recurring prompt to the user indicating that a relaunch is required", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotificationperiod", + "displayName": "Set the time period for update notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotificationperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotificationperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchnotificationperiod_relaunchnotificationperiod", + "displayName": "Time period (milliseconds): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchwindow", + "displayName": "Set the time interval for relaunch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchwindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchwindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_relaunchwindow_relaunchwindow", + "displayName": "Relaunch time window (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_remotedebuggingallowed", + "displayName": "Allow remote debugging (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_remotedebuggingallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_remotedebuggingallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_renderercodeintegrityenabled", + "displayName": "Enable Renderer Code Integrity (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_renderercodeintegrityenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_renderercodeintegrityenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_requireonlinerevocationchecksforlocalanchors", + "displayName": "Require online OCSP/CRL checks for local trust anchors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_requireonlinerevocationchecksforlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_requireonlinerevocationchecksforlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_restrictsignintopattern", + "displayName": "Restrict which Google accounts are allowed to be set as browser primary accounts in Google Chrome (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_restrictsignintopattern_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_restrictsignintopattern_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_restrictsignintopattern_restrictsignintopattern", + "displayName": "Restrict which Google accounts are allowed to be set as browser primary accounts in Google Chrome (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilelocation", + "displayName": "Set the roaming profile directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilelocation_roamingprofilelocation", + "displayName": "Set the roaming profile directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilesupportenabled", + "displayName": "Enable the creation of roaming copies for Google Chrome profile data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilesupportenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_roamingprofilesupportenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safebrowsingfortrustedsourcesenabled", + "displayName": "Enable Safe Browsing for trusted sources (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safebrowsingfortrustedsourcesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safebrowsingfortrustedsourcesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior", + "displayName": "Control SafeSites adult content filtering. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_safesitesfilterbehavior", + "displayName": "Control SafeSites adult content filtering. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_safesitesfilterbehavior_0", + "displayName": "Do not filter sites for adult content", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_safesitesfilterbehavior_safesitesfilterbehavior_1", + "displayName": "Filter top level sites (but not embedded iframes) for adult content", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sandboxexternalprotocolblocked", + "displayName": "Allow Chrome to block navigations toward external protocols in sandboxed iframes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sandboxexternalprotocolblocked_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sandboxexternalprotocolblocked_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_savingbrowserhistorydisabled", + "displayName": "Disable saving browser history (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_savingbrowserhistorydisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_savingbrowserhistorydisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_scrolltotextfragmentenabled", + "displayName": "Enable scrolling to text specified in URL fragments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_scrolltotextfragmentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_scrolltotextfragmentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_searchsuggestenabled", + "displayName": "Enable search suggestions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_searchsuggestenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_searchsuggestenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_securitykeypermitattestation", + "displayName": "URLs/domains automatically permitted direct Security Key attestation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_securitykeypermitattestation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_securitykeypermitattestation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_securitykeypermitattestation_securitykeypermitattestationdesc", + "displayName": "URLs/domains automatically permitted direct Security Key attestation (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedarraybufferunrestrictedaccessallowed", + "displayName": "Specifies whether SharedArrayBuffers can be used in a non cross-origin-isolated context (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedarraybufferunrestrictedaccessallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedarraybufferunrestrictedaccessallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedclipboardenabled", + "displayName": "Enable the Shared Clipboard Feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedclipboardenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sharedclipboardenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showappsshortcutinbookmarkbar", + "displayName": "Show the apps shortcut in the bookmark bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showappsshortcutinbookmarkbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showappsshortcutinbookmarkbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showfullurlsinaddressbar", + "displayName": "Show Full URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showfullurlsinaddressbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_showfullurlsinaddressbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signedhttpexchangeenabled", + "displayName": "Enable Signed HTTP Exchange (SXG) support (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signedhttpexchangeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signedhttpexchangeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signininterceptionenabled", + "displayName": "Enable signin interception (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signininterceptionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_signininterceptionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_siteperprocess", + "displayName": "Require Site Isolation for every site (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_siteperprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_siteperprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckenabled", + "displayName": "Enable spellcheck (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguage", + "displayName": "Force enable spellcheck languages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguage_spellchecklanguagedesc", + "displayName": "Force enable spellcheck languages (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguageblocklist", + "displayName": "Force disable spellcheck languages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguageblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguageblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellchecklanguageblocklist_spellchecklanguageblocklistdesc", + "displayName": "Force disable spellcheck languages (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckserviceenabled", + "displayName": "Enable or disable spell checking web service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckserviceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_spellcheckserviceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowed", + "displayName": "Allow proceeding from the SSL warning page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowedfororigins", + "displayName": "Allow proceeding from the SSL warning page on specific origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslerroroverrideallowedfororigins_sslerroroverrideallowedfororiginsdesc", + "displayName": "Allow proceeding from the SSL warning page on specific origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin", + "displayName": "Minimum SSL version enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_sslversionmin", + "displayName": "Minimum SSL version enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_sslversionmin_tls1", + "displayName": "TLS 1.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_sslversionmin_tls1.1", + "displayName": "TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_sslversionmin_sslversionmin_tls1.2", + "displayName": "TLS 1.2", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressdifferentoriginsubframedialogs", + "displayName": "Suppress JavaScript Dialogs triggered from different origin subframes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressdifferentoriginsubframedialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressdifferentoriginsubframedialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressunsupportedoswarning", + "displayName": "Suppress the unsupported OS warning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressunsupportedoswarning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_suppressunsupportedoswarning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_syncdisabled", + "displayName": "Disable synchronization of data with Google (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_syncdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_syncdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_synctypeslistdisabled", + "displayName": "List of types that should be excluded from synchronization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_synctypeslistdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_synctypeslistdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_synctypeslistdisabled_synctypeslistdisableddesc", + "displayName": "List of types that should be excluded from synchronization (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_targetblankimpliesnoopener", + "displayName": "Do not set window.opener for links targeting _blank (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_targetblankimpliesnoopener_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_targetblankimpliesnoopener_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_taskmanagerendprocessenabled", + "displayName": "Enable ending processes in Task Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_taskmanagerendprocessenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_taskmanagerendprocessenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_thirdpartyblockingenabled", + "displayName": "Enable third party software injection blocking (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_thirdpartyblockingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_thirdpartyblockingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_totalmemorylimitmb", + "displayName": "Set limit on megabytes of memory a single Chrome instance can use. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_totalmemorylimitmb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_totalmemorylimitmb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_totalmemorylimitmb_totalmemorylimitmb", + "displayName": "Set memory limit for Chrome instances: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_translateenabled", + "displayName": "Enable Translate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_translateenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_translateenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_u2fsecuritykeyapienabled", + "displayName": "Allow using the deprecated U2F Security Key API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_u2fsecuritykeyapienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_u2fsecuritykeyapienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlallowlist", + "displayName": "Allow access to a list of URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlallowlist_urlallowlistdesc", + "displayName": "Allow access to a list of URLs (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlblocklist", + "displayName": "Block access to a list of URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlblocklist_urlblocklistdesc", + "displayName": "Block access to a list of URLs (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlkeyedanonymizeddatacollectionenabled", + "displayName": "Enable URL-keyed anonymized data collection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlkeyedanonymizeddatacollectionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_urlkeyedanonymizeddatacollectionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatadir", + "displayName": "Set user data directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatadir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatadir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatadir_userdatadir", + "displayName": "Set user data directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatasnapshotretentionlimit", + "displayName": "Limits the number of user data snapshots retained for use in case of emergency rollback. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatasnapshotretentionlimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatasnapshotretentionlimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userdatasnapshotretentionlimit_userdatasnapshotretentionlimit", + "displayName": "Limits the number of user data snapshots retained for use in case of emergency rollback.: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userfeedbackallowed", + "displayName": "Allow user feedback (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userfeedbackallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_userfeedbackallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowed", + "displayName": "Allow or deny video capture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowedurls", + "displayName": "URLs that will be granted access to video capture devices without prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_videocaptureallowedurls_videocaptureallowedurlsdesc", + "displayName": "URLs that will be granted access to video capture devices without prompt (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webappinstallforcelist", + "displayName": "Configure list of force-installed Web Apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webappinstallforcelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webappinstallforcelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webappinstallforcelist_webappinstallforcelist", + "displayName": "URLs for Web Apps to be silently installed. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcallowlegacytlsprotocols", + "displayName": "Allow legacy TLS/DTLS downgrade in WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcallowlegacytlsprotocols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcallowlegacytlsprotocols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtceventlogcollectionallowed", + "displayName": "Allow collection of WebRTC event logs from Google services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtceventlogcollectionallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtceventlogcollectionallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling", + "displayName": "The IP handling policy of WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling", + "displayName": "The IP handling policy of WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling_default", + "displayName": "WebRTC will use all available interfaces when searching for the best path.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling_default_public_and_private_interfaces", + "displayName": "WebRTC will only use the interface connecting to the public Internet, but may connect using private IP addresses.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling_default_public_interface_only", + "displayName": "WebRTC will only use the interface connecting to the public Internet, and will not connect using private IP addresses.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtciphandling_webrtciphandling_disable_non_proxied_udp", + "displayName": "WebRTC will use TCP on the public-facing interface, and will only use UDP if supported by a configured proxy.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtclocalipsallowedurls", + "displayName": "URLs for which local IPs are exposed in WebRTC ICE candidates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtclocalipsallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtclocalipsallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtclocalipsallowedurls_webrtclocalipsallowedurlsdesc", + "displayName": "URLs for which local IPs are exposed in WebRTC ICE candidates (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcudpportrange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcudpportrange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_webrtcudpportrange_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_websqlinthirdpartycontextenabled", + "displayName": "Force WebSQL in third-party contexts to be re-enabled. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_websqlinthirdpartycontextenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_websqlinthirdpartycontextenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_windowocclusionenabled", + "displayName": "Enable Window Occlusion (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_windowocclusionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_windowocclusionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_wpadquickcheckenabled", + "displayName": "Enable WPAD optimization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_wpadquickcheckenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome_wpadquickcheckenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserparameters", + "displayName": "Command-line parameters for the alternative browser. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserparameters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserparameters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserparameters_alternativebrowserparametersdesc", + "displayName": "Command-line parameters for the alternative browser. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserpath", + "displayName": "Alternative browser to launch for configured websites. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_alternativebrowserpath_alternativebrowserpath", + "displayName": "Alternative browser to launch for configured websites. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromeparameters", + "displayName": "Command-line parameters for switching from the alternative browser. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromeparameters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromeparameters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromeparameters_browserswitcherchromeparametersdesc", + "displayName": "Command-line parameters for switching from the alternative browser. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromepath", + "displayName": "Path to Chrome for switching from the alternative browser. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromepath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromepath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherchromepath_browserswitcherchromepath", + "displayName": "Path to Chrome for switching from the alternative browser. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherdelay", + "displayName": "Delay before launching alternative browser (milliseconds) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherdelay_browserswitcherdelay", + "displayName": "Delay before launching alternative browser (milliseconds): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherenabled", + "displayName": "Enable the Legacy Browser Support feature. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalgreylisturl", + "displayName": "URL of an XML file that contains URLs that should never trigger a browser switch. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalgreylisturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalgreylisturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalgreylisturl_browserswitcherexternalgreylisturl", + "displayName": "URL of an XML file that contains URLs that should never trigger a browser switch. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalsitelisturl", + "displayName": "URL of an XML file that contains URLs to load in an alternative browser. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalsitelisturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalsitelisturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherexternalsitelisturl_browserswitcherexternalsitelisturl", + "displayName": "URL of an XML file that contains URLs to load in an alternative browser. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherkeeplastchrometab", + "displayName": "Keep last tab open in Chrome. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherkeeplastchrometab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherkeeplastchrometab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode", + "displayName": "Sitelist parsing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_browserswitcherparsingmode", + "displayName": "Sitelist parsing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_browserswitcherparsingmode_0", + "displayName": "Default behavior for LBS.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherparsingmode_browserswitcherparsingmode_1", + "displayName": "More compatible with Microsoft IE/Edge enterprise mode sitelists.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurlgreylist", + "displayName": "Websites that should never trigger a browser switch. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurlgreylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurlgreylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurlgreylist_browserswitcherurlgreylistdesc", + "displayName": "Websites that should never trigger a browser switch. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurllist", + "displayName": "Websites to open in alternative browser (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurllist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurllist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcherurllist_browserswitcherurllistdesc", + "displayName": "Websites to open in alternative browser (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcheruseiesitelist", + "displayName": "Use Internet Explorer's SiteList policy for Legacy Browser Support. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcheruseiesitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~browserswitcher_browserswitcheruseiesitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_autoselectcertificateforurls", + "displayName": "Automatically select client certificates for these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_autoselectcertificateforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_autoselectcertificateforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_autoselectcertificateforurls_autoselectcertificateforurlsdesc", + "displayName": "Automatically select client certificates for these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesallowedforurls", + "displayName": "Allow cookies on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesallowedforurls_cookiesallowedforurlsdesc", + "displayName": "Allow cookies on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesblockedforurls", + "displayName": "Block cookies on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiesblockedforurls_cookiesblockedforurlsdesc", + "displayName": "Block cookies on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiessessiononlyforurls", + "displayName": "Limit cookies from matching URLs to the current session (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiessessiononlyforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiessessiononlyforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_cookiessessiononlyforurls_cookiessessiononlyforurlsdesc", + "displayName": "Limit cookies from matching URLs to the current session (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting", + "displayName": "Default cookies setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_defaultcookiessetting", + "displayName": "Default cookies setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_defaultcookiessetting_1", + "displayName": "Allow all sites to set local data", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_defaultcookiessetting_2", + "displayName": "Do not allow any site to set local data", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultcookiessetting_defaultcookiessetting_4", + "displayName": "Keep cookies for the duration of the session", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting_2", + "displayName": "Do not allow any site to request read access to files and directories via the File System API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting_3", + "displayName": "Allow sites to ask the user to grant read access to files and directories via the File System API", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_2", + "displayName": "Do not allow any site to request write access to files and directories", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_3", + "displayName": "Allow sites to ask the user to grant write access to files and directories", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting", + "displayName": "Default geolocation setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting", + "displayName": "Default geolocation setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_1", + "displayName": "Allow sites to track the users' physical location", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_2", + "displayName": "Do not allow any site to track the users' physical location", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_3", + "displayName": "Ask whenever a site wants to track the users' physical location", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting", + "displayName": "Default images setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_defaultimagessetting", + "displayName": "Default images setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_defaultimagessetting_1", + "displayName": "Allow all sites to show all images", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultimagessetting_defaultimagessetting_2", + "displayName": "Do not allow any site to show images", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_2", + "displayName": "Do not allow any site to load mixed content", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_3", + "displayName": "Allow users to add exceptions to allow mixed content", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting_1", + "displayName": "Allow any site to run JavaScript JIT", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting_2", + "displayName": "Do not allow any site to run JavaScript JIT", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting", + "displayName": "Default JavaScript setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting", + "displayName": "Default JavaScript setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_1", + "displayName": "Allow all sites to run JavaScript", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_2", + "displayName": "Do not allow any site to run JavaScript", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting", + "displayName": "Default notification setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_defaultnotificationssetting", + "displayName": "Default notification setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_defaultnotificationssetting_1", + "displayName": "Allow sites to show desktop notifications", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_defaultnotificationssetting_2", + "displayName": "Do not allow any site to show desktop notifications", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultnotificationssetting_defaultnotificationssetting_3", + "displayName": "Ask every time a site wants to show desktop notifications", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting", + "displayName": "Default popups setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_defaultpopupssetting", + "displayName": "Default popups setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_defaultpopupssetting_1", + "displayName": "Allow all sites to show pop-ups", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultpopupssetting_defaultpopupssetting_2", + "displayName": "Do not allow any site to show popups", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting", + "displayName": "Default sensors setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_defaultsensorssetting", + "displayName": "Default sensors setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_defaultsensorssetting_1", + "displayName": "Allow sites to access sensors", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultsensorssetting_defaultsensorssetting_2", + "displayName": "Do not allow any site to access sensors", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting", + "displayName": "Control use of the Serial API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_defaultserialguardsetting", + "displayName": "Control use of the Serial API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_defaultserialguardsetting_2", + "displayName": "Do not allow any site to request access to serial ports via the Serial API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultserialguardsetting_defaultserialguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a serial port", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting_2", + "displayName": "Do not allow any site to request access to Bluetooth devices via the Web Bluetooth API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a nearby Bluetooth device", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_2", + "displayName": "Do not allow any site to request access to USB devices via the WebUSB API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a connected USB device", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadaskforurls", + "displayName": "Allow read access via the File System API on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadaskforurls_filesystemreadaskforurlsdesc", + "displayName": "Allow read access via the File System API on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadblockedforurls", + "displayName": "Block read access via the File System API on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemreadblockedforurls_filesystemreadblockedforurlsdesc", + "displayName": "Block read access via the File System API on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteaskforurls", + "displayName": "Allow write access to files and directories on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteaskforurls_filesystemwriteaskforurlsdesc", + "displayName": "Allow write access to files and directories on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteblockedforurls", + "displayName": "Block write access to files and directories on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_filesystemwriteblockedforurls_filesystemwriteblockedforurlsdesc", + "displayName": "Block write access to files and directories on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesallowedforurls", + "displayName": "Allow images on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesallowedforurls_imagesallowedforurlsdesc", + "displayName": "Allow images on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesblockedforurls", + "displayName": "Block images on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_imagesblockedforurls_imagesblockedforurlsdesc", + "displayName": "Block images on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentallowedforurls", + "displayName": "Allow insecure content on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentallowedforurls_insecurecontentallowedforurlsdesc", + "displayName": "Allow insecure content on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentblockedforurls", + "displayName": "Block insecure content on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_insecurecontentblockedforurls_insecurecontentblockedforurlsdesc", + "displayName": "Block insecure content on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptallowedforurls", + "displayName": "Allow JavaScript on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptallowedforurls_javascriptallowedforurlsdesc", + "displayName": "Allow JavaScript on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptblockedforurls", + "displayName": "Block JavaScript on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptblockedforurls_javascriptblockedforurlsdesc", + "displayName": "Block JavaScript on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitallowedforsites", + "displayName": "Allow JavaScript to use JIT on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitallowedforsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitallowedforsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitallowedforsites_javascriptjitallowedforsitesdesc", + "displayName": "Allow JavaScript to use JIT on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitblockedforsites", + "displayName": "Block JavaScript from using JIT on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitblockedforsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitblockedforsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_javascriptjitblockedforsites_javascriptjitblockedforsitesdesc", + "displayName": "Block JavaScript from using JIT on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist", + "displayName": "Revert to legacy SameSite behavior for cookies on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_legacysamesitecookiebehaviorenabledfordomainlistdesc", + "displayName": "Revert to legacy SameSite behavior for cookies on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsallowedforurls", + "displayName": "Allow notifications on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsallowedforurls_notificationsallowedforurlsdesc", + "displayName": "Allow notifications on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsblockedforurls", + "displayName": "Block notifications on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_notificationsblockedforurls_notificationsblockedforurlsdesc", + "displayName": "Block notifications on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsallowedforurls", + "displayName": "Allow popups on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsallowedforurls_popupsallowedforurlsdesc", + "displayName": "Allow popups on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsblockedforurls", + "displayName": "Block popups on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_popupsblockedforurls_popupsblockedforurlsdesc", + "displayName": "Block popups on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsallowedforurls", + "displayName": "Allow access to sensors on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsallowedforurls_sensorsallowedforurlsdesc", + "displayName": "Allow access to sensors on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsblockedforurls", + "displayName": "Block access to sensors on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_sensorsblockedforurls_sensorsblockedforurlsdesc", + "displayName": "Block access to sensors on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowallportsforurls", + "displayName": "Automatically grant permission to sites to connect all serial ports. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowallportsforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowallportsforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowallportsforurls_serialallowallportsforurlsdesc", + "displayName": "Automatically grant permission to sites to connect all serial ports. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowusbdevicesforurls", + "displayName": "Automatically grant permission to sites to connect to USB serial devices. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowusbdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowusbdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialallowusbdevicesforurls_serialallowusbdevicesforurls", + "displayName": "Automatically grant permission to sites to connect to USB serial devices. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialaskforurls", + "displayName": "Allow the Serial API on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialaskforurls_serialaskforurlsdesc", + "displayName": "Allow the Serial API on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialblockedforurls", + "displayName": "Block the Serial API on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_serialblockedforurls_serialblockedforurlsdesc", + "displayName": "Block the Serial API on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusballowdevicesforurls", + "displayName": "Automatically grant permission to these sites to connect to USB devices with the given vendor and product IDs. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusballowdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusballowdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusballowdevicesforurls_webusballowdevicesforurls", + "displayName": "Automatically grant permission to these sites to connect to USB devices with the given vendor and product IDs. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbaskforurls", + "displayName": "Allow WebUSB on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbaskforurls_webusbaskforurlsdesc", + "displayName": "Allow WebUSB on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbblockedforurls", + "displayName": "Block WebUSB on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~contentsettings_webusbblockedforurls_webusbblockedforurlsdesc", + "displayName": "Block WebUSB on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovideralternateurls", + "displayName": "List of alternate URLs for the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovideralternateurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovideralternateurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovideralternateurls_defaultsearchprovideralternateurlsdesc", + "displayName": "List of alternate URLs for the default search provider (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderenabled", + "displayName": "Enable the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderencodings", + "displayName": "Default search provider encodings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderencodings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderencodings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderencodings_defaultsearchproviderencodingsdesc", + "displayName": "Default search provider encodings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidericonurl", + "displayName": "Default search provider icon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidericonurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidericonurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidericonurl_defaultsearchprovidericonurl", + "displayName": "Default search provider icon (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurl", + "displayName": "Parameter providing search-by-image feature for the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurl_defaultsearchproviderimageurl", + "displayName": "Parameter providing search-by-image feature for the default search provider (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for image URL which uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderimageurlpostparams_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for image URL which uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderkeyword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderkeyword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchproviderkeyword_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidername", + "displayName": "Default search provider name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidername_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidername_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidername_defaultsearchprovidername", + "displayName": "Default search provider name (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidernewtaburl", + "displayName": "Default search provider new tab page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidernewtaburl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidernewtaburl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidernewtaburl_defaultsearchprovidernewtaburl", + "displayName": "Default search provider new tab page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurl_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurlpostparams", + "displayName": "Parameters for search URL which uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersearchurlpostparams_defaultsearchprovidersearchurlpostparams", + "displayName": "Parameters for search URL which uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturl", + "displayName": "Default search provider suggest URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturl_defaultsearchprovidersuggesturl", + "displayName": "Default search provider suggest URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturlpostparams", + "displayName": "Parameters for suggest URL which uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~defaultsearchprovider_defaultsearchprovidersuggesturlpostparams_defaultsearchprovidersuggesturlpostparams", + "displayName": "Parameters for suggest URL which uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authnegotiatedelegatewhitelist", + "displayName": "Kerberos delegation server whitelist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authnegotiatedelegatewhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authnegotiatedelegatewhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authnegotiatedelegatewhitelist_authnegotiatedelegatewhitelist", + "displayName": "Kerberos delegation server whitelist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authserverwhitelist", + "displayName": "Authentication server whitelist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authserverwhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authserverwhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_authserverwhitelist_authserverwhitelist", + "displayName": "Authentication server whitelist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autofillenabled", + "displayName": "Enable AutoFill (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autofillenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autofillenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autoplaywhitelist", + "displayName": "Allow media autoplay on a whitelist of URL patterns (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autoplaywhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autoplaywhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_autoplaywhitelist_autoplaywhitelistdesc", + "displayName": "Allow media autoplay on a whitelist of URL patterns (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting", + "displayName": "Default mediastream setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_defaultmediastreamsetting", + "displayName": "Default mediastream setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_defaultmediastreamsetting_2", + "displayName": "Do not allow any site to access the camera and microphone", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_defaultmediastreamsetting_defaultmediastreamsetting_3", + "displayName": "Ask every time a site wants to access the camera and/or microphone", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_developertoolsdisabled", + "displayName": "Disable Developer Tools (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_developertoolsdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_developertoolsdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_disabledschemes", + "displayName": "Disable URL protocol schemes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_disabledschemes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_disabledschemes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_disabledschemes_disabledschemesdesc", + "displayName": "List of disabled protocol schemes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallblacklist", + "displayName": "Configure extension installation blacklist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallblacklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallblacklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallblacklist_extensioninstallblacklistdesc", + "displayName": "Extension IDs the user should be prevented from installing (or * for all) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallwhitelist", + "displayName": "Configure extension installation whitelist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallwhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallwhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_extensioninstallwhitelist_extensioninstallwhitelistdesc", + "displayName": "Extension IDs to exempt from the blacklist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcebrowsersignin", + "displayName": "Enable force sign in for Google Chrome (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcebrowsersignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcebrowsersignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcesafesearch", + "displayName": "Force SafeSearch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcesafesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forcesafesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forceyoutubesafetymode", + "displayName": "Force YouTube Safety Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forceyoutubesafetymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_forceyoutubesafetymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_incognitoenabled", + "displayName": "Enable Incognito mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_incognitoenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_incognitoenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_javascriptenabled", + "displayName": "Enable JavaScript (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_javascriptenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_javascriptenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingblacklist", + "displayName": "Configure native messaging blocklist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingblacklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingblacklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingblacklist_nativemessagingblacklistdesc", + "displayName": "Names of the forbidden native messaging hosts (or * for all) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingwhitelist", + "displayName": "Configure native messaging whitelist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingwhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingwhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativemessagingwhitelist_nativemessagingwhitelistdesc", + "displayName": "Names of the native messaging hosts to exempt from the blocklist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativewindowocclusionenabled", + "displayName": "Enable Native Window Occlusion (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativewindowocclusionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_nativewindowocclusionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxybypasslist", + "displayName": "Proxy bypass rules (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxybypasslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxybypasslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxybypasslist_proxybypasslist", + "displayName": "Comma-separated list of proxy bypass rules (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode", + "displayName": "Choose how to specify proxy server settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode", + "displayName": "Choose how to specify proxy server settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_direct", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_auto_detect", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_pac_script", + "displayName": "Use a .pac proxy script", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_fixed_servers", + "displayName": "Use fixed proxy servers", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxymode_proxymode_system", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxypacurl", + "displayName": "URL to a proxy .pac file (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxypacurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxypacurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxypacurl_proxypacurl", + "displayName": "URL to a proxy .pac file (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyserver", + "displayName": "Address or URL of proxy server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyserver_proxyserver", + "displayName": "Address or URL of proxy server (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode", + "displayName": "Choose how to specify proxy server settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode", + "displayName": "Choose how to specify proxy server settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode_0", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode_1", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode_2", + "displayName": "Manually specify proxy settings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_proxyservermode_proxyservermode_3", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostclientdomain", + "displayName": "Configure the required domain name for remote access clients (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostclientdomain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostclientdomain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostclientdomain_remoteaccesshostclientdomain", + "displayName": "Configure the required domain name for remote access clients (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostdomain", + "displayName": "Configure the required domain name for remote access hosts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostdomain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostdomain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_remoteaccesshostdomain_remoteaccesshostdomain", + "displayName": "Configure the required domain name for remote access hosts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingenabled", + "displayName": "Enable Safe Browsing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingwhitelistdomains", + "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingwhitelistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingwhitelistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_safebrowsingwhitelistdomains_safebrowsingwhitelistdomainsdesc", + "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_signinallowed", + "displayName": "Allow sign in to Google Chrome (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_signinallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_signinallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_spellchecklanguageblacklist", + "displayName": "Force disable spellcheck languages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_spellchecklanguageblacklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_spellchecklanguageblacklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_spellchecklanguageblacklist_spellchecklanguageblacklistdesc", + "displayName": "Force disable spellcheck languages (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_strictermixedcontenttreatmentenabled", + "displayName": "Enable stricter treatment for mixed content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_strictermixedcontenttreatmentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_strictermixedcontenttreatmentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_unsafelytreatinsecureoriginassecure", + "displayName": "Origins or hostname patterns for which restrictions on\r\ninsecure origins should not apply (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_unsafelytreatinsecureoriginassecure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_unsafelytreatinsecureoriginassecure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_unsafelytreatinsecureoriginassecure_unsafelytreatinsecureoriginassecuredesc", + "displayName": "Origins or hostname patterns for which restrictions on\r\ninsecure origins should not apply (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlblacklist", + "displayName": "Block access to a list of URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlblacklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlblacklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlblacklist_urlblacklistdesc", + "displayName": "Block access to a list of URLs (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlwhitelist", + "displayName": "Allow access to a list of URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlwhitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlwhitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~deprecatedpolicies_urlwhitelist_urlwhitelistdesc", + "displayName": "Allow access to a list of URLs (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_blockexternalextensions", + "displayName": "Blocks external extensions from being installed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_blockexternalextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_blockexternalextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionallowedtypes", + "displayName": "Configure allowed app/extension types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionallowedtypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionallowedtypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionallowedtypes_extensionallowedtypesdesc", + "displayName": "Types of extensions/apps that are allowed to be installed (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallallowlist", + "displayName": "Configure extension installation allow list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallallowlist_extensioninstallallowlistdesc", + "displayName": "Extension IDs to exempt from the blocklist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallblocklist", + "displayName": "Configure extension installation blocklist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallblocklist_extensioninstallblocklistdesc", + "displayName": "Extension IDs the user should be prevented from installing (or * for all) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallforcelist", + "displayName": "Configure the list of force-installed apps and extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallforcelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallforcelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallforcelist_extensioninstallforcelistdesc", + "displayName": "Extension/App IDs and update URLs to be silently installed (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallsources", + "displayName": "Configure extension, app, and user script install sources (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallsources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallsources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensioninstallsources_extensioninstallsourcesdesc", + "displayName": "URL patterns to allow extension, app, and user script installs from (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionsettings", + "displayName": "Extension management settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~extensions_extensionsettings_extensionsettings", + "displayName": "Extension management settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_enablemediarouter", + "displayName": "Enable Google Cast (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_enablemediarouter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_enablemediarouter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_showcasticonintoolbar", + "displayName": "Show the Google Cast toolbar icon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_showcasticonintoolbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~googlecast_showcasticonintoolbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_allowcrossoriginauthprompt", + "displayName": "Cross-origin HTTP Authentication prompts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_allowcrossoriginauthprompt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_allowcrossoriginauthprompt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authnegotiatedelegateallowlist", + "displayName": "Kerberos delegation server allowlist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authnegotiatedelegateallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authnegotiatedelegateallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authnegotiatedelegateallowlist_authnegotiatedelegateallowlist", + "displayName": "Kerberos delegation server allowlist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authschemes", + "displayName": "Supported authentication schemes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authschemes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authschemes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authschemes_authschemes", + "displayName": "Supported authentication schemes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authserverallowlist", + "displayName": "Authentication server allowlist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authserverallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authserverallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_authserverallowlist_authserverallowlist", + "displayName": "Authentication server allowlist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_basicauthoverhttpenabled", + "displayName": "Allow Basic authentication for HTTP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_basicauthoverhttpenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_basicauthoverhttpenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_disableauthnegotiatecnamelookup", + "displayName": "Disable CNAME lookup when negotiating Kerberos authentication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_disableauthnegotiatecnamelookup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_disableauthnegotiatecnamelookup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_enableauthnegotiateport", + "displayName": "Include non-standard port in Kerberos SPN (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_enableauthnegotiateport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~httpauthentication_enableauthnegotiateport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingallowlist", + "displayName": "Configure native messaging allowlist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingallowlist_nativemessagingallowlistdesc", + "displayName": "Names of the native messaging hosts to exempt from the blocklist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingblocklist", + "displayName": "Configure native messaging blocklist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessagingblocklist_nativemessagingblocklistdesc", + "displayName": "Names of the forbidden native messaging hosts (or * for all) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessaginguserlevelhosts", + "displayName": "Allow user-level Native Messaging hosts (installed without admin permissions) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessaginguserlevelhosts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~nativemessaging_nativemessaginguserlevelhosts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~other_promptonmultiplematchingcertificates", + "displayName": "Prompt for the client certificate when multiple certificates match. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~other_promptonmultiplematchingcertificates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~other_promptonmultiplematchingcertificates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordleakdetectionenabled", + "displayName": "Enable leak detection for entered credentials (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordleakdetectionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordleakdetectionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordmanagerenabled", + "displayName": "Enable saving passwords to the password manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordmanagerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~passwordmanager_passwordmanagerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintproxyenabled", + "displayName": "Enable Google Cloud Print proxy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintproxyenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintproxyenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintsubmitenabled", + "displayName": "Enable submission of documents to Google Cloud Print (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintsubmitenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_cloudprintsubmitenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_defaultprinterselection", + "displayName": "Default printer selection rules (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_defaultprinterselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_defaultprinterselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_defaultprinterselection_defaultprinterselection", + "displayName": "Default printer selection rules (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_disableprintpreview", + "displayName": "Disable Print Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_disableprintpreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_disableprintpreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printertypedenylist", + "displayName": "Disable printer types on the deny list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printertypedenylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printertypedenylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printertypedenylist_printertypedenylistdesc", + "displayName": "Disable printer types on the deny list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printheaderfooter", + "displayName": "Print Headers and Footers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printheaderfooter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printheaderfooter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_any", + "displayName": "Allow printing both with and without background graphics", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_enabled", + "displayName": "Allow printing only with background graphics", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_disabled", + "displayName": "Allow printing only without background graphics", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_enabled", + "displayName": "Enable background graphics printing mode by default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_disabled", + "displayName": "Disable background graphics printing mode by default", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingenabled", + "displayName": "Enable printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault", + "displayName": "Default printing page size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printingpapersizedefault_printingpapersizedefault", + "displayName": "Default printing page size (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpdfasimageavailability", + "displayName": "Print PDF as Image Available (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpdfasimageavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpdfasimageavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode", + "displayName": "Print PostScript Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode", + "displayName": "Print PostScript Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode_0", + "displayName": "Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpostscriptmode_printpostscriptmode_1", + "displayName": "Type42", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter", + "displayName": "Use System Default Printer as Default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printpreviewusesystemdefaultprinter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode", + "displayName": "Print Rasterization Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode", + "displayName": "Print Rasterization Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode_0", + "displayName": "Full", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizationmode_printrasterizationmode_1", + "displayName": "Fast", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~printing_printrasterizepdfdpi_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowclientpairing", + "displayName": "Enable or disable PIN-less authentication for remote access hosts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowclientpairing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowclientpairing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowfiletransfer", + "displayName": "Allow remote access users to transfer files to/from the host (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowfiletransfer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowfiletransfer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowrelayedconnection", + "displayName": "Enable the use of relay servers by the remote access host (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowrelayedconnection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowrelayedconnection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremoteaccessconnections", + "displayName": "Allow remote access connections to this machine (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremoteaccessconnections_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremoteaccessconnections_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremotesupportconnections", + "displayName": "Allow remote support connections to this machine (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremotesupportconnections_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowremotesupportconnections_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowuiaccessforremoteassistance", + "displayName": "Allow remote users to interact with elevated windows in remote assistance sessions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowuiaccessforremoteassistance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostallowuiaccessforremoteassistance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist", + "displayName": "Configure the required domain names for remote access clients (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclientdomainlist_remoteaccesshostclientdomainlistdesc", + "displayName": "Configure the required domain names for remote access clients (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes", + "displayName": "The maximum size, in bytes, that can be transferred between client and host via clipboard synchronization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostclipboardsizebytes_remoteaccesshostclipboardsizebytes", + "displayName": "The maximum size, in bytes, that can be transferred between client and host via clipboard synchronization: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist", + "displayName": "Configure the required domain names for remote access hosts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostdomainlist_remoteaccesshostdomainlistdesc", + "displayName": "Configure the required domain names for remote access hosts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal", + "displayName": "Enable firewall traversal from remote access host (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostfirewalltraversal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes", + "displayName": "Maximum session duration allowed for remote access connections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostmaximumsessiondurationminutes_remoteaccesshostmaximumsessiondurationminutes", + "displayName": "Maximum session duration allowed for remote access connections: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain", + "displayName": "Enable curtaining of remote access hosts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostrequirecurtain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange", + "displayName": "Restrict the UDP port range used by the remote access host (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~remoteaccess_remoteaccesshostudpportrange_remoteaccesshostudpportrange", + "displayName": "Restrict the UDP port range used by the remote access host (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters", + "displayName": "Additional command line parameters for Google Chrome (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_additionallaunchparameters_additionallaunchparameters", + "displayName": "Additional command line parameters for Google Chrome (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled", + "displayName": "Enable sending downloads to Google for deep scanning for users enrolled in the Advanced Protection program (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_advancedprotectiondeepscanningenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins", + "displayName": "Allow running plugins that are outdated (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowoutdatedplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowpopupsduringpageunload", + "displayName": "Allows a page to show popups during its unloading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowpopupsduringpageunload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_allowpopupsduringpageunload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins", + "displayName": "Always runs plugins that require authorization (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_alwaysauthorizeplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled", + "displayName": "Allows the AppCache feature to be re-enabled even if it is off by default. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_appcacheforceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes", + "displayName": "Allow Google Chrome Frame to handle the listed content types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframecontenttypes_chromeframecontenttypesdesc", + "displayName": "Allow Google Chrome Frame to handle the listed content types (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings", + "displayName": "Default HTML renderer for Google Chrome Frame (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings", + "displayName": "Default HTML renderer for Google Chrome Frame (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings_0", + "displayName": "Use the host browser by default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_chromeframerenderersettings_chromeframerenderersettings_1", + "displayName": "Use Google Chrome Frame by default", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit", + "displayName": "Clear site data on browser shutdown (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_clearsitedataonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed", + "displayName": "Suppress Google Cloud Print deprecation messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_cloudprintwarningssuppressed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled", + "displayName": "Use the legacy CORS implementation rather than new CORS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corslegacymodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist", + "displayName": "Enable CORS check mitigations in the new CORS implementation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_corsmitigationlist_corsmitigationlistdesc", + "displayName": "Enable CORS check mitigations in the new CORS implementation (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting", + "displayName": "Control use of the File Handling API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_defaultfilehandlingguardsetting", + "displayName": "Control use of the File Handling API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_defaultfilehandlingguardsetting_2", + "displayName": "Do not allow any web app to access file types via the File Handling API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultfilehandlingguardsetting_defaultfilehandlingguardsetting_3", + "displayName": "Allow web apps to ask the user to grant access to file types via the File Handling API", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting", + "displayName": "Default key generation setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting", + "displayName": "Default key generation setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting_1", + "displayName": "Allow all sites to use key generation", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultkeygensetting_defaultkeygensetting_2", + "displayName": "Do not allow any site to use key generation", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting", + "displayName": "Default Flash setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting", + "displayName": "Default Flash setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_1", + "displayName": "Allow all sites to automatically run the Flash plugin", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_2", + "displayName": "Block the Flash plugin", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultpluginssetting_defaultpluginssetting_3", + "displayName": "Click to play", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl", + "displayName": "Default search provider instant URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturl_defaultsearchproviderinstanturl", + "displayName": "Default search provider instant URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams", + "displayName": "Parameters for instant URL which uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchproviderinstanturlpostparams_defaultsearchproviderinstanturlpostparams", + "displayName": "Parameters for instant URL which uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey", + "displayName": "Parameter controlling search term placement for the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_defaultsearchprovidersearchtermsreplacementkey_defaultsearchprovidersearchtermsreplacementkey", + "displayName": "Parameter controlling search term placement for the default search provider (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled", + "displayName": "Enable DHE cipher suites in TLS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dheenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins", + "displayName": "Specify a list of disabled plugins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledplugins_disabledpluginsdesc", + "displayName": "List of disabled plugins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions", + "displayName": "Specify a list of plugins that the user can enable or disable (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disabledpluginsexceptions_disabledpluginsexceptionsdesc", + "displayName": "List of exceptions to the list of disabled plugins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder", + "displayName": "Specify whether the plugin finder should be disabled (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablepluginfinder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy", + "displayName": "Disable SPDY protocol (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablespdy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting", + "displayName": "Disable TLS False Start (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_disablesslrecordsplitting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_dnsprefetchingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors", + "displayName": "Allow certificates issued by local trust anchors without subjectAlternativeName extension (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablecommonnamefallbackforlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting", + "displayName": "Enable deprecated privet printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedprivetprinting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin", + "displayName": "Enable the old web-based signin flow (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebbasedsignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures", + "displayName": "Enable deprecated web platform features for a limited time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledeprecatedwebplatformfeatures_enabledeprecatedwebplatformfeaturesdesc", + "displayName": "Enable deprecated web platform features for a limited time (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins", + "displayName": "Specify a list of enabled plugins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enabledplugins_enabledpluginsdesc", + "displayName": "List of enabled plugins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesha1forlocalanchors", + "displayName": "Allow SHA-1 signed certificates issued by local trust anchors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesha1forlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesha1forlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure", + "displayName": "Enable trust in Symantec Corporation's Legacy PKI Infrastructure (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enablesymanteclegacyinfrastructure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename", + "displayName": "Enterprise web store name (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstorename_enterprisewebstorename", + "displayName": "Enterprise web store name (deprecated) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl", + "displayName": "Enterprise web store URL (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_enterprisewebstoreurl_enterprisewebstoreurl", + "displayName": "Enterprise web store URL (deprecated) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_extensionallowinsecureupdates", + "displayName": "Allow insecure algorithms in integrity checks on extension updates and installs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_extensionallowinsecureupdates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_extensionallowinsecureupdates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls", + "displayName": "Allow the File Handling API on these web apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingallowedforurls_filehandlingallowedforurlsdesc", + "displayName": "Allow the File Handling API on these web apps (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls", + "displayName": "Block the File Handling API on these web apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_filehandlingblockedforurls_filehandlingblockedforurlsdesc", + "displayName": "Block the File Handling API on these web apps (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcelegacydefaultreferrerpolicy", + "displayName": "Use a default referrer policy of no-referrer-when-downgrade. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcelegacydefaultreferrerpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcelegacydefaultreferrerpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess", + "displayName": "Force networking code to run in the browser process (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_forcenetworkinprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir", + "displayName": "Set Google Chrome Frame user data directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_gcfuserdatadir_gcfuserdatadir", + "displayName": "Set user data directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo", + "displayName": "Prevent app promotions from appearing on the new tab page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_hidewebstorepromo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled", + "displayName": "Enable HTTP/0.9 support on non-default ports (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_http09onnondefaultportsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled", + "displayName": "Enable Instant (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_instantenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls", + "displayName": "Allow key generation on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenallowedforurls_keygenallowedforurlsdesc", + "displayName": "Allow key generation on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls", + "displayName": "Block key generation on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_keygenblockedforurls_keygenblockedforurlsdesc", + "displayName": "Block key generation on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled", + "displayName": "Default legacy SameSite cookie behavior setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled", + "displayName": "Default legacy SameSite cookie behavior setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_1", + "displayName": "Revert to legacy SameSite behavior for cookies on all sites", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_2", + "displayName": "Use SameSite-by-default behavior for cookies on all sites", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled", + "displayName": "Enable chrome://devices (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_localdiscoveryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken", + "displayName": "The enrollment token of cloud policy on desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_machinelevelusercloudpolicyenrollmenttoken_machinelevelusercloudpolicyenrollmenttoken", + "displayName": "The enrollment token of cloud policy on desktop (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize", + "displayName": "Set media disk cache size in bytes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_mediacachesize_mediacachesize", + "displayName": "Set media disk cache size: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pachttpsurlstrippingenabled", + "displayName": "Enable PAC URL stripping (for https://) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pachttpsurlstrippingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pachttpsurlstrippingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords", + "displayName": "Allow users to show passwords in Password Manager (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_passwordmanagerallowshowpasswords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls", + "displayName": "Allow the Flash plugin on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsallowedforurls_pluginsallowedforurlsdesc", + "displayName": "Allow the Flash plugin on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls", + "displayName": "Block the Flash plugin on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_pluginsblockedforurls_pluginsblockedforurlsdesc", + "displayName": "Block the Flash plugin on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_rc4enabled", + "displayName": "Enable RC4 cipher suites in TLS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_rc4enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_rc4enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal", + "displayName": "Enable firewall traversal from remote access client (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccessclientfirewalltraversal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies", + "displayName": "Policy overrides for Debug builds of the remote access host (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostdebugoverridepolicies_remoteaccesshostdebugoverridepolicies", + "displayName": "Policy overrides for Debug builds of the remote access host (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostrequiretwofactor", + "displayName": "Enable two-factor authentication for remote access hosts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostrequiretwofactor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshostrequiretwofactor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix", + "displayName": "Configure the TalkGadget prefix for remote access hosts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_remoteaccesshosttalkgadgetprefix_remoteaccesshosttalkgadgetprefix", + "displayName": "Configure the TalkGadget prefix for remote access hosts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist", + "displayName": "Always render the following URL patterns in Google Chrome Frame (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinchromeframelist_renderinchromeframelistdesc", + "displayName": "Always render the following URL patterns in Google Chrome Frame (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist", + "displayName": "Always render the following URL patterns in the host browser (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_renderinhostlist_renderinhostlistdesc", + "displayName": "Always render the following URL patterns in the host browser (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode", + "displayName": "Extend Flash content setting to all content (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_runallflashinallowmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed", + "displayName": "Allow users to opt in to Safe Browsing extended reporting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_safebrowsingextendedreportingoptinallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck", + "displayName": "Skip the meta tag check in Google Chrome Frame (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_skipmetadatacheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin", + "displayName": "Minimum TLS version to fallback to (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin", + "displayName": "Minimum TLS version to fallback to (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin_tls1.1", + "displayName": "TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionfallbackmin_sslversionfallbackmin_tls1.2", + "displayName": "TLS 1.2", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax", + "displayName": "Maximum SSL version enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax", + "displayName": "Maximum SSL version enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax_tls1.2", + "displayName": "TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_sslversionmax_sslversionmax_tls1.3", + "displayName": "TLS 1.3", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled", + "displayName": "Enable creation of supervised users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_supervisedusercreationenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt", + "displayName": "Suppress the Google Chrome Frame turndown prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_suppresschromeframeturndownprompt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled", + "displayName": "Allow background tabs freeze (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabfreezingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed", + "displayName": "Allow sites to simultaneously navigate and open pop-ups (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tabunderallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled", + "displayName": "Enable a TLS 1.3 security feature for local trust anchors. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tls13hardeningforlocalanchorsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled", + "displayName": "Enable 3DES cipher suites in TLS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_tripledesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols", + "displayName": "Use Legacy Form Controls until M84. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_uselegacyformcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled", + "displayName": "Control the User-Agent Client Hints feature. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_useragentclienthintsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled", + "displayName": "Re-enable Web Components v0 API until M84. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webcomponentsv0enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies", + "displayName": "Allow WebDriver to Override Incompatible Policies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_webdriveroverridesincompatiblepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled", + "displayName": "Enable showing the welcome page on the first browser launch following OS upgrade (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~removedpolicies_welcomepageonosupgradeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionchangepasswordurl_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture salted hashes of passwords. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionloginurls_passwordprotectionloginurlsdesc", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture salted hashes of passwords. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger", + "displayName": "Password protection warning trigger (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger", + "displayName": "Password protection warning trigger (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_0", + "displayName": "Password protection warning is off", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_1", + "displayName": "Password protection warning is triggered by password reuse", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_2", + "displayName": "Password protection warning is triggered by password reuse on phishing page", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains", + "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingallowlistdomains_safebrowsingallowlistdomainsdesc", + "displayName": "Configure the list of domains on which Safe Browsing will not trigger warnings. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingextendedreportingenabled", + "displayName": "Enable Safe Browsing Extended Reporting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingextendedreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingextendedreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel", + "displayName": "Safe Browsing Protection Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel", + "displayName": "Safe Browsing Protection Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel_0", + "displayName": "Safe Browsing is never active.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel_1", + "displayName": "Safe Browsing is active in the standard mode.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~safebrowsing_safebrowsingprotectionlevel_safebrowsingprotectionlevel_2", + "displayName": "Safe Browsing is active in the enhanced mode. This mode provides better security, but requires sharing more browsing information with Google.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins", + "displayName": "Allow Same Origin Tab capture by these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_sameorigintabcaptureallowedbyorigins_sameorigintabcaptureallowedbyoriginsdesc", + "displayName": "Allow Same Origin Tab capture by these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed", + "displayName": "Allow or deny screen capture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins", + "displayName": "Allow Desktop, Window, and Tab capture by these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_screencaptureallowedbyorigins_screencaptureallowedbyoriginsdesc", + "displayName": "Allow Desktop, Window, and Tab capture by these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins", + "displayName": "Allow Tab capture by these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_tabcaptureallowedbyorigins_tabcaptureallowedbyoriginsdesc", + "displayName": "Allow Tab capture by these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins", + "displayName": "Allow Window and Tab capture by these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~screencapture_windowcaptureallowedbyorigins_windowcaptureallowedbyoriginsdesc", + "displayName": "Allow Window and Tab capture by these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepageisnewtabpage", + "displayName": "Use New Tab Page as homepage (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepageisnewtabpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepageisnewtabpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepagelocation", + "displayName": "Configure the home page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepagelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepagelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_homepagelocation_homepagelocation", + "displayName": "Home page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_newtabpagelocation", + "displayName": "Configure the New Tab page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_newtabpagelocation_newtabpagelocation", + "displayName": "New Tab page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup", + "displayName": "Action on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup", + "displayName": "Action on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_5", + "displayName": "Open New Tab Page", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartup_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls", + "displayName": "URLs to open on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_restoreonstartupurls_restoreonstartupurlsdesc", + "displayName": "URLs to open on startup (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_showhomebutton", + "displayName": "Show Home button on toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_showhomebutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_chromeintunev1~policy~googlechrome~startup_showhomebutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_credentialsui_disablepasswordreveal", + "displayName": "Do not display the password reveal button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_credentialsui_disablepasswordreveal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_credentialsui_disablepasswordreveal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_desktop_preventuserredirectionofprofilefolders", + "displayName": "Prohibit User from manually redirecting Profile Folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_desktop_preventuserredirectionofprofilefolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_desktop_preventuserredirectionofprofilefolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_display_enableperprocessdpi", + "displayName": "Enable Per Process Dpi (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_display_enableperprocessdpi_0", + "displayName": "Disabled", + "description": "Disable." + }, + { + "id": "user_vendor_msft_policy_config_display_enableperprocessdpi_1", + "displayName": "Enabled", + "description": "Enable." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_education_allowgraphingcalculator", + "displayName": "Allow Graphing Calculator (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_education_allowgraphingcalculator_0", + "displayName": "Block", + "description": "Disabled." + }, + { + "id": "user_vendor_msft_policy_config_education_allowgraphingcalculator_1", + "displayName": "Allow", + "description": "Enabled." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_education_defaultprintername", + "displayName": "Default Printer Name (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_education_preventaddingnewprinters", + "displayName": "Prevent Adding New Printers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_education_preventaddingnewprinters_0", + "displayName": "Disabled", + "description": "Allow user installation." + }, + { + "id": "user_vendor_msft_policy_config_education_preventaddingnewprinters_1", + "displayName": "Enabled", + "description": "Prevent user installation." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_education_printernames", + "displayName": "Printer Names (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_enterprisecloudprint_cloudprinterdiscoveryendpoint", + "displayName": "Cloud Printer Discovery End Point (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_enterprisecloudprint_cloudprintoauthauthority", + "displayName": "Cloud Print OAuth Authority (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_enterprisecloudprint_cloudprintoauthclientid", + "displayName": "Cloud Print OAuth Client Id (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_enterprisecloudprint_cloudprintresourceid", + "displayName": "Cloud Print Resource Id (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_enterprisecloudprint_mopriadiscoveryresourceid", + "displayName": "Mopria Discovery Resource Id (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_customizableerrormessages_l_listoferrormessagestocustomize", + "displayName": "List of error messages to customize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_customizableerrormessages_l_listoferrormessagestocustomize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_customizableerrormessages_l_listoferrormessagestocustomize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize87", + "displayName": "List of error messages to customize (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize87_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize87_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_datarecovery_l_donotshowdataextractionoptionswhenopeningcorruptworkbooks", + "displayName": "Do not show data extraction options when opening corrupt workbooks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_datarecovery_l_donotshowdataextractionoptionswhenopeningcorruptworkbooks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_datarecovery_l_donotshowdataextractionoptionswhenopeningcorruptworkbooks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems165", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems165_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems165_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems165_l_enteracommandbaridtodisable", + "displayName": "Enter a command bar ID to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys166", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys166_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys166_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys166_l_enterakeyandmodifiertodisable", + "displayName": "Enter a key and modifier to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacros", + "displayName": "Developer tab | Code | Macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacros_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacros_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacrosecurity", + "displayName": "Developer tab | Code | Macro Security (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacrosecurity_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodemacrosecurity_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercoderecordmacro", + "displayName": "Developer tab | Code | Record Macro (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercoderecordmacro_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercoderecordmacro_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodevisualbasic", + "displayName": "Developer tab | Code | Visual Basic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodevisualbasic_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_developercodevisualbasic_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_insertlinkshyperlink", + "displayName": "Insert tab | Links | Hyperlink (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_insertlinkshyperlink_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_insertlinkshyperlink_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizationmailrecipient", + "displayName": "File tab | Share | Email (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizationmailrecipient_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizationmailrecipient_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizedocumentlocation", + "displayName": "File tab | Options | Customize Ribbon | All Commands | Document Location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizedocumentlocation_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonexceloptionscustomizedocumentlocation_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonxceloptionscustomizationcombinedpreviewwebpagepreview", + "displayName": "File tab | Options | Customize Ribbon | All Commands | Web Page Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonxceloptionscustomizationcombinedpreviewwebpagepreview_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_officebuttonxceloptionscustomizationcombinedpreviewwebpagepreview_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsharing", + "displayName": "Review tab | Changes | Protect and Share Workbook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsharing_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsharing_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsheet", + "displayName": "Review tab | Changes | Protect Sheet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsheet_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectsheet_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectworkbook", + "displayName": "Review tab | Changes | Protect Workbook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectworkbook_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_reviewchangesprotectworkbook_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_viewmacrosmacros", + "displayName": "View tab | Macros | Macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_viewmacrosmacros_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_viewmacrosmacros_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros", + "displayName": "Alt+F8 (Developer | Code | Macros) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altlvdevelopercodevisualbasic", + "displayName": "Alt+F11 (Developer | Code | Visual Basic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altlvdevelopercodevisualbasic_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altlvdevelopercodevisualbasic_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlfhomeeditingfind", + "displayName": "Ctrl+F (Home | Editing | Find & Select | Find) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlfhomeeditingfind_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlfhomeeditingfind_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinsertlinkshyperlinks", + "displayName": "Ctrl+K (Insert | Links | Hyperlink) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinsertlinkshyperlinks_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinsertlinkshyperlinks_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_alertbeforeoverwritingcells", + "displayName": "Alert before overwriting cells (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_alertbeforeoverwritingcells_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_alertbeforeoverwritingcells_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_alternatestartupfilelocation", + "displayName": "Alternate startup file location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_alternatestartupfilelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_alternatestartupfilelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_alternatestartupfilelocation_l_alternatestartupfilelocation86", + "displayName": "Alternate startup file location (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_asktoupdateautomaticlinks", + "displayName": "Ask to update automatic links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_asktoupdateautomaticlinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_asktoupdateautomaticlinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_automaticallyflashfill", + "displayName": "Automatically Flash Fill (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_automaticallyflashfill_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_automaticallyflashfill_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_automaticallyinsertadecimalpoint", + "displayName": "Automatically insert a decimal point (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_automaticallyinsertadecimalpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_automaticallyinsertadecimalpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_chartreftrackingenabled", + "displayName": "Allow formatting and labels to track data points (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_chartreftrackingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_chartreftrackingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_comments", + "displayName": "Comments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_comments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_comments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_comments_l_comments85", + "displayName": "Comments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_comments_l_comments85_0", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_comments_l_comments85_1", + "displayName": "Comment indicator only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_comments_l_comments85_2", + "displayName": "Comment & indicator", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cursormovement", + "displayName": "Cursor movement (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cursormovement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cursormovement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cursormovement_l_cursormovement82", + "displayName": "Cursor movement (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cursormovement_l_cursormovement82_0", + "displayName": "Logical", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cursormovement_l_cursormovement82_1", + "displayName": "Visual", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cutandcopyobjectswithcells", + "displayName": "Cut and copy objects with cells (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cutandcopyobjectswithcells_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_cutandcopyobjectswithcells_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_defaultdirection", + "displayName": "Default sheet direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_defaultdirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_defaultdirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_defaultdirection_l_defaultdirection81", + "displayName": "Default sheet direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_defaultdirection_l_defaultdirection81_1", + "displayName": "Right-to-Left", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_defaultdirection_l_defaultdirection81_0", + "displayName": "Left-to-Right", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_editdirectlyincell", + "displayName": "Edit directly in cell (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_editdirectlyincell_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_editdirectlyincell_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enableautocompleteforcellvalues", + "displayName": "Enable AutoComplete for cell values (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enableautocompleteforcellvalues_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enableautocompleteforcellvalues_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enableautomaticpercententry", + "displayName": "Enable automatic percent entry (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enableautomaticpercententry_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enableautomaticpercententry_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enablefillhandleandcelldraganddrop", + "displayName": "Enable fill handle and cell drag-and-drop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enablefillhandleandcelldraganddrop_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_enablefillhandleandcelldraganddrop_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_extenddatarangeformatsandformulas", + "displayName": "Extend data range formats and formulas (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_extenddatarangeformatsandformulas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_extenddatarangeformatsandformulas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_functiontooltips", + "displayName": "Function tooltips (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_functiontooltips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_functiontooltips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_ignoreotherapplications", + "displayName": "Ignore other applications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_ignoreotherapplications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_ignoreotherapplications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_microsoftexcelmenuorhelpkey", + "displayName": "Microsoft Excel menu or Help key (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_microsoftexcelmenuorhelpkey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_microsoftexcelmenuorhelpkey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_microsoftexcelmenuorhelpkey_l_helpkey", + "displayName": "Enter ASCII value (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenter", + "displayName": "Move selection after Enter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenterdirection", + "displayName": "Move selection after Enter direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenterdirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenterdirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84", + "displayName": "Move selection after Enter direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84_0", + "displayName": "Down", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84_1", + "displayName": "Right", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84_2", + "displayName": "Up", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_moveselectionafterenterdirection_l_moveselectionafterenterdirection84_3", + "displayName": "Left", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_recentlyusedfilelist", + "displayName": "Number of workbooks in the Recent Workbooks list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_recentlyusedfilelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_recentlyusedfilelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_recentlyusedfilelist_l_entriesonrecentlyusedfilelist", + "displayName": "Entries on recently used file list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_setnumberofplacesintherecentplaceslist", + "displayName": "Number of folders in the Recent Folders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_setnumberofplacesintherecentplaceslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_setnumberofplacesintherecentplaceslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_setnumberofplacesintherecentplaceslist_l_setnumberofplacesintherecentplaceslistspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showalertifnotdefault", + "displayName": "Show Alert if Excel is not the default for its associated file types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showalertifnotdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showalertifnotdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showcontrolcharacters", + "displayName": "Show control characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showcontrolcharacters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showcontrolcharacters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showformulabarinfullview", + "displayName": "Show Formula bar in Full View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showformulabarinfullview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showformulabarinfullview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showformulabarinnormalview", + "displayName": "Show Formula bar in Normal View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showformulabarinnormalview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showformulabarinnormalview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showinsertoptionsbuttons", + "displayName": "Show Insert Options buttons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showinsertoptionsbuttons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showinsertoptionsbuttons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_shownames", + "displayName": "Show names (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_shownames_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_shownames_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showpasteoptionsbuttonwhencontentispasted", + "displayName": "Show Paste Options button when content is pasted (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showpasteoptionsbuttonwhencontentispasted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showpasteoptionsbuttonwhencontentispasted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showvalues", + "displayName": "Show values (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showvalues_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_showvalues_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_transitionnavigationkeys", + "displayName": "Transition navigation keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_transitionnavigationkeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_transitionnavigationkeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_zoomonrollwithintellimouse", + "displayName": "Zoom on roll with IntelliMouse (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_zoomonrollwithintellimouse_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced_l_zoomonrollwithintellimouse_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced~l_weboptions~l_general_l_loadpicturesfromwebpagesnotcreatedinexcel", + "displayName": "Load pictures from Web pages not created in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced~l_weboptions~l_general_l_loadpicturesfromwebpagesnotcreatedinexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_advanced~l_weboptions~l_general_l_loadpicturesfromwebpagesnotcreatedinexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_formulas_l_r1c1referencestyle", + "displayName": "R1C1 reference style (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_formulas_l_r1c1referencestyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_formulas_l_r1c1referencestyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionscustomizeribbon_l_displaydevelopertab", + "displayName": "Display Developer tab in the Ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionscustomizeribbon_l_displaydevelopertab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionscustomizeribbon_l_displaydevelopertab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_allowquickanalysis", + "displayName": "Show Quick Analysis options on selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_allowquickanalysis_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_allowquickanalysis_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_allowselectionfloaties", + "displayName": "Show Mini Toolbar on selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_allowselectionfloaties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_allowselectionfloaties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_defaultsheets", + "displayName": "Default Sheets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_defaultsheets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_defaultsheets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_defaultsheets_l_sheetsinnewworkbook", + "displayName": "Sheets in new workbook (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_disablelivepreview", + "displayName": "Enable Live Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_disablelivepreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_disablelivepreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_font", + "displayName": "Font (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_font_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_font_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_font_l_namesize", + "displayName": "Name, Size (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_windowsintaskbar", + "displayName": "Show all windows in the Taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_windowsintaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_optionsgeneral_l_windowsintaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_proofing~l_autocorrectoptions_l_includenewrowsandcolumnsinlist", + "displayName": "Include new rows and columns in table (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_proofing~l_autocorrectoptions_l_includenewrowsandcolumnsinlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_proofing~l_autocorrectoptions_l_includenewrowsandcolumnsinlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_proofing~l_autocorrectoptions_l_internetandnetworkpathsashyperlinks", + "displayName": "Internet and network paths as hyperlinks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_proofing~l_autocorrectoptions_l_internetandnetworkpathsashyperlinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_proofing~l_autocorrectoptions_l_internetandnetworkpathsashyperlinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecoverdelay", + "displayName": "AutoRecover delay (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecoverdelay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecoverdelay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecoverdelay_l_secondsofidletimebeforeautorecoverstarts", + "displayName": "Seconds of idle time before AutoRecover starts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecoversavelocation", + "displayName": "AutoRecover save location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecoversavelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecoversavelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecoversavelocation_l_autorecoversavelocation2", + "displayName": "AutoRecover save location (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecovertime", + "displayName": "AutoRecover time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecovertime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecovertime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_autorecovertime_l_saveautorecoverinfoevery", + "displayName": "Save AutoRecover info every (minutes): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_defaultfilelocation", + "displayName": "Default file location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_defaultfilelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_defaultfilelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_defaultfilelocation_l_defaultfilelocation0", + "displayName": "Default file location (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_disableautorepublish", + "displayName": "Disable AutoRepublish (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_disableautorepublish_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_disableautorepublish_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_donotshowautorepublishwarningalert", + "displayName": "Do not show AutoRepublish warning alert (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_donotshowautorepublishwarningalert_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_donotshowautorepublishwarningalert_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_keeplastautosavedversions", + "displayName": "Keep the last AutoSaved versions of files for the next session (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_keeplastautosavedversions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_keeplastautosavedversions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_promptforworkbookproperties", + "displayName": "Prompt for workbook properties (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_promptforworkbookproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_promptforworkbookproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveautorecoverinfo", + "displayName": "Save AutoRecover info (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveautorecoverinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveautorecoverinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas", + "displayName": "Default file format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1", + "displayName": "Save Excel files as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1_51", + "displayName": "Excel Workbook (*.xlsx)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1_52", + "displayName": "Excel Macro-Enabled Workbook (*.xlsm)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1_50", + "displayName": "Excel Binary Workbook (*.xlsb)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1_44", + "displayName": "Web Page (*.htm; *.html)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1_56", + "displayName": "Excel 97-2003 Workbook (*.xls)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1_39", + "displayName": "Excel 5.0/95 Workbook (*.xls)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_saveexcelfilesas_l_saveexcelfilesas1_60", + "displayName": "OpenDocument Spreadsheet (*.ods)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_turnofffileformatcompatiblitydialogforods", + "displayName": "Suppress file format compatibility dialog box for OpenDocument Spreadsheet format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_turnofffileformatcompatiblitydialogforods_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_save_l_turnofffileformatcompatiblitydialogforods_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_determinewhethertoforceencryptedexcel", + "displayName": "Scan encrypted macros in Excel Open XML workbooks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_determinewhethertoforceencryptedexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_determinewhethertoforceencryptedexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_determinewhethertoforceencryptedexcel_l_determinewhethertoforceencryptedexceldropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_determinewhethertoforceencryptedexcel_l_determinewhethertoforceencryptedexceldropid_0", + "displayName": "Scan encrypted macros (default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_determinewhethertoforceencryptedexcel_l_determinewhethertoforceencryptedexceldropid_1", + "displayName": "Scan if anti-virus software available", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_determinewhethertoforceencryptedexcel_l_determinewhethertoforceencryptedexceldropid_2", + "displayName": "Load macros without scanning", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_forcefileextenstionstomatch", + "displayName": "Force file extension to match file type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_forcefileextenstionstomatch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_forcefileextenstionstomatch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_forcefileextenstionstomatch_l_empty", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_forcefileextenstionstomatch_l_empty_0", + "displayName": "Allow different", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_forcefileextenstionstomatch_l_empty_1", + "displayName": "Allow different, but warn", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_forcefileextenstionstomatch_l_empty_2", + "displayName": "Always match file type", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_performfilevalidationonpivotcaches", + "displayName": "Perform file validation on pivot caches (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_performfilevalidationonpivotcaches_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_performfilevalidationonpivotcaches_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_performfilevalidationonpivotcaches_l_performfilevalidationonpivotcachesdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_performfilevalidationonpivotcaches_l_performfilevalidationonpivotcachesdropid_0", + "displayName": "No file validation", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_performfilevalidationonpivotcaches_l_performfilevalidationonpivotcachesdropid_1", + "displayName": "Web and email sources", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_performfilevalidationonpivotcaches_l_performfilevalidationonpivotcachesdropid_2", + "displayName": "Always perform validation", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_turnofffilevalidation", + "displayName": "Turn off file validation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_turnofffilevalidation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_turnofffilevalidation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_webcontentwarninglevel", + "displayName": "WEBSERVICE Function Notification Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_webcontentwarninglevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_webcontentwarninglevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_webcontentwarninglevel_l_webcontentwarninglevelvalue", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_webcontentwarninglevel_l_webcontentwarninglevelvalue_0", + "displayName": "Enable all WEBSERVICE functions (not recommended)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_webcontentwarninglevel_l_webcontentwarninglevelvalue_1", + "displayName": "Disable all with notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security_l_webcontentwarninglevel_l_webcontentwarninglevelvalue_2", + "displayName": "Disable all without notification", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_configurecngcipherchainingmode", + "displayName": "Configure CNG cipher chaining mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_configurecngcipherchainingmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_configurecngcipherchainingmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecbc", + "displayName": "Cipher Block Chaining (CBC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecfb", + "displayName": "Cipher Feedback (CFB)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngcipheralgorithm", + "displayName": "Set CNG cipher algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngcipheralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngcipheralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngcipheralgorithm_l_setcngcipheralgorithmid", + "displayName": "CNG cipher algorithm: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngcipherkeylength", + "displayName": "Set CNG cipher key length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngcipherkeylength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngcipherkeylength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngcipherkeylength_l_setcngcipherkeylengthspinid", + "displayName": "Cipher key length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngpasswordspincount", + "displayName": "Set CNG password spin count (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngpasswordspincount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngpasswordspincount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setcngpasswordspincount_l_setcngpasswordspincountspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setparametersforcngcontext", + "displayName": "Set parameters for CNG context (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setparametersforcngcontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setparametersforcngcontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_setparametersforcngcontext_l_setparametersforcngcontextid", + "displayName": "Parameters (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycnghashalgorithm", + "displayName": "Specify CNG hash algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycnghashalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycnghashalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha512", + "displayName": "SHA512", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm", + "displayName": "Specify CNG random number generator algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_l_specifycngrandomnumbergeneratoralgorithmid", + "displayName": "Random number generator: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycngsaltlength", + "displayName": "Specify CNG salt length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycngsaltlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycngsaltlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifycngsaltlength_l_specifycngsaltlengthspinid", + "displayName": "Number of bytes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifyencryptioncompatibility", + "displayName": "Specify encryption compatibility (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifyencryptioncompatibility_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifyencryptioncompatibility_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_0", + "displayName": "Use legacy format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_1", + "displayName": "Use next generation format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_2", + "displayName": "All files save with next generation format", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_usenewkeyonpasswordchange", + "displayName": "Use new key on password change (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_usenewkeyonpasswordchange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_cryptography_l_usenewkeyonpasswordchange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet", + "displayName": "Block macros from running in Office files from the Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disableallapplicationextensions", + "displayName": "Disable all application add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disableallapplicationextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disableallapplicationextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned", + "displayName": "Require that application add-ins are signed by Trusted Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments", + "displayName": "Set maximum number of trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_l_setmaximumnumberoftrusteddocumentsspinid", + "displayName": "Maximum number: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve", + "displayName": "Set maximum number of trust records to preserve (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_l_setmaximumnumberoftrustrecordstopreservespinid", + "displayName": "Maximum to preserve: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_storemacroinpersonalmacroworkbookbydefault", + "displayName": "Store macro in Personal Macro Workbook by default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_storemacroinpersonalmacroworkbookbydefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_storemacroinpersonalmacroworkbookbydefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject", + "displayName": "Trust access to Visual Basic Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_turnofftrusteddocuments", + "displayName": "Turn off trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_turnofftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_turnofftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork", + "displayName": "Turn off Trusted Documents on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_vbawarningspolicy", + "displayName": "VBA Macro Notification Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_vbawarningspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_vbawarningspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty4", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty4_2", + "displayName": "Disable all with notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty4_3", + "displayName": "Disable all except digitally signed macros", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty4_4", + "displayName": "Disable all without notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty4_1", + "displayName": "Enable all macros (not recommended)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_dbaseiiiandivfiles", + "displayName": "dBase III / IV files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_dbaseiiiandivfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_dbaseiiiandivfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_dbaseiiiandivfiles_l_dbaseiiiandivfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_dbaseiiiandivfiles_l_dbaseiiiandivfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_dbaseiiiandivfiles_l_dbaseiiiandivfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_difandsylkfiles", + "displayName": "Dif and Sylk files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_difandsylkfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_difandsylkfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_difandsylkfiles_l_difandsylkfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_difandsylkfiles_l_difandsylkfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_difandsylkfiles_l_difandsylkfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_difandsylkfiles_l_difandsylkfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlateraddinfiles", + "displayName": "Excel 2007 and later add-in files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlateraddinfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlateraddinfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlateraddinfiles_l_excel2007andlateraddinfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlateraddinfiles_l_excel2007andlateraddinfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlateraddinfiles_l_excel2007andlateraddinfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlateraddinfiles_l_excel2007andlateraddinfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks", + "displayName": "Excel 2007 and later binary workbooks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterbinaryworkbooks_l_excel2007andlaterbinaryworkbooksdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates", + "displayName": "Excel 2007 and later macro-enabled workbooks and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlatermacroenabledworkbooksandtemplates_l_excel2007andlatermacroenabledworkbooksandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates", + "displayName": "Excel 2007 and later workbooks and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2007andlaterworkbooksandtemplates_l_excel2007andlaterworkbooksandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles", + "displayName": "Excel 2 macrosheets and add-in files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2macrosheetsandaddinfiles_l_excel2macrosheetsandaddinfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets", + "displayName": "Excel 2 worksheets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel2worksheets_l_excel2worksheetsdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles", + "displayName": "Excel 3 macrosheets and add-in files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3macrosheetsandaddinfiles_l_excel3macrosheetsandaddinfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets", + "displayName": "Excel 3 worksheets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel3worksheets_l_excel3worksheetsdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles", + "displayName": "Excel 4 macrosheets and add-in files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4macrosheetsandaddinfiles_l_excel4macrosheetsandaddinfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks", + "displayName": "Excel 4 workbooks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4workbooks_l_excel4workbooksdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets", + "displayName": "Excel 4 worksheets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel4worksheets_l_excel4worksheetsdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates", + "displayName": "Excel 95-97 workbooks and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_l_excel9597workbooksandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_l_excel9597workbooksandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_l_excel9597workbooksandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_l_excel9597workbooksandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_l_excel9597workbooksandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel9597workbooksandtemplates_l_excel9597workbooksandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks", + "displayName": "Excel 95 workbooks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_l_excel95workbooksdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_l_excel95workbooksdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_l_excel95workbooksdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_l_excel95workbooksdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_l_excel95workbooksdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_l_excel95workbooksdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel95workbooks_l_excel95workbooksdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles", + "displayName": "Excel 97-2003 add-in files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles_l_excel972003addinfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles_l_excel972003addinfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles_l_excel972003addinfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003addinfiles_l_excel972003addinfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates", + "displayName": "Excel 97-2003 workbooks and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_l_excel972003workbooksandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_l_excel972003workbooksandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_l_excel972003workbooksandtemplatesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_l_excel972003workbooksandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_l_excel972003workbooksandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_l_excel972003workbooksandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_excel972003workbooksandtemplates_l_excel972003workbooksandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_exceladdinfiles", + "displayName": "Excel add-in files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_exceladdinfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_exceladdinfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_exceladdinfiles_l_exceladdinfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_exceladdinfiles_l_exceladdinfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_exceladdinfiles_l_exceladdinfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel", + "displayName": "Legacy converters for Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_l_legacyconvertersforexceldropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_l_legacyconvertersforexceldropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_l_legacyconvertersforexceldropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_l_legacyconvertersforexceldropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_l_legacyconvertersforexceldropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforexcel_l_legacyconvertersforexceldropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel", + "displayName": "Microsoft Office Open XML converters for Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_l_microsoftofficeopenxmlconvertersforexceldropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_l_microsoftofficeopenxmlconvertersforexceldropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_l_microsoftofficeopenxmlconvertersforexceldropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_l_microsoftofficeopenxmlconvertersforexceldropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_l_microsoftofficeopenxmlconvertersforexceldropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_l_microsoftofficeopenxmlconvertersforexceldropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforexcel_l_microsoftofficeopenxmlconvertersforexceldropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles", + "displayName": "Microsoft Office query files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficequeryfiles_l_microsoftofficequeryfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_officedataconnectionfiles", + "displayName": "Microsoft Office data connection files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_officedataconnectionfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_officedataconnectionfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_officedataconnectionfiles_l_officedataconnectionfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_officedataconnectionfiles_l_officedataconnectionfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_officedataconnectionfiles_l_officedataconnectionfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_offlinecubefiles", + "displayName": "Offline cube files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_offlinecubefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_offlinecubefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_offlinecubefiles_l_offlinecubefilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_offlinecubefiles_l_offlinecubefilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_offlinecubefiles_l_offlinecubefilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles", + "displayName": "OpenDocument Spreadsheet files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_l_opendocumentspreadsheetfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_l_opendocumentspreadsheetfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_l_opendocumentspreadsheetfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_l_opendocumentspreadsheetfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_l_opendocumentspreadsheetfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_l_opendocumentspreadsheetfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentspreadsheetfiles_l_opendocumentspreadsheetfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_otherdatasourcefiles", + "displayName": "Other data source files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_otherdatasourcefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_otherdatasourcefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_otherdatasourcefiles_l_otherdatasourcefilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_otherdatasourcefiles_l_otherdatasourcefilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_otherdatasourcefiles_l_otherdatasourcefilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior", + "displayName": "Set default file block behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_0", + "displayName": "Blocked files are not opened", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_1", + "displayName": "Blocked files open in Protected View and can not be edited", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_2", + "displayName": "Blocked files open in Protected View and can be edited", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles", + "displayName": "Text files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles_l_textfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles_l_textfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles_l_textfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_textfiles_l_textfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets", + "displayName": "Web pages and Excel 2003 XML spreadsheets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_l_webpagesandexcel2003xmlspreadsheetsdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_l_webpagesandexcel2003xmlspreadsheetsdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_l_webpagesandexcel2003xmlspreadsheetsdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_l_webpagesandexcel2003xmlspreadsheetsdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_l_webpagesandexcel2003xmlspreadsheetsdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_l_webpagesandexcel2003xmlspreadsheetsdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_webpagesandexcel2003xmlspreadsheets_l_webpagesandexcel2003xmlspreadsheetsdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_xmlfiles", + "displayName": "XML files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_xmlfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_xmlfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_xmlfiles_l_xmlfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_xmlfiles_l_xmlfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_xmlfiles_l_xmlfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_fileblocksettings_l_xmlfiles_l_xmlfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview", + "displayName": "Do not open files from the Internet zone in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview", + "displayName": "Do not open files in unsafe locations in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview", + "displayName": "Open files on local Intranet UNC in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails", + "displayName": "Set document behavior if file validation fails (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid_0", + "displayName": "Block files", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid_1", + "displayName": "Open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3", + "displayName": "Checked: Allow edit. Unchecked: Do not allow edit. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook", + "displayName": "Turn off Protected View for attachments opened from Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork", + "displayName": "Allow Trusted Locations on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc", + "displayName": "Disable all trusted locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01", + "displayName": "Trusted Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_datecolon", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_descriptioncolon", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_pathcolon", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02", + "displayName": "Trusted Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders8", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders8_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders8_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_datecolon6", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_descriptioncolon7", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_pathcolon5", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03", + "displayName": "Trusted Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders12", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders12_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders12_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_datecolon10", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_descriptioncolon11", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_pathcolon9", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04", + "displayName": "Trusted Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders16", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders16_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders16_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_datecolon14", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_descriptioncolon15", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_pathcolon13", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05", + "displayName": "Trusted Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders20", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders20_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders20_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_datecolon18", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_descriptioncolon19", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_pathcolon17", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06", + "displayName": "Trusted Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders24", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders24_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders24_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_datecolon22", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_descriptioncolon23", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_pathcolon21", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07", + "displayName": "Trusted Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders28", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders28_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders28_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_datecolon26", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_descriptioncolon27", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_pathcolon25", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08", + "displayName": "Trusted Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders32", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders32_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders32_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_datecolon30", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_descriptioncolon31", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_pathcolon29", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09", + "displayName": "Trusted Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders36", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders36_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders36_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_datecolon34", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_descriptioncolon35", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_pathcolon33", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10", + "displayName": "Trusted Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders40", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders40_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders40_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_datecolon38", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_descriptioncolon39", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_pathcolon37", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11", + "displayName": "Trusted Location #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders44", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders44_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders44_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_datecolon42", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_descriptioncolon43", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_pathcolon41", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12", + "displayName": "Trusted Location #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders48", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders48_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders48_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_datecolon46", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_descriptioncolon47", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_pathcolon45", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13", + "displayName": "Trusted Location #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders52", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders52_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders52_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_datecolon50", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_descriptioncolon51", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_pathcolon49", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14", + "displayName": "Trusted Location #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders56", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders56_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders56_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_datecolon54", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_descriptioncolon55", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_pathcolon53", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15", + "displayName": "Trusted Location #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders60", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders60_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders60_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_datecolon58", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_descriptioncolon59", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_pathcolon57", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16", + "displayName": "Trusted Location #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders64", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders64_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders64_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_datecolon62", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_descriptioncolon63", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_pathcolon61", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17", + "displayName": "Trusted Location #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders68", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders68_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders68_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_datecolon66", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_descriptioncolon67", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_pathcolon65", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18", + "displayName": "Trusted Location #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders72", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders72_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders72_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_datecolon70", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_descriptioncolon71", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_pathcolon69", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19", + "displayName": "Trusted Location #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders76", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders76_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders76_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_datecolon74", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_descriptioncolon75", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_pathcolon73", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20", + "displayName": "Trusted Location #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders80", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders80_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders80_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_datecolon78", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_descriptioncolon79", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_pathcolon77", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation", + "displayName": "Check for accessibility issues while editing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation", + "displayName": "Stop checking for alt text accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsusedasformatting", + "displayName": "Stop checking for blank table rows used as formatting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsusedasformatting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsusedasformatting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingformergedcells", + "displayName": "Stop checking for merged cells (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingformergedcells_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingformergedcells_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation", + "displayName": "Stop checking for table header accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful", + "displayName": "Stop checking to ensure hyperlink text is meaningful (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurenondefaultsheetnames", + "displayName": "Stop checking to ensure non-default sheet names (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurenondefaultsheetnames_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensurenondefaultsheetnames_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensureworkbooksallowprogrammaticaccess", + "displayName": "Stop checking to ensure workbooks allow programmatic access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensureworkbooksallowprogrammaticaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtoensureworkbooksallowprogrammaticaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_intelligentservices_l_insights", + "displayName": "Remove Ideas button from the Ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_intelligentservices_l_insights_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_intelligentservices_l_insights_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_defaultcustomtab", + "displayName": "Show custom templates tab by default in Excel on the Office Start screen and in File | New (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_defaultcustomtab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_defaultcustomtab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_disableofficestartexcel", + "displayName": "Disable the Office Start screen for Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_disableofficestartexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_disableofficestartexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_donotcachenetworkfileslocally", + "displayName": "Do not cache network files locally (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_donotcachenetworkfileslocally_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_donotcachenetworkfileslocally_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_enablefourdigityeardisplay", + "displayName": "Enable four-digit year display (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_enablefourdigityeardisplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_enablefourdigityeardisplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_graphgallerypath", + "displayName": "Graph gallery path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_graphgallerypath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_graphgallerypath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_graphgallerypath_l_graphgallerypath169", + "displayName": "Graph gallery path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting", + "displayName": "OLAP PivotTable User Defined Function (UDF) security setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_l_olappivottableuserdefinedfunctionudfsecuritysetting171", + "displayName": "OLAP PivotTable User Defined Function (UDF) security setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_l_olappivottableuserdefinedfunctionudfsecuritysetting171_1", + "displayName": "Allow ALL UDFs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_l_olappivottableuserdefinedfunctionudfsecuritysetting171_2", + "displayName": "Allow safe UDFs only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_olappivottableuserdefinedfunctionudfsecuritysetting_l_olappivottableuserdefinedfunctionudfsecuritysetting171_3", + "displayName": "Allow NO UDFs", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_personaltemplatespath", + "displayName": "Personal templates path for Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_personaltemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_personaltemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168_l_personaltemplatespath_l_personaltemplatespath", + "displayName": "Personal templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp", + "displayName": "Turn off file synchronization via SOAP over HTTP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v2~policy~l_microsoftofficeexcel~l_miscellaneous168~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_disableddeserverlaunch", + "displayName": "Don’t allow Dynamic Data Exchange (DDE) server launch in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_disableddeserverlaunch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_disableddeserverlaunch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_disableddeserverlookup", + "displayName": "Don’t allow Dynamic Data Exchange (DDE) server lookup in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_disableddeserverlookup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_disableddeserverlookup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_enableblockunsecurequeryfiles", + "displayName": "Always prevent untrusted Microsoft Query files from opening (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_enableblockunsecurequeryfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_externalcontent_l_enableblockunsecurequeryfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_enabledatabasefileprotectedview", + "displayName": "Always open untrusted database files in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_enabledatabasefileprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_enabledatabasefileprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_enableforeigntextfileprotectedview", + "displayName": "Always open untrusted text-based files in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_enableforeigntextfileprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v3~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter~l_protectedview_l_enableforeigntextfileprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v4~policy~l_microsoftofficeexcel~l_powerbi_l_disablefrompowerbidatasetorganizationname", + "displayName": "Disable displaying organization name in the buttons to create PivotTables from Power BI datasets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v4~policy~l_microsoftofficeexcel~l_powerbi_l_disablefrompowerbidatasetorganizationname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v4~policy~l_microsoftofficeexcel~l_powerbi_l_disablefrompowerbidatasetorganizationname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v5~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation", + "displayName": "Stop checking for table alt text accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v5~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v5~policy~l_microsoftofficeexcel~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v6~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_xl4killswitchpolicy", + "displayName": "Prevent Excel from running XLM macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v6~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_xl4killswitchpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v6~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_xl4killswitchpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v7~policy~l_microsoftofficeexcel~l_miscellaneous168_l_exceldisableofficescripts", + "displayName": "Disable Office Scripts in Excel for Windows Desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v7~policy~l_microsoftofficeexcel~l_miscellaneous168_l_exceldisableofficescripts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v7~policy~l_microsoftofficeexcel~l_miscellaneous168_l_exceldisableofficescripts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet", + "displayName": "Block Excel XLL Add-ins that come from an untrusted source (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_l_blockxllfrominternetenum", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_l_blockxllfrominternetenum_1", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_l_blockxllfrominternetenum_0", + "displayName": "Show Additional Warning", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_excel16v8~policy~l_microsoftofficeexcel~l_exceloptions~l_security~l_trustcenter_l_blockxllfrominternet_l_blockxllfrominternetenum_2", + "displayName": "Allow", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_experience_allowspotlightcollection", + "displayName": "Allow Spotlight Collection (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_experience_allowtailoredexperienceswithdiagnosticdata", + "displayName": "Allow Tailored Experiences With Diagnostic Data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_experience_allowtailoredexperienceswithdiagnosticdata_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_experience_allowtailoredexperienceswithdiagnosticdata_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_experience_allowthirdpartysuggestionsinwindowsspotlight", + "displayName": "Allow Third Party Suggestions In Windows Spotlight (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_experience_allowthirdpartysuggestionsinwindowsspotlight_0", + "displayName": "Block", + "description": "Third-party suggestions not allowed." + }, + { + "id": "user_vendor_msft_policy_config_experience_allowthirdpartysuggestionsinwindowsspotlight_1", + "displayName": "Allow", + "description": "Third-party suggestions allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlight", + "displayName": "Allow Windows Spotlight (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlight_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlight_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonactioncenter", + "displayName": "Allow Windows Spotlight On Action Center (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonactioncenter_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonactioncenter_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonsettings", + "displayName": "Allow Windows Spotlight On Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonsettings_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightonsettings_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightwindowswelcomeexperience", + "displayName": "Allow Windows Spotlight Windows Welcome Experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightwindowswelcomeexperience_0", + "displayName": "Block", + "description": "Not allowed." + }, + { + "id": "user_vendor_msft_policy_config_experience_allowwindowsspotlightwindowswelcomeexperience_1", + "displayName": "Allow", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_experience_configurewindowsspotlightonlockscreen", + "displayName": "Configure Windows Spotlight On Lock Screen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_experience_configurewindowsspotlightonlockscreen_0", + "displayName": "Windows spotlight disabled.", + "description": "Windows spotlight disabled." + }, + { + "id": "user_vendor_msft_policy_config_experience_configurewindowsspotlightonlockscreen_1", + "displayName": "Windows spotlight enabled.", + "description": "Windows spotlight enabled." + }, + { + "id": "user_vendor_msft_policy_config_experience_configurewindowsspotlightonlockscreen_2", + "displayName": "Windows spotlight is always enabled, the user cannot disable it", + "description": "Windows spotlight is always enabled, the user cannot disable it" + }, + { + "id": "user_vendor_msft_policy_config_experience_configurewindowsspotlightonlockscreen_3", + "displayName": "Windows spotlight is always enabled, the user cannot disable it. For special configurations only", + "description": "Windows spotlight is always enabled, the user cannot disable it. For special configurations only" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_experience_enableorganizationalmessages", + "displayName": "Enable delivery of organizational messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_experience_enableorganizationalmessages_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "user_vendor_msft_policy_config_experience_enableorganizationalmessages_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork", + "displayName": "Allow Option To Show Network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_0", + "displayName": "Not Allowed.", + "description": "Not Allowed." + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshownetwork_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc", + "displayName": "Allow Option To Show This PC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc_0", + "displayName": "Not Allowed.", + "description": "Not Allowed." + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_allowoptiontoshowthispc_1", + "displayName": "Allowed.", + "description": "Allowed." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations", + "displayName": "Set Allowed Folder Locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_0", + "displayName": "Access to all folder locations.", + "description": "Access to all folder locations." + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_13", + "displayName": "Documents, Pictures, Downloads", + "description": "Documents, Pictures, Downloads" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_15", + "displayName": "Desktop, Documents, Pictures, Downloads", + "description": "Desktop, Documents, Pictures, Downloads" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_31", + "displayName": "Desktop, Documents, Pictures, Downloads, Network", + "description": "Desktop, Documents, Pictures, Downloads, Network" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_47", + "displayName": "This PC, Desktop, Documents, Pictures, Downloads", + "description": "This PC, Desktop, Documents, Pictures, Downloads" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedfolderlocations_63", + "displayName": "This PC, Desktop, Documents, Pictures, Downloads, Network", + "description": "This PC, Desktop, Documents, Pictures, Downloads, Network" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations", + "displayName": "Set Allowed Storage Locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_0", + "displayName": "Access to all storage locations.", + "description": "Access to all storage locations." + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_1", + "displayName": "Removable Drives", + "description": "Removable Drives" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_2", + "displayName": "Sync roots", + "description": "Sync roots" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_3", + "displayName": "Removable Drives, Sync roots", + "description": "Removable Drives, Sync roots" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_4", + "displayName": "Local Drives", + "description": "Local Drives" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_5", + "displayName": "Removable Drives, Local Drives", + "description": "Removable Drives, Local Drives" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_6", + "displayName": "Sync Roots, Local Drives", + "description": "Sync Roots, Local Drives" + }, + { + "id": "user_vendor_msft_policy_config_fileexplorer_setallowedstoragelocations_7", + "displayName": "Removable Drives, Sync Roots, Local Drives", + "description": "Removable Drives, Sync Roots, Local Drives" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_addsearchprovider", + "displayName": "Add a specific list of search providers to the user's list of search providers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_addsearchprovider_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_addsearchprovider_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowactivexfiltering", + "displayName": "Turn on ActiveX Filtering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowactivexfiltering_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist", + "displayName": "Add-on List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_addonlist", + "displayName": "Add-on List (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_addonlist_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowaddonlist_addonlist_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete", + "displayName": "Turn on the auto-complete feature for user names and passwords on forms (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_chkbox_passwordask", + "displayName": "Prompt me to save passwords (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_chkbox_passwordask_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowautocomplete_chkbox_passwordask_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning", + "displayName": "Turn on certificate address mismatch warning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowcertificateaddressmismatchwarning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit", + "displayName": "Allow deleting browsing history on exit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowdeletingbrowsinghistoryonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode", + "displayName": "Turn on Enhanced Protected Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar", + "displayName": "Allow Microsoft services to provide enhanced suggestions as the user types in the Address bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenhancedsuggestionsinaddressbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu", + "displayName": "Let users turn on and use Enterprise Mode from the Tools menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodefromtoolsmenu_enterreportbackprompt", + "displayName": "Type the location (URL) of where to receive reports about the websites for which users turn on and use Enterprise Mode (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist", + "displayName": "Use the Enterprise Mode IE website list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowenterprisemodesitelist_entersitelistprompt", + "displayName": "Type the location (URL) of your Enterprise Mode IE website list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist", + "displayName": "Use Policy List of Internet Explorer 7 sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorer7policylist_compatview_sitelist", + "displayName": "List of sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode", + "displayName": "Turn on Internet Explorer Standards Mode for local intranet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetexplorerstandardsmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate", + "displayName": "Internet Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate", + "displayName": "Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowinternetzonetemplate_iz_partnameinternetzonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate", + "displayName": "Intranet Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate", + "displayName": "Intranet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowintranetzonetemplate_iz_partnameintranetzonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate", + "displayName": "Local Machine Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate", + "displayName": "Local Machine Zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlocalmachinezonetemplate_iz_partnamelocalmachinezonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate", + "displayName": "Locked-Down Internet Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate", + "displayName": "Locked-Down Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddowninternetzonetemplate_iz_partnameinternetzonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate", + "displayName": "Locked-Down Intranet Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate", + "displayName": "Locked-Down Intranet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownintranetzonetemplate_iz_partnameintranetzonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate", + "displayName": "Locked-Down Local Machine Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate", + "displayName": "Locked-Down Local Machine Zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownlocalmachinezonetemplate_iz_partnamelocalmachinezonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate", + "displayName": "Locked-Down Restricted Sites Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate", + "displayName": "Locked-Down Restricted Sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowlockeddownrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowonewordentry", + "displayName": "Go to an intranet site for a one-word entry in the Address bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowonewordentry_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowonewordentry_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode", + "displayName": "Allow \"Save Target As\" in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsavetargetasiniemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist", + "displayName": "Site to Zone Assignment List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_iz_zonemapprompt", + "displayName": "Enter the zone assignments here. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_iz_zonemapprompt_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsitetozoneassignmentlist_iz_zonemapprompt_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate", + "displayName": "Locked-Down Trusted Sites Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate", + "displayName": "Locked-Down Trusted Sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowslockeddowntrustedsiteszonetemplate_iz_partnametrustedsiteszonelockdowntemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid", + "displayName": "Allow software to run or install even if the signature is invalid (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsoftwarewhensignatureisinvalid_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate", + "displayName": "Restricted Sites Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate", + "displayName": "Restricted Sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsrestrictedsiteszonetemplate_iz_partnamerestrictedsiteszonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites", + "displayName": "Turn on Suggested Sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowsuggestedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate", + "displayName": "Trusted Sites Zone Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate", + "displayName": "Trusted Sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_1", + "displayName": "Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_2", + "displayName": "Medium Low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_3", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_5", + "displayName": "Medium High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_allowtrustedsiteszonetemplate_iz_partnametrustedsiteszonetemplate_4", + "displayName": "High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation", + "displayName": "Check for server certificate revocation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_checkservercertificaterevocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms", + "displayName": "Check for signatures on downloaded programs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_checksignaturesondownloadedprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel", + "displayName": "Configure which channel of Microsoft Edge to use for opening redirected sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser", + "displayName": "First choice (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_", + "displayName": "", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_1", + "displayName": "Microsoft Edge Stable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_2", + "displayName": "Microsoft Edge Beta version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_3", + "displayName": "Microsoft Edge Dev version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_4", + "displayName": "Microsoft Edge Canary version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser_0", + "displayName": "Microsoft Edge version 45 or earlier", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2", + "displayName": "Second choice (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_", + "displayName": "", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_1", + "displayName": "Microsoft Edge Stable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_2", + "displayName": "Microsoft Edge Beta version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_3", + "displayName": "Microsoft Edge Dev version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_4", + "displayName": "Microsoft Edge Canary version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser2_0", + "displayName": "Microsoft Edge version 45 or earlier", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3", + "displayName": "Third choice (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_", + "displayName": "", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_1", + "displayName": "Microsoft Edge Stable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_2", + "displayName": "Microsoft Edge Beta version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_3", + "displayName": "Microsoft Edge Dev version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_4", + "displayName": "Microsoft Edge Canary version 77 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_configureedgeredirectchannel_neededgebrowser3_0", + "displayName": "Microsoft Edge version 45 or earlier", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_consistentmimehandlinginternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableactivexversionlistautodownload", + "displayName": "Turn off automatic download of the ActiveX VersionList (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableactivexversionlistautodownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableactivexversionlistautodownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableadobeflash", + "displayName": "Turn off Adobe Flash in Internet Explorer and prevent applications from using Internet Explorer technology to instantiate Flash objects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableadobeflash_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableadobeflash_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings", + "displayName": "Prevent bypassing SmartScreen Filter warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles", + "displayName": "Prevent bypassing SmartScreen Filter warnings about files that are not commonly downloaded from the Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablebypassofsmartscreenwarningsaboutuncommonfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview", + "displayName": "Turn off Compatibility View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecompatview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory", + "displayName": "Disable \"Configuring History\" (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableconfiguringhistory_daystokeep_prompt", + "displayName": "Days to keep pages in History (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecrashdetection", + "displayName": "Turn off Crash Detection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecrashdetection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecrashdetection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation", + "displayName": "Prevent participation in the Customer Experience Improvement Program (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablecustomerexperienceimprovementprogramparticipation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites", + "displayName": "Prevent deleting websites that the user has visited (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disabledeletinguservisitedwebsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading", + "displayName": "Prevent downloading of enclosures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableenclosuredownloading_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport", + "displayName": "Turn off encryption support (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions", + "displayName": "Secure Protocol combinations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_0", + "displayName": "Use no secure protocols", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_8", + "displayName": "Only use SSL 2.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_32", + "displayName": "Only use SSL 3.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_40", + "displayName": "Use SSL 2.0 and SSL 3.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_128", + "displayName": "Only use TLS 1.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_136", + "displayName": "Use SSL 2.0 and TLS 1.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_160", + "displayName": "Use SSL 3.0 and TLS 1.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_168", + "displayName": "Use SSL 2.0, SSL 3.0, and TLS 1.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_512", + "displayName": "Only use TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_520", + "displayName": "Use SSL 2.0 and TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_544", + "displayName": "Use SSL 3.0 and TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_552", + "displayName": "Use SSL 2.0, SSL 3.0, and TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_640", + "displayName": "Use TLS 1.0 and TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_648", + "displayName": "Use SSL 2.0, TLS 1.0, and TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_672", + "displayName": "Use SSL 3.0, TLS 1.0, and TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_680", + "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.0, and TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2048", + "displayName": "Only use TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2056", + "displayName": "Use SSL 2.0 and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2080", + "displayName": "Use SSL 3.0 and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2088", + "displayName": "Use SSL 2.0, SSL 3.0, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2176", + "displayName": "Use TLS 1.0 and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2184", + "displayName": "Use SSL 2.0, TLS 1.0, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2208", + "displayName": "Use SSL 3.0, TLS 1.0, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2216", + "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.0, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2560", + "displayName": "Use TLS 1.1 and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2568", + "displayName": "Use SSL 2.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2592", + "displayName": "Use SSL 3.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2600", + "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2688", + "displayName": "Use TLS 1.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2696", + "displayName": "Use SSL 2.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2720", + "displayName": "Use SSL 3.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_2728", + "displayName": "Use SSL 2.0, SSL 3.0, TLS 1.0, TLS 1.1, and TLS 1.2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_8192", + "displayName": "Only use TLS 1.3", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10240", + "displayName": "Use TLS 1.2 and TLS 1.3", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10752", + "displayName": "Use TLS 1.1, TLS 1.2, and TLS 1.3", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10880", + "displayName": "Use TLS 1.0, TLS 1.1, TLS 1.2, and TLS 1.3", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableencryptionsupport_advanced_wininetprotocoloptions_10912", + "displayName": "Use SSL 3.0, TLS 1.0, TLS 1.1, TLS 1.2, and TLS 1.3", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync", + "displayName": "Turn off background synchronization for feeds and Web Slices (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefeedsbackgroundsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard", + "displayName": "Prevent running First Run wizard (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions", + "displayName": "Select your choice (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions_1", + "displayName": "Go directly to home page", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablefirstrunwizard_firstrunoptions_2", + "displayName": "Go directly to \"Welcome To IE\" page", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature", + "displayName": "Turn off the flip ahead with page prediction feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableflipaheadfeature_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation", + "displayName": "Turn off browser geolocation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablegeolocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange", + "displayName": "Disable changing home page settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablehomepagechange_enterhomepageprompt", + "displayName": "Home Page (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablehtmlapplication", + "displayName": "Disable HTML Application (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablehtmlapplication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors", + "displayName": "Prevent ignoring certificate errors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableignoringcertificateerrors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing", + "displayName": "Turn off InPrivate Browsing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinprivatebrowsing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp", + "displayName": "[Deprecated] Disable Internet Explorer 11 as a standalone browser (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2", + "displayName": "Disable Internet Explorer 11 as a standalone browser (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions", + "displayName": "Notify that Internet Explorer 11 browser is disabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_0", + "displayName": "Never", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_1", + "displayName": "Always", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableinternetexplorerapp_v2_notifydisableieoptions_2", + "displayName": "Once per user", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode", + "displayName": "Turn on 64-bit tab processes when running in Enhanced Protected Mode on 64-bit versions of Windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableprocessesinenhancedprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange", + "displayName": "Prevent changing proxy settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disableproxychange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange", + "displayName": "Prevent changing the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesearchproviderchange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange", + "displayName": "Disable changing secondary home page settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecondaryhomepagechange_secondaryhomepageslist", + "displayName": "Secondary home pages (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck", + "displayName": "Turn off the Security Settings Check feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablesecuritysettingscheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete", + "displayName": "Turn off the auto-complete feature for web addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_disablewebaddressautocomplete_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode", + "displayName": "Do not allow ActiveX controls to run in Protected Mode when Enhanced Protected Mode is enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotallowactivexcontrolsinprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols", + "displayName": "Turn off blocking of outdated ActiveX controls for Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains", + "displayName": "Turn off blocking of outdated ActiveX controls for Internet Explorer on specific domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_donotblockoutdatedactivexcontrolsonspecificdomains_domainlist", + "displayName": "Domain allow list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys", + "displayName": "Enable extended hot keys in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_enableextendediemodehotkeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode", + "displayName": "Enable global window list in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_enableglobalwindowlistiniemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_includealllocalsites", + "displayName": "Intranet Sites: Include all local (intranet) sites not listed in other zones (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_includealllocalsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_includealllocalsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths", + "displayName": "Intranet Sites: Include all network paths (UNCs) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_includeallnetworkpaths_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript", + "displayName": "Allow cut, copy or paste operations from the clipboard via script (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407", + "displayName": "Allow paste operations via script (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowcopypasteviascript_iz_partname1407_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles", + "displayName": "Allow drag and drop or copy and paste files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802", + "displayName": "Allow drag and drop or copy and paste files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowdraganddropcopyandpastefiles_iz_partname1802_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles", + "displayName": "Allow loading of XAML files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402", + "displayName": "XAML Files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowloadingofxamlfiles_iz_partname2402_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols", + "displayName": "Allow only approved domains to use ActiveX controls without prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b", + "displayName": "Only allow approved domains to use ActiveX controls without prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol", + "displayName": "Allow only approved domains to use the TDC ActiveX control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c", + "displayName": "Only allow approved domains to use the TDC ActiveX control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols", + "displayName": "Allow scripting of Internet Explorer WebBrowser controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", + "displayName": "Internet Explorer web browser control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows", + "displayName": "Allow script-initiated windows without size or position constraints (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102", + "displayName": "Allow script-initiated windows without size or position constraints (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptinitiatedwindows_iz_partname2102_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript", + "displayName": "Allow updates to status bar via script (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103", + "displayName": "Status bar updates via script (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowupdatestostatusbarviascript_iz_partname2103_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer", + "displayName": "Allow VBScript to run in Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c", + "displayName": "Allow VBScript to run in Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneallowvbscripttorunininternetexplorer_iz_partname140c_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols", + "displayName": "Download signed ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001", + "displayName": "Download signed ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadsignedactivexcontrols_iz_partname1001_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols", + "displayName": "Download unsigned ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004", + "displayName": "Download unsigned ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonedownloadunsignedactivexcontrols_iz_partname1004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter", + "displayName": "Turn on Cross-Site Scripting Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409", + "displayName": "Turn on Cross-Site Scripting (XSS) Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablecrosssitescriptingfilter_iz_partname1409_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows", + "displayName": "Enable dragging of content from different domains across windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709", + "displayName": "Enable dragging of content from different domains across windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows", + "displayName": "Enable dragging of content from different domains within a window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708", + "displayName": "Enable dragging of content from different domains within a window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing", + "displayName": "Enable MIME Sniffing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100", + "displayName": "Enable MIME Sniffing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenablemimesniffing_iz_partname2100_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode", + "displayName": "Turn on Protected Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500", + "displayName": "Protected Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneenableprotectedmode_iz_partname2500_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver", + "displayName": "Include local path when user is uploading files to a server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a", + "displayName": "Include local directory path when uploading files to a server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe", + "displayName": "Launching applications and files in an IFRAME (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804", + "displayName": "Launching applications and files in an IFRAME (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions", + "displayName": "Logon options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00", + "displayName": "Logon options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode", + "displayName": "Run .NET Framework-reliant components signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001", + "displayName": "Run .NET Framework-reliant components signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles", + "displayName": "Show security warning for potentially unsafe files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", + "displayName": "Launching programs and unsafe files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker", + "displayName": "Use Pop-up Blocker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809", + "displayName": "Use Pop-up Blocker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_internetzoneusepopupblocker_iz_partname1809_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_intranetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_jscriptreplacement", + "displayName": "Replace JScript by loading JScript9Legacy in place of JScript via MSHTML/WebOC. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_jscriptreplacement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_jscriptreplacement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer", + "displayName": "Keep all intranet sites in Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_keepintranetsitesininternetexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_localmachinezonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowninternetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetjavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownintranetzonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownlocalmachinezonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddownrestrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_lockeddowntrustedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_mimesniffingsafetyfeatureinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_mkprotocolsecurityrestrictioninternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage", + "displayName": "Specify default behavior for a new tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions", + "displayName": "New tab behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_3", + "displayName": "New tab page with my news feed", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_0", + "displayName": "about:blank", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_2", + "displayName": "New tab page", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_newtabdefaultpage_newtabactionoptions_1", + "displayName": "Home page", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_notificationbarinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter", + "displayName": "Prevent managing SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions", + "displayName": "Select SmartScreen Filter mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_0", + "displayName": "Off", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventmanagingsmartscreenfilter_ie9safetyfilteroptions_1", + "displayName": "On", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols", + "displayName": "Prevent per-user installation of ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_preventperuserinstallationofactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_protectionfromzoneelevationinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols", + "displayName": "Remove \"Run this time\" button for outdated ActiveX controls in Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_removerunthistimebuttonforoutdatedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode", + "displayName": "Reset zoom to default for HTML dialogs in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_resetzoomfordialoginiemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictactivexinstallinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting", + "displayName": "Allow active scripting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400", + "displayName": "Allow active scripting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowactivescripting_iz_partname1400_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors", + "displayName": "Allow binary and script behaviors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000", + "displayName": "Allow Binary and Script Behaviors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_65536", + "displayName": "Administrator approved", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowbinaryandscriptbehaviors_iz_partname2000_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript", + "displayName": "Allow cut, copy or paste operations from the clipboard via script (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407", + "displayName": "Allow paste operations via script (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowcopypasteviascript_iz_partname1407_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles", + "displayName": "Allow drag and drop or copy and paste files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802", + "displayName": "Allow drag and drop or copy and paste files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowdraganddropcopyandpastefiles_iz_partname1802_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads", + "displayName": "Allow file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803", + "displayName": "Allow file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfiledownloads_iz_partname1803_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles", + "displayName": "Allow loading of XAML files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402", + "displayName": "XAML Files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowloadingofxamlfiles_iz_partname2402_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh", + "displayName": "Allow META REFRESH (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608", + "displayName": "Allow META REFRESH (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowmetarefresh_iz_partname1608_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols", + "displayName": "Allow only approved domains to use ActiveX controls without prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b", + "displayName": "Only allow approved domains to use ActiveX controls without prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstouseactivexcontrols_iz_partname120b_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol", + "displayName": "Allow only approved domains to use the TDC ActiveX control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c", + "displayName": "Only allow approved domains to use the TDC ActiveX control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowonlyapproveddomainstousetdcactivexcontrol_iz_partname120c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols", + "displayName": "Allow scripting of Internet Explorer WebBrowser controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206", + "displayName": "Internet Explorer web browser control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptingofinternetexplorerwebbrowsercontrols_iz_partname1206_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows", + "displayName": "Allow script-initiated windows without size or position constraints (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102", + "displayName": "Allow script-initiated windows without size or position constraints (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptinitiatedwindows_iz_partname2102_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript", + "displayName": "Allow updates to status bar via script (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103", + "displayName": "Status bar updates via script (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowupdatestostatusbarviascript_iz_partname2103_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer", + "displayName": "Allow VBScript to run in Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c", + "displayName": "Allow VBScript to run in Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneallowvbscripttorunininternetexplorer_iz_partname140c_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols", + "displayName": "Download signed ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001", + "displayName": "Download signed ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadsignedactivexcontrols_iz_partname1001_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols", + "displayName": "Download unsigned ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004", + "displayName": "Download unsigned ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonedownloadunsignedactivexcontrols_iz_partname1004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter", + "displayName": "Turn on Cross-Site Scripting Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409", + "displayName": "Turn on Cross-Site Scripting (XSS) Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablecrosssitescriptingfilter_iz_partname1409_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows", + "displayName": "Enable dragging of content from different domains across windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709", + "displayName": "Enable dragging of content from different domains across windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainsacrosswindows_iz_partname2709_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows", + "displayName": "Enable dragging of content from different domains within a window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708", + "displayName": "Enable dragging of content from different domains within a window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenabledraggingofcontentfromdifferentdomainswithinwindows_iz_partname2708_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing", + "displayName": "Enable MIME Sniffing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100", + "displayName": "Enable MIME Sniffing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneenablemimesniffing_iz_partname2100_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver", + "displayName": "Include local path when user is uploading files to a server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a", + "displayName": "Include local directory path when uploading files to a server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneincludelocalpathwhenuploadingfilestoserver_iz_partname160a_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe", + "displayName": "Launching applications and files in an IFRAME (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804", + "displayName": "Launching applications and files in an IFRAME (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelaunchingapplicationsandfilesiniframe_iz_partname1804_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions", + "displayName": "Logon options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00", + "displayName": "Logon options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_196608", + "displayName": "Anonymous logon", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_131072", + "displayName": "Automatic logon only in Intranet zone", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_0", + "displayName": "Automatic logon with current username and password", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonelogonoptions_iz_partname1a00_65536", + "displayName": "Prompt for user name and password", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins", + "displayName": "Run ActiveX controls and plugins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200", + "displayName": "Run ActiveX controls and plugins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_65536", + "displayName": "Administrator approved", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunactivexcontrolsandplugins_iz_partname1200_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode", + "displayName": "Run .NET Framework-reliant components signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001", + "displayName": "Run .NET Framework-reliant components signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonerunnetframeworkreliantcomponentssignedwithauthenticode_iz_partname2001_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting", + "displayName": "Script ActiveX controls marked safe for scripting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405", + "displayName": "Script ActiveX controls marked safe for scripting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptactivexcontrolsmarkedsafeforscripting_iz_partname1405_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets", + "displayName": "Scripting of Java applets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402", + "displayName": "Scripting of Java applets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszonescriptingofjavaapplets_iz_partname1402_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles", + "displayName": "Show security warning for potentially unsafe files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806", + "displayName": "Launching programs and unsafe files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneshowsecuritywarningforpotentiallyunsafefiles_iz_partname1806_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode", + "displayName": "Turn on Protected Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500", + "displayName": "Protected Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneturnonprotectedmode_iz_partname2500_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker", + "displayName": "Use Pop-up Blocker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809", + "displayName": "Use Pop-up Blocker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictedsiteszoneusepopupblocker_iz_partname1809_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_restrictfiledownloadinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses", + "displayName": "Internet Explorer Processes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_scriptedwindowsecurityrestrictionsinternetexplorerprocesses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_searchproviderlist", + "displayName": "Restrict search providers to a specific list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_searchproviderlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_searchproviderlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge", + "displayName": "Send all sites not included in the Enterprise Mode Site List to Microsoft Edge. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_sendsitesnotinenterprisesitelisttoedge_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice", + "displayName": "Specify use of ActiveX Installer Service for installation of ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_specifyuseofactivexinstallerservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406", + "displayName": "Access data sources across domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowaccesstodatasources_iz_partname1406_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201", + "displayName": "Automatic prompting for ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforactivexcontrols_iz_partname2201_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200", + "displayName": "Automatic prompting for file downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowautomaticpromptingforfiledownloads_iz_partname2200_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604", + "displayName": "Allow font downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowfontdownloads_iz_partname1604_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101", + "displayName": "Web sites in less privileged Web content zones can navigate into this zone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowlessprivilegedsites_iz_partname2101_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004", + "displayName": "Run .NET Framework-reliant components not signed with Authenticode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallownetframeworkreliantcomponents_iz_partname2004_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets", + "displayName": "Allow scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209", + "displayName": "Scriptlets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowscriptlets_iz_partname1209_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie", + "displayName": "Turn on SmartScreen Filter scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301", + "displayName": "Use SmartScreen Filter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowsmartscreenie_iz_partname2301_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606", + "displayName": "Userdata persistence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneallowuserdatapersistence_iz_partname1606_3", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c", + "displayName": "Don't run antimalware programs against ActiveX controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_3", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonedonotrunantimalwareagainstactivexcontrols_iz_partname270c_0", + "displayName": "Disable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201", + "displayName": "Initialize and script ActiveX controls not marked as safe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszoneinitializeandscriptactivexcontrols_iz_partname1201_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00", + "displayName": "Java permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_65536", + "displayName": "High safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_131072", + "displayName": "Medium safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_196608", + "displayName": "Low safety", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_8388608", + "displayName": "Custom", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonejavapermissions_iz_partname1c00_0", + "displayName": "Disable Java", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607", + "displayName": "Navigate windows and frames across different domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_0", + "displayName": "Enable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_3", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_internetexplorer_trustedsiteszonenavigatewindowsandframes_iz_partname1607_1", + "displayName": "Prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_blockedurlexceptions", + "displayName": "Blocked Url Exceptions (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_blockedurls", + "displayName": "Blocked Urls (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_defaulturl", + "displayName": "Default URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton", + "displayName": "Enable End Session Button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enableendsessionbutton_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enablehomebutton", + "displayName": "Enable Home Button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enablehomebutton_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enablehomebutton_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons", + "displayName": "Enable Navigation Buttons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons_1", + "displayName": "Enable", + "description": "Enable" + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_enablenavigationbuttons_0", + "displayName": "Disable", + "description": "Disable" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_kioskbrowser_restartonidletime", + "displayName": "Restart On Idle Time (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1", + "displayName": "Specify server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1_l_serveraddressexternal_value", + "displayName": "DNS name of the external server (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfigurationmode_1_l_serveraddressinternal_value", + "displayName": "DNS name of the internal server (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_1", + "displayName": "Additional server versions supported (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyconfiguredservercheckvalues_1_l_configuredservercheckvalues_value", + "displayName": "Server version names (semicolon separated list): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_1", + "displayName": "Disable automatic upload of sign-in failure logs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableautomaticsendtracing_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_1", + "displayName": "Disable HTTP fallback for SIP connection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablehttpconnect_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_1", + "displayName": "Require logon credentials (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisablentcredentials_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_1", + "displayName": "Disable server version check (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policydisableservercheck_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_1", + "displayName": "Enable using BITS to download Address Book Service files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablebitsforgaldownload_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_1", + "displayName": "Configure SIP security mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policyenablesiphighsecuritymode_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1", + "displayName": "Global Address Book Download Initial Delay (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policygaldownloadinitialdelay_1_l_galdownloadinitialdelay_value", + "displayName": "Maximum possible number of minutes to delay download: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_1", + "displayName": "Prevent users from running Microsoft Lync (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policypreventrun_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_1", + "displayName": "Allow storage of user passwords (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysavepassword_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1", + "displayName": "Configure SIP compression mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression", + "displayName": "Configure SIP compression mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression_0", + "displayName": "Always disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression_1", + "displayName": "Always enabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression_2", + "displayName": "Based on adaptor speed (default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policysipcompression_1_l_policysipcompression_3", + "displayName": "Based on ping round-trip time", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1", + "displayName": "Trusted Domain List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_lync16v2~policy~l_lync~l_lyncconfiguration_l_policytrustmodeldata_1_l_trustmodeldata_value", + "displayName": "Trusted Domains (comma separated list): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder", + "displayName": "Configure the location of the browser executable folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_browserexecutablefolderdesc", + "displayName": "Set value name to the Application User Model ID or the executable file name. You can use the \"*\" wildcard as value name to apply to all applications. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_browserexecutablefolderdesc_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_browserexecutablefolder_browserexecutablefolderdesc_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference", + "displayName": "Set the release channel search order preference (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc", + "displayName": "Set value name to the Application User Model ID or the executable file name. You can use the \"*\" wildcard as value name to apply to all applications. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v1~policy~microsoft_edge_webview2~webview2loaderoverridesettings_releasechannelpreference_releasechannelpreferencedesc_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_2", + "displayName": "Retrieve configurations and experiments", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_1", + "displayName": "Retrieve configurations only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_0", + "displayName": "Disable communication with the Experimentation and Configuration Service", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled", + "displayName": "Controls whether unload event handlers can be disabled. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_forcepermissionpolicyunloaddefaultenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist", + "displayName": "HTTP Allowlist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_httpallowlistdesc", + "displayName": "HTTP Allowlist (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_httpallowlistdesc_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_httpallowlist_httpallowlistdesc_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed", + "displayName": "Allows enabling the feature NewBaseUrlInheritanceBehavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newbaseurlinheritancebehaviorallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list", + "displayName": "Enable built-in PDF reader powered by Adobe Acrobat for WebView2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_newpdfreaderwebview2listdesc", + "displayName": "Set value name to the Application User Model ID or the executable file name. You can use the \"*\" wildcard as value name to apply to all applications. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_newpdfreaderwebview2listdesc_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_newpdfreaderwebview2list_newpdfreaderwebview2listdesc_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled", + "displayName": "Check RSA key usage for server certificates issued by local trust anchors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge_webview2v2~policy~microsoft_edge_webview2_rsakeyusageforlocalanchorsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory", + "displayName": "Enable deleting browser and download history (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowdeletingbrowserhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs", + "displayName": "Allow file selection dialogs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_allowfileselectiondialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally", + "displayName": "Always open PDF files externally (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_alwaysopenpdfexternally_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue", + "displayName": "Set application locale (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_applicationlocalevalue_applicationlocalevalue", + "displayName": "Application locale (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed", + "displayName": "Allow or block audio capture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls", + "displayName": "Sites that can access audio capture devices without requesting permission (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_audiocaptureallowedurls_audiocaptureallowedurlsdesc", + "displayName": "Sites that can access audio capture devices without requesting permission (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled", + "displayName": "Enable AutoFill for addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofilladdressenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled", + "displayName": "Enable AutoFill for payment instruments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autofillcreditcardenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun", + "displayName": "Automatically import another browser's data and settings at first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun", + "displayName": "Automatically import another browser's data and settings at first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_0", + "displayName": "Automatically imports all supported datatypes and settings from the default browser", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_1", + "displayName": "Automatically imports all supported datatypes and settings from Internet Explorer", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_2", + "displayName": "Automatically imports all supported datatypes and settings from Google Chrome", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_3", + "displayName": "Automatically imports all supported datatypes and settings from Safari", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_autoimportatfirstrun_autoimportatfirstrun_4", + "displayName": "Disables automatic import, and the import section of the first-run experience is skipped", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled", + "displayName": "Continue running background apps after Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_backgroundmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies", + "displayName": "Block third party cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_blockthirdpartycookies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled", + "displayName": "Enable profile creation from the Identity flyout menu or the Settings page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browseraddprofileenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled", + "displayName": "Enable guest mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browserguestmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled", + "displayName": "Allow queries to a Browser Network Time service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsernetworktimequeriesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin", + "displayName": "Browser sign-in settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin", + "displayName": "Browser sign-in settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_0", + "displayName": "Disable browser sign-in", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_1", + "displayName": "Enable browser sign-in", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_browsersignin_browsersignin_2", + "displayName": "Force users to sign-in to use the browser", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled", + "displayName": "Use built-in DNS client (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_builtindnsclientenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforcas_certificatetransparencyenforcementdisabledforcasdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas", + "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforlegacycas_certificatetransparencyenforcementdisabledforlegacycasdesc", + "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls", + "displayName": "Disable Certificate Transparency enforcement for specific URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_certificatetransparencyenforcementdisabledforurls_certificatetransparencyenforcementdisabledforurlsdesc", + "displayName": "Disable Certificate Transparency enforcement for specific URLs (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled", + "displayName": "Enable component updates in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_componentupdatesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack", + "displayName": "Configure Do Not Track (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configuredonottrack_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech", + "displayName": "Configure Online Text To Speech (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_configureonlinetexttospeech_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability", + "displayName": "Control where developer tools can be used (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability", + "displayName": "Control where developer tools can be used (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability_0", + "displayName": "Block the developer tools on extensions installed by enterprise policy, allow in other contexts", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability_1", + "displayName": "Allow using the developer tools", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_developertoolsavailability_developertoolsavailability_2", + "displayName": "Don't allow using the developer tools", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis", + "displayName": "Disable support for 3D graphics APIs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disable3dapis_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots", + "displayName": "Disable taking screenshots (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_disablescreenshots_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir", + "displayName": "Set disk cache directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachedir_diskcachedir", + "displayName": "Set disk cache directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize", + "displayName": "Set disk cache size, in bytes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_diskcachesize_diskcachesize", + "displayName": "Set disk cache size: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory", + "displayName": "Set download directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloaddirectory_downloaddirectory", + "displayName": "Set download directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions", + "displayName": "Allow download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions", + "displayName": "Download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_1", + "displayName": "Block dangerous downloads", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_2", + "displayName": "Block potentially dangerous downloads", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled", + "displayName": "Allows users to edit favorites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_editfavoritesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures", + "displayName": "Re-enable deprecated web platform features for a limited time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledeprecatedwebplatformfeatures_enabledeprecatedwebplatformfeaturesdesc", + "displayName": "Re-enable deprecated web platform features for a limited time (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload", + "displayName": "Enable Domain Actions Download from Microsoft (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enabledomainactionsdownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks", + "displayName": "Enable online OCSP/CRL checks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_enableonlinerevocationchecks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol", + "displayName": "Control communication with the Experimentation and Configuration Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_2", + "displayName": "Retrieve configurations and experiments", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_1", + "displayName": "Retrieve configurations only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_experimentationandconfigurationservicecontrol_experimentationandconfigurationservicecontrol_0", + "displayName": "Disable communication with the Experimentation and Configuration Service", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled", + "displayName": "Enable favorites bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_favoritesbarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch", + "displayName": "Enforce Bing SafeSearch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch", + "displayName": "Enforce Bing SafeSearch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch_0", + "displayName": "Don't configure search restrictions in Bing", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch_1", + "displayName": "Configure moderate search restrictions in Bing", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcebingsafesearch_forcebingsafesearch_2", + "displayName": "Configure strict search restrictions in Bing", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles", + "displayName": "Enable use of ephemeral profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceephemeralprofiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch", + "displayName": "Enforce Google SafeSearch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forcegooglesafesearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict", + "displayName": "Force minimum YouTube Restricted Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict_0", + "displayName": "Do not enforce Restricted Mode on YouTube", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict_1", + "displayName": "Enforce at least Moderate Restricted Mode on YouTube", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_forceyoutuberestrict_forceyoutuberestrict_2", + "displayName": "Enforce Strict Restricted Mode for YouTube", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed", + "displayName": "Allow full screen mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_fullscreenallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled", + "displayName": "Use hardware acceleration when available (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_hardwareaccelerationmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata", + "displayName": "Allow importing of autofill form data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importautofillformdata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites", + "displayName": "Allow importing of favorites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importfavorites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory", + "displayName": "Allow importing of browsing history (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage", + "displayName": "Allow importing of home page settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo", + "displayName": "Allow importing of payment info (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importpaymentinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords", + "displayName": "Allow importing of saved passwords (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsavedpasswords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine", + "displayName": "Allow importing of search engine settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_importsearchengine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability", + "displayName": "Configure InPrivate mode availability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability", + "displayName": "Configure InPrivate mode availability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_0", + "displayName": "InPrivate mode available", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_1", + "displayName": "InPrivate mode disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_inprivatemodeavailability_inprivatemodeavailability_2", + "displayName": "InPrivate mode forced", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel", + "displayName": "Configure Internet Explorer integration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel", + "displayName": "Configure Internet Explorer integration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel_1", + "displayName": "Internet Explorer mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_internetexplorerintegrationlevel_internetexplorerintegrationlevel_2", + "displayName": "Internet Explorer 11", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins", + "displayName": "Enable site isolation for specific origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_isolateorigins_isolateorigins", + "displayName": "Enable site isolation for specific origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites", + "displayName": "Configure favorites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedfavorites_managedfavorites", + "displayName": "Configure favorites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines", + "displayName": "Manage Search Engines (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_managedsearchengines_managedsearchengines", + "displayName": "Manage Search Engines (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy", + "displayName": "Maximum number of concurrent connections to the proxy server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_maxconnectionsperproxy_maxconnectionsperproxy", + "displayName": "Maximum number of concurrent connections to the proxy server: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips", + "displayName": "Allow Google Cast to connect to Cast devices on all IP addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_mediaroutercastallowallips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled", + "displayName": "Enable usage and crash-related data reporting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_metricsreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular.\r\n(Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_networkpredictionoptions_networkpredictionoptions_2", + "displayName": "Don't predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin", + "displayName": "Control where security restrictions on insecure origins apply (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_overridesecurityrestrictionsoninsecureorigin_overridesecurityrestrictionsoninsecureorigindesc", + "displayName": "Control where security restrictions on insecure origins apply (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled", + "displayName": "Enable Proactive Authentication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_proactiveauthenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled", + "displayName": "Enable full-tab promotional content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promotionaltabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation", + "displayName": "Ask where to save downloaded files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_promptfordownloadlocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed", + "displayName": "Allow QUIC protocol (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_quicallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended", + "displayName": "Set application locale (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_applicationlocalevalue_recommended_applicationlocalevalue", + "displayName": "Application locale (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofilladdressenabled_recommended", + "displayName": "Enable AutoFill for addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofilladdressenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofilladdressenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofillcreditcardenabled_recommended", + "displayName": "Enable AutoFill for credit cards (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofillcreditcardenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_autofillcreditcardenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_backgroundmodeenabled_recommended", + "displayName": "Continue running background apps after Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_backgroundmodeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_backgroundmodeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended", + "displayName": "Block third party cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_blockthirdpartycookies_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended", + "displayName": "Set download directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloaddirectory_recommended_downloaddirectory", + "displayName": "Set download directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended", + "displayName": "Allow download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions", + "displayName": "Download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_1", + "displayName": "Block dangerous downloads", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_2", + "displayName": "Block potentially dangerous downloads", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended", + "displayName": "Enable favorites bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_favoritesbarenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importautofillformdata_recommended", + "displayName": "Allow importing of autofill form data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importautofillformdata_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importautofillformdata_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended", + "displayName": "Allow importing of favorites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importfavorites_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importhistory_recommended", + "displayName": "Allow importing of browsing history (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importhistory_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importhistory_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended", + "displayName": "Allow importing of payment info (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importpaymentinfo_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsavedpasswords_recommended", + "displayName": "Allow importing of saved passwords (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsavedpasswords_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsavedpasswords_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsearchengine_recommended", + "displayName": "Allow importing of search engine settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsearchengine_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_importsearchengine_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions", + "displayName": "Enable network prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions_0", + "displayName": "Predict network actions on any network connection", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions_1", + "displayName": "Predict network actions on any network that is not cellular.\r\n(Deprecated in 50, removed in 52. After 52, if value 1 is set, it will be treated as 0 - predict network actions on any network connection.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_networkpredictionoptions_recommended_networkpredictionoptions_2", + "displayName": "Don't predict network actions on any network connection", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_resolvenavigationerrorsusewebservice_recommended", + "displayName": "Enable resolution of navigation errors using a web service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_resolvenavigationerrorsusewebservice_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_resolvenavigationerrorsusewebservice_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended", + "displayName": "Enable search suggestions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_searchsuggestenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended", + "displayName": "Disable synchronization of data using Microsoft sync services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_syncdisabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended", + "displayName": "Enable Translate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended_translateenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended", + "displayName": "Register protocol handlers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~contentsettings_recommended_registeredprotocolhandlers_recommended_registeredprotocolhandlers", + "displayName": "Register protocol handlers (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended", + "displayName": "Enable saving passwords to the password manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmanagerenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended", + "displayName": "Print headers and footers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printheaderfooter_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended", + "displayName": "Set the system default printer as the default printer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~printing_recommended_printpreviewusesystemdefaultprinter_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended", + "displayName": "Configure Microsoft Defender SmartScreen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepageisnewtabpage_recommended", + "displayName": "Set the new tab page as the home page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepageisnewtabpage_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepageisnewtabpage_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended", + "displayName": "Configure the home page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_homepagelocation_recommended_homepagelocation", + "displayName": "Home page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended", + "displayName": "Configure the new tab page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_newtabpagelocation_recommended_newtabpagelocation", + "displayName": "New tab page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended", + "displayName": "Action to take on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup", + "displayName": "Action to take on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_5", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended", + "displayName": "Sites to open when the browser starts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_restoreonstartupurls_recommended_restoreonstartupurlsdesc", + "displayName": "Sites to open when the browser starts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended", + "displayName": "Show Home button on toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_recommended~startup_recommended_showhomebutton_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification", + "displayName": "Notify a user that a browser restart is recommended or required for pending updates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_relaunchnotification", + "displayName": "Notify a user that a browser restart is recommended or required for pending updates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_relaunchnotification_1", + "displayName": "Recommended - Show a recurring prompt to the user indicating that a restart is recommended", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotification_relaunchnotification_2", + "displayName": "Required - Show a recurring prompt to the user indicating that a restart is required", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod", + "displayName": "Set the time period for update notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_relaunchnotificationperiod_relaunchnotificationperiod", + "displayName": "Set the time period for update notifications: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors", + "displayName": "Specify if online OCSP/CRL checks are required for local trust anchors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_requireonlinerevocationchecksforlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice", + "displayName": "Enable resolution of navigation errors using a web service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_resolvenavigationerrorsusewebservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern", + "displayName": "Restrict which accounts can be used to sign in to Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_restrictsignintopattern_restrictsignintopattern", + "displayName": "Restrict which accounts can be used as Microsoft Edge primary accounts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode", + "displayName": "Extend Adobe Flash content setting to all content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_runallflashinallowmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled", + "displayName": "Disable saving browser history (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_savingbrowserhistorydisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled", + "displayName": "Enable search suggestions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_searchsuggestenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation", + "displayName": "Websites or domains that don't need permission to use direct Security Key attestation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_securitykeypermitattestation_securitykeypermitattestationdesc", + "displayName": "Websites or domains that don't need permission to use direct Security Key attestation (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer", + "displayName": "Send all intranet sites to Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendintranettointernetexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices", + "displayName": "Send site information to improve Microsoft services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sendsiteinfotoimproveservices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar", + "displayName": "Show Microsoft Office shortcut in favorites bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_showofficeshortcutinfavoritesbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess", + "displayName": "Enable site isolation for every site (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_siteperprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled", + "displayName": "Enable spellcheck (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellcheckenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage", + "displayName": "Enable specific spellcheck languages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_spellchecklanguage_spellchecklanguagedesc", + "displayName": "Enable specific spellcheck languages (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed", + "displayName": "Allow users to proceed from the HTTPS warning page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslerroroverrideallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin", + "displayName": "Minimum TLS version enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin", + "displayName": "Minimum SSL version enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1", + "displayName": "TLS 1.0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1.1", + "displayName": "TLS 1.1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_sslversionmin_sslversionmin_tls1.2", + "displayName": "TLS 1.2", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning", + "displayName": "Suppress the unsupported OS warning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_suppressunsupportedoswarning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled", + "displayName": "Disable synchronization of data using Microsoft sync services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_syncdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled", + "displayName": "Configure tab lifecycles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_tablifecyclesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled", + "displayName": "Enable ending processes in the Browser task manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_taskmanagerendprocessenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled", + "displayName": "Enable Translate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_translateenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist", + "displayName": "Define a list of allowed URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlallowlist_urlallowlistdesc", + "displayName": "Define a list of allowed URLs (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist", + "displayName": "Block access to a list of URLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_urlblocklist_urlblocklistdesc", + "displayName": "Block access to a list of URLs (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir", + "displayName": "Set the user data directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userdatadir_userdatadir", + "displayName": "Set the user data directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed", + "displayName": "Allow user feedback (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_userfeedbackallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed", + "displayName": "Allow or block video capture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls", + "displayName": "Sites that can access video capture devices without requesting permission (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_videocaptureallowedurls_videocaptureallowedurlsdesc", + "displayName": "Sites that can access video capture devices without requesting permission (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies", + "displayName": "Allow WebDriver to Override Incompatible Policies (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webdriveroverridesincompatiblepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling", + "displayName": "Restrict exposure of local IP address by WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling", + "displayName": "Restrict exposure of localhost IP address by WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling_default", + "displayName": "Allow all interfaces. This exposes the local IP address", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling_default_public_and_private_interfaces", + "displayName": "Allow public and private interfaces over http default route. This exposes the local IP address", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling_default_public_interface_only", + "displayName": "Allow public interface over http default route. This doesn't expose the local IP address", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtclocalhostiphandling_webrtclocalhostiphandling_disable_non_proxied_udp", + "displayName": "Use TCP unless proxy server supports UDP. This doesn't expose the local IP address", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_webrtcudpportrange_webrtcudpportrange", + "displayName": "Restrict the range of local UDP ports used by WebRTC (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled", + "displayName": "Set WPAD optimization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge_wpadquickcheckenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls", + "displayName": "Automatically select client certificates for these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_autoselectcertificateforurls_autoselectcertificateforurlsdesc", + "displayName": "Automatically select client certificates for these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls", + "displayName": "Allow cookies on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesallowedforurls_cookiesallowedforurlsdesc", + "displayName": "Allow cookies on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls", + "displayName": "Block cookies on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiesblockedforurls_cookiesblockedforurlsdesc", + "displayName": "Block cookies on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls", + "displayName": "Limit cookies from specific websites to the current session (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_cookiessessiononlyforurls_cookiessessiononlyforurlsdesc", + "displayName": "Limit cookies from specific websites to the current session (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting", + "displayName": "Configure cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting", + "displayName": "Configure cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting_1", + "displayName": "Let all sites create cookies", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting_2", + "displayName": "Don't let any site create cookies", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultcookiessetting_defaultcookiessetting_4", + "displayName": "Keep cookies for the duration of the session", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting", + "displayName": "Default geolocation setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting", + "displayName": "Default geolocation setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_1", + "displayName": "Allow sites to track users' physical location", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_2", + "displayName": "Don't allow any site to track users' physical location", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultgeolocationsetting_defaultgeolocationsetting_3", + "displayName": "Ask whenever a site wants to track users' physical location", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting", + "displayName": "Default images setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_defaultimagessetting", + "displayName": "Default images setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_defaultimagessetting_1", + "displayName": "Allow all sites to show all images", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultimagessetting_defaultimagessetting_2", + "displayName": "Don't allow any site to show images", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting", + "displayName": "Default JavaScript setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting", + "displayName": "Default JavaScript setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_1", + "displayName": "Allow all sites to run JavaScript", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultjavascriptsetting_defaultjavascriptsetting_2", + "displayName": "Don't allow any site to run JavaScript", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting", + "displayName": "Default notification setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting", + "displayName": "Default notification setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting_1", + "displayName": "Allow sites to show desktop notifications", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting_2", + "displayName": "Don't allow any site to show desktop notifications", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultnotificationssetting_defaultnotificationssetting_3", + "displayName": "Ask every time a site wants to show desktop notifications", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting", + "displayName": "Default Adobe Flash setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting", + "displayName": "Default Adobe Flash setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting_2", + "displayName": "Block the Adobe Flash plugin", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpluginssetting_defaultpluginssetting_3", + "displayName": "Click to play", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting", + "displayName": "Default pop-up window setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_defaultpopupssetting", + "displayName": "Default pop-up window setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_defaultpopupssetting_1", + "displayName": "Allow all sites to show pop-ups", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultpopupssetting_defaultpopupssetting_2", + "displayName": "Do not allow any site to show popups", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting", + "displayName": "Control use of the Web Bluetooth API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting_2", + "displayName": "Do not allow any site to request access to Bluetooth devices via the Web Bluetooth API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebbluetoothguardsetting_defaultwebbluetoothguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a nearby Bluetooth device", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting", + "displayName": "Control use of the WebUSB API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_2", + "displayName": "Do not allow any site to request access to USB devices via the WebUSB API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_defaultwebusbguardsetting_defaultwebusbguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a connected USB device", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls", + "displayName": "Allow images on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesallowedforurls_imagesallowedforurlsdesc", + "displayName": "Allow images on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls", + "displayName": "Block images on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_imagesblockedforurls_imagesblockedforurlsdesc", + "displayName": "Block images on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls", + "displayName": "Allow JavaScript on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptallowedforurls_javascriptallowedforurlsdesc", + "displayName": "Allow JavaScript on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls", + "displayName": "Block JavaScript on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_javascriptblockedforurls_javascriptblockedforurlsdesc", + "displayName": "Block JavaScript on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls", + "displayName": "Allow notifications on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsallowedforurls_notificationsallowedforurlsdesc", + "displayName": "Allow notifications on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls", + "displayName": "Block notifications on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_notificationsblockedforurls_notificationsblockedforurlsdesc", + "displayName": "Block notifications on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls", + "displayName": "Allow the Adobe Flash plug-in on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsallowedforurls_pluginsallowedforurlsdesc", + "displayName": "Allow the Adobe Flash plug-in on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls", + "displayName": "Block the Adobe Flash plug-in on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_pluginsblockedforurls_pluginsblockedforurlsdesc", + "displayName": "Block the Adobe Flash plug-in on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls", + "displayName": "Allow pop-up windows on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsallowedforurls_popupsallowedforurlsdesc", + "displayName": "Allow pop-up windows on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls", + "displayName": "Block pop-up windows on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_popupsblockedforurls_popupsblockedforurlsdesc", + "displayName": "Block pop-up windows on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls", + "displayName": "Grant access to specific sites to connect to specific USB devices (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusballowdevicesforurls_webusballowdevicesforurls", + "displayName": "Grant access to specific sites to connect to specific USB devices (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls", + "displayName": "Allow WebUSB on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbaskforurls_webusbaskforurlsdesc", + "displayName": "Allow WebUSB on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls", + "displayName": "Block WebUSB on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~contentsettings_webusbblockedforurls_webusbblockedforurlsdesc", + "displayName": "Block WebUSB on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled", + "displayName": "Enable the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings", + "displayName": "Default search provider encodings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderencodings_defaultsearchproviderencodingsdesc", + "displayName": "Default search provider encodings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl", + "displayName": "Specifies the search-by-image feature for the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurl_defaultsearchproviderimageurl", + "displayName": "Specifies the search-by-image feature for the default search provider (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for an image URL that uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderimageurlpostparams_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for an image URL that uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchproviderkeyword_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername", + "displayName": "Default search provider name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidername_defaultsearchprovidername", + "displayName": "Default search provider name (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersearchurl_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl", + "displayName": "Default search provider URL for suggestions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~defaultsearchprovider_defaultsearchprovidersuggesturl_defaultsearchprovidersuggesturl", + "displayName": "Default search provider URL for suggestions (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes", + "displayName": "Configure allowed extension types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionallowedtypes_extensionallowedtypesdesc", + "displayName": "Types of extensions/apps that are allowed to be installed (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist", + "displayName": "Allow specific extensions to be installed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallallowlist_extensioninstallallowlistdesc", + "displayName": "Extension IDs to exempt from the block list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist", + "displayName": "Control which extensions cannot be installed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallblocklist_extensioninstallblocklistdesc", + "displayName": "Extension IDs the user should be prevented from installing (or * for all) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist", + "displayName": "Control which extensions are installed silently (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallforcelist_extensioninstallforcelistdesc", + "displayName": "Extension/App IDs and update URLs to be silently installed (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources", + "displayName": "Configure extension and user script install sources (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensioninstallsources_extensioninstallsourcesdesc", + "displayName": "URL patterns to allow extension, app, and user script installs from (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings", + "displayName": "Configure extension management settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~extensions_extensionsettings_extensionsettings", + "displayName": "Configure extension management settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter", + "displayName": "Enable Google Cast (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_enablemediarouter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar", + "displayName": "Show the cast icon in the toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~googlecast_showcasticonintoolbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt", + "displayName": "Allow cross-origin HTTP Basic Auth prompts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_allowcrossoriginauthprompt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist", + "displayName": "Specifies a list of servers that Microsoft Edge can delegate user credentials to (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authnegotiatedelegateallowlist_authnegotiatedelegateallowlist", + "displayName": "Specifies a list of servers that Microsoft Edge can delegate user credentials to (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes", + "displayName": "Supported authentication schemes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authschemes_authschemes", + "displayName": "Supported authentication schemes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist", + "displayName": "Configure list of allowed authentication servers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_authserverallowlist_authserverallowlist", + "displayName": "Configure list of allowed authentication servers (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup", + "displayName": "Disable CNAME lookup when negotiating Kerberos authentication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_disableauthnegotiatecnamelookup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport", + "displayName": "Include non-standard port in Kerberos SPN (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~httpauthentication_enableauthnegotiateport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist", + "displayName": "Control which native messaging hosts users can use (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingallowlist_nativemessagingallowlistdesc", + "displayName": "Names of the native messaging hosts to exempt from the block list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist", + "displayName": "Configure native messaging block list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessagingblocklist_nativemessagingblocklistdesc", + "displayName": "Names of the forbidden native messaging hosts (or * for all) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts", + "displayName": "Allow user-level native messaging hosts (installed without admin permissions) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~nativemessaging_nativemessaginguserlevelhosts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled", + "displayName": "Enable saving passwords to the password manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordmanagerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionchangepasswordurl_passwordprotectionchangepasswordurl", + "displayName": "Configure the change password URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture fingerprint of password (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionloginurls_passwordprotectionloginurlsdesc", + "displayName": "Configure the list of enterprise login URLs where password protection service should capture fingerprint of password (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger", + "displayName": "Configure password protection warning trigger (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger", + "displayName": "Configure password protection warning trigger (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_0", + "displayName": "Password protection warning is off", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~passwordmanager_passwordprotectionwarningtrigger_passwordprotectionwarningtrigger_1", + "displayName": "Password protection warning is triggered by password reuse", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_defaultprinterselection", + "displayName": "Default printer selection rules (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_defaultprinterselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_defaultprinterselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_defaultprinterselection_defaultprinterselection", + "displayName": "Default printer selection rules (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printheaderfooter", + "displayName": "Print headers and footers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printheaderfooter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printheaderfooter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printingenabled", + "displayName": "Enable printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter", + "displayName": "Set the system default printer as the default printer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_printpreviewusesystemdefaultprinter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_usesystemprintdialog", + "displayName": "Print using system print dialog (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_usesystemprintdialog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~printing_usesystemprintdialog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist", + "displayName": "Configure proxy bypass rules (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxybypasslist_proxybypasslist", + "displayName": "Comma-separated list of proxy bypass rules (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode", + "displayName": "Configure proxy server settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode", + "displayName": "Configure proxy server settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_direct", + "displayName": "Never use a proxy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_auto_detect", + "displayName": "Auto detect proxy settings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_pac_script", + "displayName": "Use a .pac proxy script", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_fixed_servers", + "displayName": "Use fixed proxy servers", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxymode_proxymode_system", + "displayName": "Use system proxy settings", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl", + "displayName": "Set the proxy .pac file URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxypacurl_proxypacurl", + "displayName": "Set the proxy .pac file URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxyserver", + "displayName": "Configure address or URL of proxy server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxyserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxyserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxyserver_proxyserver", + "displayName": "Configure address or URL of proxy server (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings", + "displayName": "Proxy settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~proxy_proxysettings_proxysettings", + "displayName": "Proxy settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride", + "displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverride_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles", + "displayName": "Prevent bypassing of Microsoft Defender SmartScreen warnings about downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_preventsmartscreenpromptoverrideforfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains", + "displayName": "Configure the list of domains for which Microsoft Defender SmartScreen won't trigger warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenallowlistdomains_smartscreenallowlistdomainsdesc", + "displayName": "Configure the list of domains for which SmartScreen won't trigger warnings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled", + "displayName": "Configure Microsoft Defender SmartScreen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~smartscreen_smartscreenenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepageisnewtabpage", + "displayName": "Set the new tab page as the home page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepageisnewtabpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepageisnewtabpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepagelocation", + "displayName": "Configure the home page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepagelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepagelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_homepagelocation_homepagelocation", + "displayName": "Home page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites", + "displayName": "Hide the default top sites from the new tab page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagehidedefaulttopsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation", + "displayName": "Configure the new tab page URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_newtabpagelocation_newtabpagelocation", + "displayName": "New tab page URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup", + "displayName": "Action to take on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup", + "displayName": "Action to take on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_5", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls", + "displayName": "Sites to open when the browser starts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_restoreonstartupurls_restoreonstartupurlsdesc", + "displayName": "Sites to open when the browser starts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_showhomebutton", + "displayName": "Show Home button on toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_showhomebutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edge~policy~microsoft_edge~startup_showhomebutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions", + "displayName": "Allow download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions", + "displayName": "Download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_1", + "displayName": "Block malicious downloads and dangerous file types", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_2", + "displayName": "Block potentially dangerous or unwanted downloads and dangerous file types", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_downloadrestrictions_downloadrestrictions_4", + "displayName": "Block malicious downloads", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended", + "displayName": "Allow download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions", + "displayName": "Download restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_0", + "displayName": "No special restrictions", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_1", + "displayName": "Block malicious downloads and dangerous file types", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_2", + "displayName": "Block potentially dangerous or unwanted downloads and dangerous file types", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_3", + "displayName": "Block all downloads", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgeupdates.2~policy~microsoft_edge_recommended_downloadrestrictions_recommended_downloadrestrictions_4", + "displayName": "Block malicious downloads", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled", + "displayName": "Configure if the ads transparency feature is enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_adstransparencyenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled", + "displayName": "Hide restore pages dialog after browser crash (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_hiderestoredialogenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode", + "displayName": "Secure mode and Certificate-based Digital Signature validation in native PDF reader (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_pdfsecuremode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates", + "displayName": "Prompt the user to select a certificate when multiple certificates match (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge_promptonmultiplematchingcertificates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting", + "displayName": "Control use of the WebHID API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_defaultwebhidguardsetting", + "displayName": "Control use of the WebHID API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_defaultwebhidguardsetting_2", + "displayName": "Do not allow any site to request access to HID devices via the WebHID API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_defaultwebhidguardsetting_defaultwebhidguardsetting_3", + "displayName": "Allow sites to ask the user to grant access to a HID device", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls", + "displayName": "Allow the WebHID API on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidaskforurls_webhidaskforurlsdesc", + "displayName": "Allow the WebHID API on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls", + "displayName": "Block the WebHID API on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev100~policy~microsoft_edge~contentsettings_webhidblockedforurls_webhidblockedforurlsdesc", + "displayName": "Block the WebHID API on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts", + "displayName": "Configure the list of commands for which to disable keyboard shortcuts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_configurekeyboardshortcuts_configurekeyboardshortcuts", + "displayName": "Configure the list of commands for which to disable keyboard shortcuts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled", + "displayName": "Allow features to download assets from the Asset Delivery Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_edgeassetdeliveryserviceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas", + "displayName": "Allow Save page as in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_internetexplorermodeenablesavepageas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended", + "displayName": "Allow features to download assets from the Asset Delivery Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_edgeassetdeliveryserviceenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended", + "displayName": "Allow users to configure Site safety services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended_sitesafetyservicesenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended", + "displayName": "Configure default state of Allow extensions from other stores setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_recommended~extensions_recommended_controldefaultstateofallowextensionfromotherstoressettingenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled", + "displayName": "Allow users to configure Site safety services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge_sitesafetyservicesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled", + "displayName": "Default Profile Setting Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~identity_edgedefaultprofileenabled_edgedefaultprofileenabled", + "displayName": "Default Profile Setting Enabled (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled", + "displayName": "Swipe gestures in Microsoft Edge kiosk mode enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev101~policy~microsoft_edge~kioskmode_kioskswipegesturesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled", + "displayName": "Enable the network service sandbox (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_networkservicesandboxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled", + "displayName": "Allow users to access the Outlook menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_outlookhubmenuenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended", + "displayName": "Allow users to access the Outlook menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_recommended_outlookhubmenuenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled", + "displayName": "Control Javascript setTimeout() function minimum timeout (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_settimeoutwithout1msclampenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled", + "displayName": "Control the User-Agent Client Hints GREASE Update feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge_useragentclienthintsgreaseupdateenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins", + "displayName": "List of origins that allow all HTTP authentication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev102~policy~microsoft_edge~httpauthentication_allhttpauthschemesallowedfororigins_allhttpauthschemesallowedfororiginsdesc", + "displayName": "List of origins that allow all HTTP authentication (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay", + "displayName": "Display zoom in IE Mode tabs with DPI Scale included like it is in Internet Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_internetexplorerzoomdisplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed", + "displayName": "Live captions allowed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_livecaptionsallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled", + "displayName": "Origin-keyed agent clustering enabled by default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge_originagentclusterdefaultenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled", + "displayName": "Guided Switch Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev103~policy~microsoft_edge~identity_guidedswitchenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_alloweddomainsforapps_alloweddomainsforapps", + "displayName": "Define domains allowed to access Google Workspace (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled", + "displayName": "Get user confirmation before closing a browser window with multiple tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_askbeforecloseenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting", + "displayName": "Configure browser process code integrity guard setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting", + "displayName": "Configure browser process code integrity guard setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_0", + "displayName": "Do not enable code integrity guard in the browser process.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_1", + "displayName": "Enable code integrity guard audit mode in the browser process.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_browsercodeintegritysetting_browsercodeintegritysetting_2", + "displayName": "Enable code integrity guard enforcement in the browser process.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled", + "displayName": "Double Click feature in Microsoft Edge enabled (only available in China) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_doubleclickclosetabenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled", + "displayName": "Enable Drop feature in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_edgeedropenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch", + "displayName": "Allow import of data from other browsers on each Microsoft Edge launch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_importoneachlaunch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled", + "displayName": "XFA support in native PDF reader enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_pdfxfaenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu", + "displayName": "Enables Microsoft Edge mini menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_quicksearchshowminimenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended", + "displayName": "Get user confirmation before closing a browser window with multiple tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_askbeforecloseenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended", + "displayName": "Enables Microsoft Edge mini menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_recommended_quicksearchshowminimenu_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled", + "displayName": "Text prediction enabled by default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge_textpredictionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled", + "displayName": "Restrict the length of passwords that can be saved in the Password Manager (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev104~policy~microsoft_edge~passwordmanager_passwordmanagerrestrictlengthenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_exemptfiletypedownloadwarnings_exemptfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload", + "displayName": "Wait for Internet Explorer mode tabs to completely unload before ending the browser session (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_internetexplorerintegrationalwayswaitforunload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled", + "displayName": "Spell checking provided by Microsoft Editor (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorproofingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled", + "displayName": "Synonyms are provided when using Microsoft Editor spell checker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_microsofteditorsynonymsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat_1", + "displayName": "The plain URL without any extra information, such as the page's title. This is the recommended option when this policy is configured. For more information, see the description.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat_3", + "displayName": "Titled Hyperlink: A hyperlink that points to the copied URL, but whose visible text is the title of the destination page. This is the Friendly URL format.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_recommended_configurefriendlyurlformat_recommended_configurefriendlyurlformat_4", + "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled", + "displayName": "JavaScript setTimeout will not be clamped until a higher nesting threshold is set (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev105~policy~microsoft_edge_unthrottlednestedtimeoutenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture", + "displayName": "Always use the OS capture engine to avoid issues with capturing Internet Explorer mode tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_internetexplorerintegrationalwaysuseoscapture_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended", + "displayName": "Efficiency mode enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended", + "displayName": "Enable efficiency mode when the device is connected to a power source (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge_recommended~performance_recommended_efficiencymodeonpowerenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled", + "displayName": "Efficiency mode enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled", + "displayName": "Enable efficiency mode when the device is connected to a power source (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~performance_efficiencymodeonpowerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault", + "displayName": "Print PDF as Image Default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev106~policy~microsoft_edge~printing_printpdfasimagedefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet", + "displayName": "Enhanced Security Mode configuration for Intranet zone sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_enhancesecuritymodebypassintranet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled", + "displayName": "Re-enable the Event.path API until Microsoft Edge version 115 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_eventpathenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed", + "displayName": "Allow local MHTML files to open automatically in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_internetexplorerintegrationlocalmhtfileallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended", + "displayName": "Performance Detector Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_recommended~performance_recommended_performancedetectorenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled", + "displayName": "Web Select Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_webselectenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess", + "displayName": "Force WebSQL to be enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled", + "displayName": "Force WebSQL in non-secure contexts to be enabled (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge_websqlnonsecurecontextenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled", + "displayName": "Enable Workspaces (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~edgeworkspaces_edgeworkspacesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~identity_linkedaccountenabled", + "displayName": "Enable the linked account feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~identity_linkedaccountenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~identity_linkedaccountenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~performance_performancedetectorenabled", + "displayName": "Performance Detector Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~performance_performancedetectorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~performance_performancedetectorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled", + "displayName": "Allow users to add and remove their own sites during startup when the RestoreOnStartupURLs policy is configured (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev107~policy~microsoft_edge~startup_restoreonstartupuserurlsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting", + "displayName": "Set the default \"share additional operating system region\" setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting", + "displayName": "'Set the default \"share additional operating system region\" setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting_0", + "displayName": "Limited", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting_1", + "displayName": "Always share the OS Regional format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_defaultshareadditionalosregionsetting_defaultshareadditionalosregionsetting_2", + "displayName": "Never share the OS Regional format", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled", + "displayName": "TLS Encrypted ClientHello Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_encryptedclienthelloenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended", + "displayName": "Set the default \"share additional operating system region\" setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting", + "displayName": "'Set the default \"share additional operating system region\" setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_0", + "displayName": "Limited", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_1", + "displayName": "Always share the OS Regional format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge_recommended_defaultshareadditionalosregionsetting_recommended_defaultshareadditionalosregionsetting_2", + "displayName": "Never share the OS Regional format", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled", + "displayName": "Hide App Launcher on Microsoft Edge new tab page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev108~policy~microsoft_edge~startup_newtabpageapplauncherenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls", + "displayName": "Allow clipboard use on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardallowedforurls_clipboardallowedforurlsdesc", + "displayName": "Allow clipboard use on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls", + "displayName": "Block clipboard use on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_clipboardblockedforurls_clipboardblockedforurlsdesc", + "displayName": "Block clipboard use on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting", + "displayName": "Default clipboard site permission (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting", + "displayName": "Default clipboard site permission (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting_2", + "displayName": "Do not allow any site to use the clipboard site permission", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_defaultclipboardsetting_defaultclipboardsetting_3", + "displayName": "Allow sites to ask the user to grant the clipboard site permission", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled", + "displayName": "Determines whether the Microsoft Root Store and built-in certificate verifier will be used to verify server certificates (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge_microsoftrootstoreenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls", + "displayName": "Allow listed sites to connect to any HID device (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowalldevicesforurls_webhidallowalldevicesforurlsdesc", + "displayName": "Allow listed sites to connect to any HID device (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls", + "displayName": "Allow listed sites connect to specific HID devices (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdevicesforurls_webhidallowdevicesforurls", + "displayName": "Allow listed sites connect to specific HID devices (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls", + "displayName": "Automatically grant permission to these sites to connect to HID devices containing top-level collections with the given HID usage (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev109~policy~microsoft_edge~contentsettings_webhidallowdeviceswithhidusagesforurls_webhidallowdeviceswithhidusagesforurls", + "displayName": "Automatically grant permission to these sites to connect to HID devices containing top-level collections with the given HID usage (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled", + "displayName": "Save and fill memberships (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_autofillmembershipsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended", + "displayName": "Save and fill memberships (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_autofillmembershipsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended", + "displayName": "Search Filters Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended_searchfiltersenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended", + "displayName": "Configure the sticky print preview settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_recommended~printing_recommended_printpreviewstickysettings_recommended_printpreviewstickysettings", + "displayName": "Configure the sticky print preview settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled", + "displayName": "Search Filters Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchfiltersenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled", + "displayName": "Search in Sidebar enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled", + "displayName": "Search in Sidebar enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled_0", + "displayName": "Enable search in sidebar", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled_1", + "displayName": "Disable search in sidebar for Kids Mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge_searchinsidebarenabled_searchinsidebarenabled_2", + "displayName": "Disable search in sidebar", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls", + "displayName": "Allow multiple automatic downloads in quick succession on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsallowedforurls_automaticdownloadsallowedforurlsdesc", + "displayName": "Allow multiple automatic downloads in quick succession on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls", + "displayName": "Block multiple automatic downloads in quick succession on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_automaticdownloadsblockedforurls_automaticdownloadsblockedforurlsdesc", + "displayName": "Block multiple automatic downloads in quick succession on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting", + "displayName": "Default automatic downloads setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting", + "displayName": "Default automatic downloads setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting_1", + "displayName": "Allow all websites to perform automatic downloads", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~contentsettings_defaultautomaticdownloadssetting_defaultautomaticdownloadssetting_2", + "displayName": "Don't allow any website to perform automatic downloads", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings", + "displayName": "Configure navigation settings per groups of URLs in Microsoft Edge Workspaces (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~edgeworkspaces_workspacesnavigationsettings_workspacesnavigationsettings", + "displayName": "Configure navigation settings per groups of URLs in Microsoft Edge Workspaces (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled", + "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereadergrammartoolsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled", + "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~immersivereader_immersivereaderpicturedictionaryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings", + "displayName": "Configure the sticky print preview settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev110~policy~microsoft_edge~printing_printpreviewstickysettings_printpreviewstickysettings", + "displayName": "Configure the sticky print preview settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled", + "displayName": "Clear history for IE and IE mode every time you exit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_internetexplorermodecleardataonexitenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled", + "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_newpdfreaderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended", + "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_recommended_newpdfreaderenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed", + "displayName": "Specifies whether SharedArrayBuffers can be used in a non cross-origin-isolated context (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_sharedarraybufferunrestrictedaccessallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton", + "displayName": "Shows button on native PDF viewer in Microsoft Edge that allows users to sign up for Adobe Acrobat subscription (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev111~policy~microsoft_edge_showacrobatsubscriptionbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled", + "displayName": "Enable CryptoWallet feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_cryptowalletenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled", + "displayName": "Mouse Gesture Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev112~policy~microsoft_edge_mousegestureenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled", + "displayName": "Enable Read Aloud feature in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_readaloudenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview", + "displayName": "Restore PDF view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_restorepdfview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled", + "displayName": "Enable tab organization suggestions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev113~policy~microsoft_edge_tabservicesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled", + "displayName": "Enables default browser settings campaigns (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_defaultbrowsersettingscampaignenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled", + "displayName": "Enable Discover access to page contents for AAD profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_discoverpagecontextenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled", + "displayName": "Determines whether the built-in certificate verifier will enforce constraints encoded into trust anchors loaded from the platform trust store (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_enforcelocalanchorconstraintsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton", + "displayName": "Show Downloads button on the toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_showdownloadstoolbarbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled", + "displayName": "Standalone Sidebar Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev114~policy~microsoft_edge_standalonehubssidebarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled", + "displayName": "Compose is enabled for writing on the web (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_composeinlineenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled", + "displayName": "Manage the indicator UI of the Enhanced Security Mode (ESM) feature in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeindicatoruienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled", + "displayName": "Manage opt-out user experience for Enhanced Security Mode (ESM) in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_enhancesecuritymodeoptoutuxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended", + "displayName": "Wallet Donation Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_recommended_walletdonationenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled", + "displayName": "Search for image enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_searchforimageenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled", + "displayName": "Wallet Donation Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge_walletdonationenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled", + "displayName": "Microsoft Edge management enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken", + "displayName": "Microsoft Edge management enrollment token (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementenrollmenttoken_edgemanagementenrollmenttoken", + "displayName": "Microsoft Edge management enrollment token (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementextensionsfeedbackenabled", + "displayName": "Microsoft Edge management extensions feedback enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementextensionsfeedbackenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev115~policy~microsoft_edge~manageability_edgemanagementextensionsfeedbackenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_recommended~performance_recommended_pinbrowseressentialstoolbarbutton_recommended", + "displayName": "Pin browser essentials toolbar button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_recommended~performance_recommended_pinbrowseressentialstoolbarbutton_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_recommended~performance_recommended_pinbrowseressentialstoolbarbutton_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed", + "displayName": "Allows enabling throttling of non-visible, cross-origin iframes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge_throttlenonvisiblecrossoriginiframesallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting", + "displayName": "Default setting for third-party storage partitioning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_defaultthirdpartystoragepartitioningsetting", + "displayName": "Default setting for third-party storage partitioning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_defaultthirdpartystoragepartitioningsetting_1", + "displayName": "Let third-party storage partitioning to be enabled.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_defaultthirdpartystoragepartitioningsetting_defaultthirdpartystoragepartitioningsetting_2", + "displayName": "Block third-party storage partitioning from being enabled.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins", + "displayName": "Block third-party storage partitioning for these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~contentsettings_thirdpartystoragepartitioningblockedfororigins_thirdpartystoragepartitioningblockedfororiginsdesc", + "displayName": "Block third-party storage partitioning for these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~performance_pinbrowseressentialstoolbarbutton", + "displayName": "Pin browser essentials toolbar button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~performance_pinbrowseressentialstoolbarbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev116~policy~microsoft_edge~performance_pinbrowseressentialstoolbarbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications", + "displayName": "Allows system notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_allowsystemnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled", + "displayName": "Edge Wallet E-Tree Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_edgewalletetreeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed", + "displayName": "Automatically open downloaded MHT or MHTML files from the web in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_internetexplorerintegrationzoneidentifiermhtfileallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended_edgewalletetreeenabled_recommended", + "displayName": "Edge Wallet E-Tree Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended_edgewalletetreeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended_edgewalletetreeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended", + "displayName": "Enable Gamer Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_recommended~edgegames_recommended_gamermodeenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed", + "displayName": "Enable the Search bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup", + "displayName": "Allow the Search bar at Windows startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_searchbarisenabledonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails", + "displayName": "Show thumbnail images for browsing history (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_showhistorythumbnails_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled", + "displayName": "Enable split screen feature in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_splitscreenenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled", + "displayName": "Enable upload files from phone in Microsoft Edge desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge_uploadfromphoneenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled", + "displayName": "Enable Gamer Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev117~policy~microsoft_edge~edgegames_gamermodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled", + "displayName": "Control the behavior for the cancel dialog produced by the beforeunload event (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_beforeunloadeventcancelbypreventdefaultenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient", + "displayName": "Forces Microsoft Edge to use its built-in WNS push client to connect to the Windows Push Notification Service. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcebuiltinpushmessagingclient_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled", + "displayName": "Controls whether unload event handlers can be disabled. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_forcepermissionpolicyunloaddefaultenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled", + "displayName": "Enable Picture in Picture overlay feature on supported webpages in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_pictureinpictureoverlayenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_recommended~passwordmanager_recommended_passworddeleteonbrowsercloseenabled_recommended", + "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_recommended~passwordmanager_recommended_passworddeleteonbrowsercloseenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_recommended~passwordmanager_recommended_passworddeleteonbrowsercloseenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled", + "displayName": "Control the new behavior for event dispatching on disabled form controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge_sendmouseeventsdisabledformcontrolsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled", + "displayName": "Data URL support for SVGUseElement (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~contentsettings_dataurlinsvguseenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled", + "displayName": "Enable compression dictionary transport support (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~network_compressiondictionarytransportenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~passwordmanager_passworddeleteonbrowsercloseenabled", + "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~passwordmanager_passworddeleteonbrowsercloseenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~passwordmanager_passworddeleteonbrowsercloseenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings", + "displayName": "Disable SmartScreen AppRep based warnings for specified file types on specified domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~smartscreen_exemptsmartscreendownloadwarnings_exemptsmartscreendownloadwarnings", + "displayName": "Disable SmartScreen AppRep based warnings for specified file types on specified domains (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagebingchatenabled", + "displayName": "Disable Bing chat entry-points on Microsoft Edge Enterprise new tab page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagebingchatenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagebingchatenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled", + "displayName": "Hide the company logo on the Microsoft Edge new tab page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev118~policy~microsoft_edge~startup_newtabpagecompanylogoenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge_recommended_organizationalbrandingonworkprofileuienabled_recommended", + "displayName": "Allow the use of your organization's branding assets from M365 on the profile-related UI of a work profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge_recommended_organizationalbrandingonworkprofileuienabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge_recommended_organizationalbrandingonworkprofileuienabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile", + "displayName": "Switch intranet sites to a work profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchintranetsitestoworkprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile", + "displayName": "Switch sites on the IE mode site list to a work profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~identity_switchsitesoniemodesitelisttoworkprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy", + "displayName": "Microsoft Edge management service policy overrides platform policy. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementpolicyoverridesplatformpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy", + "displayName": "Allow Microsoft Edge management service user policies to override policies set through an enrollment token. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev119~policy~microsoft_edge~manageability_edgemanagementuserpolicyoverridescloudmachinepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled", + "displayName": "Edge 3P SERP Telemetry Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_edge3pserptelemetryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended", + "displayName": "Edge 3P SERP Telemetry Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_edge3pserptelemetryenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_organizationlogooverlayonappiconenabled_recommended", + "displayName": "Allow your organization's logo from Microsoft Entra to be overlaid on the Microsoft Edge app icon of a work profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_organizationlogooverlayonappiconenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended_organizationlogooverlayonappiconenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended", + "displayName": "Configure the automatic profile switching site list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~identity_recommended_automaticprofileswitchingsitelist_recommended_automaticprofileswitchingsitelist", + "displayName": "Configure the automatic profile switching site list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended", + "displayName": "Configure auto discard sleeping tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_recommended~sleepingtabs_recommended_autodiscardsleepingtabsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings", + "displayName": "Web App management settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge_webappsettings_webappsettings", + "displayName": "Web App management settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist", + "displayName": "Configure the automatic profile switching site list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~identity_automaticprofileswitchingsitelist_automaticprofileswitchingsitelist", + "displayName": "Configure the automatic profile switching site list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled", + "displayName": "Configure auto discard sleeping tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev120~policy~microsoft_edge~sleepingtabs_autodiscardsleepingtabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly", + "displayName": "Force Windows executable Native Messaging hosts to launch directly (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_nativehostsexecutableslaunchdirectly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled", + "displayName": "Enable post-quantum key agreement for TLS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge_postquantumkeyagreementenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery", + "displayName": "Disable DIAL protocol for cast device discovery (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~googlecast_edgedisabledialprotocolforcastdiscovery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled", + "displayName": "Enable Related Website Sets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides", + "displayName": "Override Related Website Sets. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~relatedwebsitesets_relatedwebsitesetsoverrides_relatedwebsitesetsoverrides", + "displayName": "Override Related Website Sets. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride", + "displayName": "Prevent bypassing Edge Website Typo Protection prompts for sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_preventtyposquattingpromptoverride_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains", + "displayName": "Configure the list of domains for which Edge Website Typo Protection won't trigger warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev121~policy~microsoft_edge~typosquattingchecker_typosquattingallowlistdomains_typosquattingallowlistdomainsdesc", + "displayName": "Configure the list of domains for which Edge Website Typo Protection won't trigger warnings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled", + "displayName": "Enables DALL-E themes generation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_aigenthemesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass", + "displayName": "Allow users to bypass Enhanced Security Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_enhancesecuritymodeallowuserbypass_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled", + "displayName": "Super Drag Drop Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_superdragdropenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled", + "displayName": "URL reporting in Edge diagnostic data enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev122~policy~microsoft_edge_urldiagnosticdataenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled", + "displayName": "Check RSA key usage for server certificates issued by local trust anchors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_rsakeyusageforlocalanchorsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins", + "displayName": "Allow screen capture without prior user gesture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge_screencapturewithoutgestureallowedfororigins_screencapturewithoutgestureallowedfororiginsdesc", + "displayName": "Allow screen capture without prior user gesture (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting", + "displayName": "Default Window Management permission setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting", + "displayName": "Default Window Management permission setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting_2", + "displayName": "Denies the Window Management permission on all sites by default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_defaultwindowmanagementsetting_defaultwindowmanagementsetting_3", + "displayName": "Ask every time a site wants obtain the Window Management permission", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls", + "displayName": "Allow Window Management permission on specified sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementallowedforurls_windowmanagementallowedforurlsdesc", + "displayName": "Allow Window Management permission on specified sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls", + "displayName": "Block Window Management permission on specified sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~contentsettings_windowmanagementblockedforurls_windowmanagementblockedforurlsdesc", + "displayName": "Block Window Management permission on specified sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist", + "displayName": "Blocklist for extension install types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensioninstalltypeblocklist_extensioninstalltypeblocklistdesc", + "displayName": "Blocklist for extension install types (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability", + "displayName": "Control Manifest v2 extension availability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability", + "displayName": "Control Manifest v2 extension availability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_0", + "displayName": "Default browser behavior", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_1", + "displayName": "Manifest v2 is disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_2", + "displayName": "Manifest v2 is enabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev123~policy~microsoft_edge~extensions_extensionmanifestv2availability_extensionmanifestv2availability_3", + "displayName": "Manifest v2 is enabled for forced extensions only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext", + "displayName": "Control Copilot with Commerical Data Protection access to browser context for Microsoft Entra ID profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotcdppagecontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext", + "displayName": "Control Copilot access to browser context for Microsoft Entra ID profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_copilotpagecontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled", + "displayName": "Enable deprecated/removed Mutation Events (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev124~policy~microsoft_edge_mutationeventsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled", + "displayName": "Enable the Designer for Image Editor feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_imageeditorserviceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled", + "displayName": "Enable QR Code Generator (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge_qrcodegeneratorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled", + "displayName": "Enable zstd content encoding support (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev125~policy~microsoft_edge~network_zstdcontentencodingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive", + "displayName": "Keep the active Microsoft Edge window with an Internet Explorer mode tab always in the foreground. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge_internetexplorersetforegroundwhenactive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled", + "displayName": "Enable proactive authentication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev126~policy~microsoft_edge~identity_proactiveauthworkflowenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled", + "displayName": "Controls whether the deprecated :--foo syntax for CSS custom state is enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_csscustomstatedeprecatedsyntaxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist", + "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev127~policy~microsoft_edge_edgesidebarappurlhostblocklist_edgesidebarappurlhostblocklistdesc", + "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128.1~policy~microsoft_edge_applicationboundencryptionenabled", + "displayName": "Enable Application Bound Encryption (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128.1~policy~microsoft_edge_applicationboundencryptionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128.1~policy~microsoft_edge_applicationboundencryptionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings", + "displayName": "Dynamic Code Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings", + "displayName": "Dynamic Code Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings_0", + "displayName": "Default dynamic code settings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_dynamiccodesettings_dynamiccodesettings_1", + "displayName": "Prevent the browser process from creating dynamic code", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled", + "displayName": "Enable open in sidebar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgeopeninsidebarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled", + "displayName": "Enable sidebar customize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_edgesidebarcustomizeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled", + "displayName": "Enable keyboard focusable scrollers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_keyboardfocusablescrollersenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended", + "displayName": "Enable insecure download warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge_recommended~downloads_recommended_showdownloadsinsecurewarningsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled", + "displayName": "Enable insecure download warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~downloads_showdownloadsinsecurewarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings", + "displayName": "Control the availability of developer mode on extensions page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings", + "displayName": "Control the availability of developer mode on extensions page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings_0", + "displayName": "Allow the usage of developer mode on extensions page", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensiondevelopermodesettings_extensiondevelopermodesettings_1", + "displayName": "Do not allow the usage of developer mode on extensions page", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls", + "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev128~policy~microsoft_edge~extensions_extensionextendedbackgroundlifetimeforportconnectionstourls_extensionextendedbackgroundlifetimeforportconnectionstourlsdesc", + "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended", + "displayName": "Action to take on Microsoft Edge startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup", + "displayName": "Action to take on Microsoft Edge startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_5", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge_recommended~startup_recommended_restoreonstartup_recommended_restoreonstartup_6", + "displayName": "Open a list of URLs and restore the last session", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup", + "displayName": "Action to take on Microsoft Edge startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup", + "displayName": "Action to take on Microsoft Edge startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_5", + "displayName": "Open a new tab", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_1", + "displayName": "Restore the last session", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_4", + "displayName": "Open a list of URLs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev77.3~policy~microsoft_edge~startup_restoreonstartup_restoreonstartup_6", + "displayName": "Open a list of URLs and restore the last session", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites", + "displayName": "Ads setting for sites with intrusive ads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites_1", + "displayName": "Allow ads on all sites", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_adssettingforintrusiveadssites_adssettingforintrusiveadssites_2", + "displayName": "Block ads on sites with intrusive ads. (Default value)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload", + "displayName": "Allows a page to show popups during its unloading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowpopupsduringpageunload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowtrackingforurls", + "displayName": "Configure tracking prevention exceptions for specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowtrackingforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowtrackingforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_allowtrackingforurls_allowtrackingforurlsdesc", + "displayName": "Configure tracking prevention exceptions for specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_autoplayallowed", + "displayName": "Allow media autoplay for websites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_autoplayallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_autoplayallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit", + "displayName": "Clear browsing data when Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clearbrowsingdataonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clickonceenabled", + "displayName": "Allow users to open files using the ClickOnce protocol (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clickonceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_clickonceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled", + "displayName": "Enable security warnings for command-line flags (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_commandlineflagsecuritywarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_directinvokeenabled", + "displayName": "Allow users to open files using the DirectInvoke protocol (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_directinvokeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_directinvokeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_edgecollectionsenabled", + "displayName": "Enable the Collections feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_edgecollectionsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_edgecollectionsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled", + "displayName": "Allow managed extensions to use the Enterprise Hardware Platform API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_enterprisehardwareplatformapienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_forcenetworkinprocess", + "displayName": "Force networking code to run in the browser process (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_forcenetworkinprocess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_forcenetworkinprocess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar", + "displayName": "Force direct intranet site navigation instead of searching on single word entries in the Address Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_gotointranetsiteforsinglewordentryinaddressbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_importbrowsersettings", + "displayName": "Allow importing of browser settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_importbrowsersettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_importbrowsersettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist", + "displayName": "Configure the Enterprise Mode Site List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_internetexplorerintegrationsitelist_internetexplorerintegrationsitelist", + "displayName": "Configure the Enterprise Mode Site List (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled", + "displayName": "Configure whether a user always has a default profile automatically signed in with their work or school account (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_nonremovableprofileenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended", + "displayName": "Clear browsing data when Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_clearbrowsingdataonexit_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended", + "displayName": "Allow importing of browser settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended_importbrowsersettings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenfortrusteddownloadsenabled_recommended", + "displayName": "Force Microsoft Defender SmartScreen checks on downloads from trusted sources (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenfortrusteddownloadsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenfortrusteddownloadsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled", + "displayName": "Enable renderer code integrity (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_renderercodeintegrityenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled", + "displayName": "Enable Signed HTTP Exchange (SXG) support (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_signedhttpexchangeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist", + "displayName": "Force disable spellcheck languages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_spellchecklanguageblocklist_spellchecklanguageblocklistdesc", + "displayName": "Force disable spellcheck languages (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention", + "displayName": "Block tracking of users' web-browsing activity (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention", + "displayName": "Block tracking of users' web-browsing activity (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_0", + "displayName": "Off (no tracking prevention)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_1", + "displayName": "Basic (blocks harmful trackers, content and ads will be personalized)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_2", + "displayName": "Balanced (blocks harmful trackers and trackers from sites user has not visited; content and ads will be less personalized)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge_trackingprevention_trackingprevention_3", + "displayName": "Strict (blocks harmful trackers and majority of trackers from all sites; content and ads will have minimal personalization. Some parts of sites might not work)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled", + "displayName": "Force Microsoft Defender SmartScreen checks on downloads from trusted sources (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev78diff~policy~microsoft_edge~smartscreen_smartscreenfortrusteddownloadsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal", + "displayName": "Allow pages to send synchronous XHR requests during page dismissal (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_allowsyncxhrinpagedismissal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_backgroundtemplatelistupdatesenabled", + "displayName": "Enables background updates to the list of available templates for Collections and other features that use templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_backgroundtemplatelistupdatesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_backgroundtemplatelistupdatesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink", + "displayName": "Specify custom help link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_customhelplink_customhelplink", + "displayName": "Specify custom help link (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_externalprotocoldialogshowalwaysopencheckbox", + "displayName": "Show an \"Always open\" checkbox in external protocol dialog (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_externalprotocoldialogshowalwaysopencheckbox_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_externalprotocoldialogshowalwaysopencheckbox_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist", + "displayName": "Configure the list of names that will bypass the HSTS policy check (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_hstspolicybypasslist_hstspolicybypasslistdesc", + "displayName": "Configure the list of names that will bypass the HSTS policy check (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_importopentabs", + "displayName": "Allow importing of open tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_importopentabs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_importopentabs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended", + "displayName": "Allow importing of open tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended_importopentabs_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended", + "displayName": "Set new tab page quick links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagemanagedquicklinks_recommended_newtabpagemanagedquicklinks", + "displayName": "Set new tab page quick links (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended", + "displayName": "Configure the Microsoft Edge new tab page experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype", + "displayName": "New tab page experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype_0", + "displayName": "Microsoft News feed experience", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_recommended~startup_recommended_newtabpagesetfeedtype_recommended_newtabpagesetfeedtype_1", + "displayName": "Office 365 feed experience", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_tabfreezingenabled", + "displayName": "Allow freezing of background tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_tabfreezingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge_tabfreezingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo", + "displayName": "Set new tab page company logo (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagecompanylogo_newtabpagecompanylogo", + "displayName": "New tab page company logo (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks", + "displayName": "Set new tab page quick links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagemanagedquicklinks_newtabpagemanagedquicklinks", + "displayName": "Set new tab page quick links (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype", + "displayName": "Configure the Microsoft Edge new tab page experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_newtabpagesetfeedtype", + "displayName": "New tab page experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_newtabpagesetfeedtype_0", + "displayName": "Microsoft News feed experience", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev79diff~policy~microsoft_edge~startup_newtabpagesetfeedtype_newtabpagesetfeedtype_1", + "displayName": "Office 365 feed experience", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled", + "displayName": "Suggest similar pages when a webpage can’t be found (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_alternateerrorpagesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled", + "displayName": "DNS interception checks enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_dnsinterceptionchecksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience", + "displayName": "Hide the First-run experience and splash screen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_hidefirstrunexperience_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled", + "displayName": "Allow websites to query for available payment methods (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_paymentmethodqueryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled", + "displayName": "Allow personalization of ads, search and news by sending browsing history to Microsoft (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_personalizationreportingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_pinningwizardallowed", + "displayName": "Allow Pin to taskbar wizard (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_pinningwizardallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_pinningwizardallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended_alternateerrorpagesenabled_recommended", + "displayName": "Suggest similar pages when a webpage can’t be found (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended_alternateerrorpagesenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended_alternateerrorpagesenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenpuaenabled_recommended", + "displayName": "Configure Microsoft Defender SmartScreen to block potentially unwanted apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenpuaenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreenpuaenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb", + "displayName": "Set limit on megabytes of memory a single Microsoft Edge instance can use. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_totalmemorylimitmb_totalmemorylimitmb", + "displayName": "Set memory limit for Microsoft Edge instances: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist", + "displayName": "Configure list of force-installed Web Apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webappinstallforcelist_webappinstallforcelist", + "displayName": "URLs for Web Apps to be silently installed. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webcomponentsv0enabled", + "displayName": "Re-enable Web Components v0 API until M84. (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webcomponentsv0enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webcomponentsv0enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls", + "displayName": "Manage exposure of local IP addressess by WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge_webrtclocalipsallowedurls_webrtclocalipsallowedurlsdesc", + "displayName": "Manage exposure of local IP addressess by WebRTC (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting", + "displayName": "Control use of insecure content exceptions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_2", + "displayName": "Do not allow any site to load blockable mixed content", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_defaultinsecurecontentsetting_defaultinsecurecontentsetting_3", + "displayName": "Allow users to add exceptions to allow blockable mixed content", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls", + "displayName": "Allow insecure content on specified sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentallowedforurls_insecurecontentallowedforurlsdesc", + "displayName": "Allow insecure content on specified sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls", + "displayName": "Block insecure content on specified sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_insecurecontentblockedforurls_insecurecontentblockedforurlsdesc", + "displayName": "Block insecure content on specified sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled", + "displayName": "Enable default legacy SameSite cookie behavior setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled", + "displayName": "Enable default legacy SameSite cookie behavior setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_1", + "displayName": "Revert to legacy SameSite behavior for cookies on all sites", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabled_legacysamesitecookiebehaviorenabled_2", + "displayName": "Use SameSite-by-default behavior for cookies on all sites", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist", + "displayName": "Revert to legacy SameSite behavior for cookies on specified sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~contentsettings_legacysamesitecookiebehaviorenabledfordomainlist_legacysamesitecookiebehaviorenabledfordomainlistdesc", + "displayName": "Revert to legacy SameSite behavior for cookies on specified sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled", + "displayName": "Configure Microsoft Defender SmartScreen to block potentially unwanted apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev80diff~policy~microsoft_edge~smartscreen_smartscreenpuaenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_addressbarmicrosoftsearchinbingproviderenabled", + "displayName": "Enable Microsoft Search in Bing suggestions in the address bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_addressbarmicrosoftsearchinbingproviderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_addressbarmicrosoftsearchinbingproviderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for InPrivate and Guest profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled", + "displayName": "Enable Ambient Authentication for InPrivate and Guest profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_0", + "displayName": "Enable ambient authentication in regular sessions only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_1", + "displayName": "Enable ambient authentication in InPrivate and regular sessions", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_2", + "displayName": "Enable ambient authentication in guest and regular sessions", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_ambientauthenticationinprivatemodesenabled_ambientauthenticationinprivatemodesenabled_3", + "displayName": "Enable ambient authentication in regular, InPrivate and guest sessions", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_audiosandboxenabled", + "displayName": "Allow the audio sandbox to run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_audiosandboxenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_audiosandboxenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin", + "displayName": "Configure automatic sign in with an Active Directory domain account when there is no Azure AD domain account (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_configureonpremisesaccountautosignin", + "displayName": "Configure automatic sign in with an Active Directory domain account when there is no Azure AD domain account (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_configureonpremisesaccountautosignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_configureonpremisesaccountautosignin_configureonpremisesaccountautosignin_1", + "displayName": "Sign in and make domain account non-removable", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy", + "displayName": "Use a default referrer policy of no-referrer-when-downgrade. (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_forcelegacydefaultreferrerpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled", + "displayName": "Enable globally scoped HTTP auth cache (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_globallyscopehttpauthcacheenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importcookies", + "displayName": "Allow importing of Cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importcookies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importcookies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importextensions", + "displayName": "Allow importing of extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importshortcuts", + "displayName": "Allow importing of shortcuts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importshortcuts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_importshortcuts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect", + "displayName": "Specify how \"in-page\" navigations to unconfigured sites behave when started from Internet Explorer mode pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_internetexplorerintegrationsiteredirect", + "displayName": "Specify how \"in-page\" navigations to unconfigured sites behave when started from Internet Explorer mode pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_internetexplorerintegrationsiteredirect_0", + "displayName": "Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_internetexplorerintegrationsiteredirect_1", + "displayName": "Keep only automatic navigations in Internet Explorer mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_internetexplorerintegrationsiteredirect_internetexplorerintegrationsiteredirect_2", + "displayName": "Keep all in-page navigations in Internet Explorer mode", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended", + "displayName": "Allow importing of Cookies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importcookies_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended", + "displayName": "Allow importing of extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importextensions_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended", + "displayName": "Allow importing of shortcuts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_recommended_importshortcuts_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled", + "displayName": "Enable stricter treatment for mixed content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_strictermixedcontenttreatmentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_tls13hardeningforlocalanchorsenabled", + "displayName": "Enable a TLS 1.3 security feature for local trust anchors. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_tls13hardeningforlocalanchorsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81diff~policy~microsoft_edge_tls13hardeningforlocalanchorsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81identitydiff~policy~microsoft_edge_forcecertificatepromptsonmultiplematches", + "displayName": "Configure whether Microsoft Edge should automatically select a certificate when there are multiple certificate matches for a site configured with \"AutoSelectCertificateForUrls\" (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81identitydiff~policy~microsoft_edge_forcecertificatepromptsonmultiplematches_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev81identitydiff~policy~microsoft_edge_forcecertificatepromptsonmultiplematches_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowsurfgame", + "displayName": "Allow surf game (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowsurfgame_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowsurfgame_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls", + "displayName": "Configure the list of sites for which Microsoft Edge will attempt to establish a Token Binding with. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_allowtokenbindingforurls_allowtokenbindingforurlsdesc", + "displayName": "Configure the list of sites for which Microsoft Edge will attempt to establish a Token Binding with. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_bingadssuppression", + "displayName": "Block all ads on Bing search results (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_bingadssuppression_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_bingadssuppression_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit", + "displayName": "Clear cached images and files when Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_clearcachedimagesandfilesonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare", + "displayName": "Configure the Share experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_configureshare", + "displayName": "Configure the Share experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_configureshare_0", + "displayName": "Allow using the Share experience", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_configureshare_configureshare_1", + "displayName": "Don't allow using the Share experience", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_deletedataonmigration", + "displayName": "Delete old browser data on migration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_deletedataonmigration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_deletedataonmigration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode", + "displayName": "Control the mode of DNS-over-HTTPS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode", + "displayName": "Control the mode of DNS-over-HTTPS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode_off", + "displayName": "Disable DNS-over-HTTPS", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode_automatic", + "displayName": "Enable DNS-over-HTTPS with insecure fallback", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpsmode_dnsoverhttpsmode_secure", + "displayName": "Enable DNS-over-HTTPS without insecure fallback", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_dnsoverhttpstemplates_dnsoverhttpstemplates", + "displayName": "Specify URI template of desired DNS-over-HTTPS resolver (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled", + "displayName": "Allow users to configure Family safety (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_familysafetysettingsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_localprovidersenabled", + "displayName": "Allow suggestions from local providers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_localprovidersenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_localprovidersenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended", + "displayName": "Clear cached images and files when Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_clearcachedimagesandfilesonexit_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_localprovidersenabled_recommended", + "displayName": "Allow suggestions from local providers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_localprovidersenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_recommended_localprovidersenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_screencaptureallowed", + "displayName": "Allow or deny screen capture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_screencaptureallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_screencaptureallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled", + "displayName": "Enable scrolling to text specified in URL fragments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_scrolltotextfragmentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled", + "displayName": "Configure the list of types that are excluded from synchronization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev83diff~policy~microsoft_edge_synctypeslistdisabled_synctypeslistdisableddesc", + "displayName": "Configure the list of types that are excluded from synchronization (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_appcacheforceenabled", + "displayName": "Allows the AppCache feature to be re-enabled, even if it's turned off by default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_appcacheforceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_appcacheforceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload", + "displayName": "Require that the Enterprise Mode Site List is available before tab navigation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload", + "displayName": "Require that the Enterprise Mode Site List is available before tab navigation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload_0", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_delaynavigationsforinitialsitelistdownload_delaynavigationsforinitialsitelistdownload_1", + "displayName": "All eligible navigations", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection", + "displayName": "Configure enhanced hang detection for Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_internetexplorerintegrationenhancedhangdetection", + "displayName": "Configure enhanced hang detection for Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_internetexplorerintegrationenhancedhangdetection_0", + "displayName": "Enhanced hang detection disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_internetexplorerintegrationenhancedhangdetection_internetexplorerintegrationenhancedhangdetection_1", + "displayName": "Enhanced hang detection enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled", + "displayName": "Enable Hiding of Native Windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_nativewindowocclusionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout", + "displayName": "Set a timeout for delay of tab navigation for the Enterprise Mode Site List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_navigationdelayforinitialsitelistdownloadtimeout_navigationdelayforinitialsitelistdownloadtimeout", + "displayName": "Set a timeout for delay of tab navigation for the Enterprise Mode Site List: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended", + "displayName": "Manage Search Engines (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended_managedsearchengines_recommended_managedsearchengines", + "displayName": "Manage Search Engines (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended", + "displayName": "Enable the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended", + "displayName": "Default search provider encodings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderencodings_recommended_defaultsearchproviderencodingsdesc", + "displayName": "Default search provider encodings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended", + "displayName": "Specifies the search-by-image feature for the default search provider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurl_recommended_defaultsearchproviderimageurl", + "displayName": "Specifies the search-by-image feature for the default search provider (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended", + "displayName": "Parameters for an image URL that uses POST (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderimageurlpostparams_recommended_defaultsearchproviderimageurlpostparams", + "displayName": "Parameters for an image URL that uses POST (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended", + "displayName": "Default search provider keyword (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchproviderkeyword_recommended_defaultsearchproviderkeyword", + "displayName": "Default search provider keyword (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended", + "displayName": "Default search provider name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidername_recommended_defaultsearchprovidername", + "displayName": "Default search provider name (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended", + "displayName": "Default search provider search URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersearchurl_recommended_defaultsearchprovidersearchurl", + "displayName": "Default search provider search URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended", + "displayName": "Default search provider URL for suggestions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_defaultsearchprovidersuggesturl_recommended_defaultsearchprovidersuggesturl", + "displayName": "Default search provider URL for suggestions (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_winhttpproxyresolverenabled", + "displayName": "Use Windows proxy resolver (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_winhttpproxyresolverenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge_winhttpproxyresolverenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy", + "displayName": "Application Guard Container Proxy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev84diff~policy~microsoft_edge~applicationguard_applicationguardcontainerproxy_applicationguardcontainerproxy", + "displayName": "Application Guard Container Proxy (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autolaunchprotocolsfromorigins_autolaunchprotocolsfromorigins", + "displayName": "Define a list of protocols that can launch an external application from listed origins without prompting the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls", + "displayName": "URLs where AutoOpenFileTypes can apply (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenallowedforurls_autoopenallowedforurlsdesc", + "displayName": "URLs where AutoOpenFileTypes can apply (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes", + "displayName": "List of file types that should be automatically opened on download (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_autoopenfiletypes_autoopenfiletypesdesc", + "displayName": "List of file types that should be automatically opened on download (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_defaultsearchprovidercontextmenuaccessallowed", + "displayName": "Allow default search provider context menu search access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_defaultsearchprovidercontextmenuaccessallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_defaultsearchprovidercontextmenuaccessallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_enablesha1forlocalanchors", + "displayName": "Allow certificates signed using SHA-1 when issued by local trust anchors (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_enablesha1forlocalanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_enablesha1forlocalanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings", + "displayName": "Disable download file type extension-based warnings for specified file types on domains (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_exemptdomainfiletypepairsfromfiletypedownloadwarnings_exemptdomainfiletypepairsfromfiletypedownloadwarningsdesc", + "displayName": "Disable download file type extension-based warnings for specified file types on domains (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_intensivewakeupthrottlingenabled", + "displayName": "Control the IntensiveWakeUpThrottling feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_intensivewakeupthrottlingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_intensivewakeupthrottlingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended", + "displayName": "Configure the new tab page search box experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_newtabpagesearchbox", + "displayName": "New tab page search box experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_newtabpagesearchbox_bing", + "displayName": "Search box (Recommended)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~defaultsearchprovider_recommended_newtabpagesearchbox_recommended_newtabpagesearchbox_redirect", + "displayName": "Address bar", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmonitorallowed_recommended", + "displayName": "Allow users to be alerted if their passwords are found to be unsafe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmonitorallowed_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordmonitorallowed_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~startup_recommended_newtabpageprerenderenabled_recommended", + "displayName": "Enable preload of the new tab page for faster rendering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~startup_recommended_newtabpageprerenderenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_recommended~startup_recommended_newtabpageprerenderenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation", + "displayName": "Set the roaming profile directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilelocation_roamingprofilelocation", + "displayName": "Set the roaming profile directory (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilesupportenabled", + "displayName": "Enable using roaming copies for Microsoft Edge profile data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilesupportenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_roamingprofilesupportenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist", + "displayName": "Specify the TLS cipher suites to disable (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge_tlsciphersuitedenylist_tlsciphersuitedenylistdesc", + "displayName": "Specify the TLS cipher suites to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox", + "displayName": "Configure the new tab page search box experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox", + "displayName": "New tab page search box experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox_bing", + "displayName": "Search box (Recommended)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~defaultsearchprovider_newtabpagesearchbox_newtabpagesearchbox_redirect", + "displayName": "Address bar", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed", + "displayName": "Allow users to be alerted if their passwords are found to be unsafe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~passwordmanager_passwordmonitorallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~startup_newtabpageprerenderenabled", + "displayName": "Enable preload of the new tab page for faster rendering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~startup_newtabpageprerenderenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev85diff~policy~microsoft_edge~startup_newtabpageprerenderenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist", + "displayName": "Block access to a specified list of services and export targets in Collections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_collectionsservicesandexportsblocklist_collectionsservicesandexportsblocklistdesc", + "displayName": "Block access to a specified list of services and export targets in Collections (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting", + "displayName": "Default sensors setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting", + "displayName": "Default sensors setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting_1", + "displayName": "Allow sites to access sensors", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultsensorssetting_defaultsensorssetting_2", + "displayName": "Do not allow any site to access sensors", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting", + "displayName": "Control use of the Serial API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_defaultserialguardsetting", + "displayName": "Control use of the Serial API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_defaultserialguardsetting_2", + "displayName": "Do not allow any site to request access to serial ports via the Serial API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_defaultserialguardsetting_defaultserialguardsetting_3", + "displayName": "Allow sites to ask for user permission to access a serial port", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata", + "displayName": "Send required and optional diagnostic data about browser usage (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata", + "displayName": "Send required and optional diagnostic data about browser usage (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata_0", + "displayName": "Off (Not recommended)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata_1", + "displayName": "Required data", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_diagnosticdata_diagnosticdata_2", + "displayName": "Optional data", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed", + "displayName": "Allow access to the Enterprise Mode Site List Manager tool (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_enterprisemodesitelistmanagerallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync", + "displayName": "Force synchronization of browser data and do not show the sync consent prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_forcesync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_insecureformswarningsenabled", + "displayName": "Enable warnings for insecure forms (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_insecureformswarningsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_insecureformswarningsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed", + "displayName": "Allow Internet Explorer mode testing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_internetexplorerintegrationtestingallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit", + "displayName": "Save cookies when Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_savecookiesonexit_savecookiesonexitdesc", + "displayName": "Save cookies when Microsoft Edge closes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsallowedforurls", + "displayName": "Allow access to sensors on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsallowedforurls_sensorsallowedforurlsdesc", + "displayName": "Allow access to sensors on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls", + "displayName": "Block access to sensors on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_sensorsblockedforurls_sensorsblockedforurlsdesc", + "displayName": "Block access to sensors on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls", + "displayName": "Allow the Serial API on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialaskforurls_serialaskforurlsdesc", + "displayName": "Allow the Serial API on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls", + "displayName": "Block the Serial API on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_serialblockedforurls_serialblockedforurlsdesc", + "displayName": "Block the Serial API on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_useragentclienthintsenabled", + "displayName": "Enable the User-Agent Client Hints feature (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_useragentclienthintsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_useragentclienthintsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit", + "displayName": "Limits the number of user data snapshots retained for use in case of emergency rollback (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge_userdatasnapshotretentionlimit_userdatasnapshotretentionlimit", + "displayName": "Limits the number of user data snapshots retained for use in case of emergency rollback: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting", + "displayName": "Control use of the File System API for reading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting_2", + "displayName": "Don't allow any site to request read access to files and directories via the File System API", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemreadguardsetting_defaultfilesystemreadguardsetting_3", + "displayName": "Allow sites to ask the user to grant read access to files and directories via the File System API", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting", + "displayName": "Control use of the File System API for writing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_2", + "displayName": "Don't allow any site to request write access to files and directories", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_defaultfilesystemwriteguardsetting_defaultfilesystemwriteguardsetting_3", + "displayName": "Allow sites to ask the user to grant write access to files and directories", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls", + "displayName": "Allow read access via the File System API on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadaskforurls_filesystemreadaskforurlsdesc", + "displayName": "Allow read access via the File System API on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls", + "displayName": "Block read access via the File System API on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemreadblockedforurls_filesystemreadblockedforurlsdesc", + "displayName": "Block read access via the File System API on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls", + "displayName": "Allow write access to files and directories on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteaskforurls_filesystemwriteaskforurlsdesc", + "displayName": "Allow write access to files and directories on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls", + "displayName": "Block write access to files and directories on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_filesystemwriteblockedforurls_filesystemwriteblockedforurlsdesc", + "displayName": "Block write access to files and directories on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_spotlightexperiencesandrecommendationsenabled", + "displayName": "Choose whether users can receive customized background images and text, suggestions, notifications,\r\nand tips for Microsoft services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_spotlightexperiencesandrecommendationsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~contentsettings_spotlightexperiencesandrecommendationsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes", + "displayName": "Configure the background types allowed for the new tab page layout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes", + "displayName": "New tab page experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes_1", + "displayName": "Disable daily background image type", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes_2", + "displayName": "Disable custom background image type", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev86~policy~microsoft_edge~startup_newtabpageallowedbackgroundtypes_newtabpageallowedbackgroundtypes_3", + "displayName": "Disable all background image types", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat", + "displayName": "Configure the default paste format of URLs copied from Microsoft Edge, and determine if additional formats will be available to users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat_1", + "displayName": "The plain URL without any extra information, such as the page's title. This is the recommended option when this policy is configured. For more information, see the description.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat_3", + "displayName": "Titled Hyperlink: A hyperlink that points to the copied URL, but whose visible text is the title of the destination page. This is the Friendly URL format.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_configurefriendlyurlformat_configurefriendlyurlformat_4", + "displayName": "Coming soon. If set, behaves the same as 'Plain URL'.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled", + "displayName": "Shopping in Microsoft Edge Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_edgeshoppingassistantenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled", + "displayName": "Hide the one-time redirection dialog and the banner on Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_hideinternetexplorerredirectuxforincompatiblesitesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended", + "displayName": "Shopping in Microsoft Edge Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_edgeshoppingassistantenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended", + "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode", + "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode_0", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended_redirectsitesfrominternetexplorerredirectmode_recommended_redirectsitesfrominternetexplorerredirectmode_1", + "displayName": "Redirect sites based on the incompatible sites sitelist", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended", + "displayName": "Enable Password reveal button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_recommended~passwordmanager_recommended_passwordrevealenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerpreventbhoinstall", + "displayName": "Prevent install of the BHO to redirect incompatible sites from Internet Explorer to Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerpreventbhoinstall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerpreventbhoinstall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode", + "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode", + "displayName": "Redirect incompatible sites from Internet Explorer to Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode_0", + "displayName": "Disable", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_redirectsitesfrominternetexplorerredirectmode_redirectsitesfrominternetexplorerredirectmode_1", + "displayName": "Redirect sites based on the incompatible sites sitelist", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_speechrecognitionenabled", + "displayName": "Configure Speech Recognition (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_speechrecognitionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_speechrecognitionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_webcaptureenabled", + "displayName": "Enable web capture feature in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_webcaptureenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge_webcaptureenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskaddressbareditingenabled", + "displayName": "Configure address bar editing for kiosk mode public browsing experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskaddressbareditingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskaddressbareditingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit", + "displayName": "Delete files downloaded as part of kiosk session when Microsoft Edge closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~kioskmode_kioskdeletedownloadsonexit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault", + "displayName": "Default printing page size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev87~policy~microsoft_edge~printing_printingpapersizedefault_printingpapersizedefault", + "displayName": "Default printing page size (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended", + "displayName": "Set the background tab inactivity timeout for sleeping tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for sleeping tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_30", + "displayName": "30 seconds of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_300", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_900", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_1800", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_3600", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_7200", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_10800", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_21600", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_43200", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for sleeping tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for sleeping tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_30", + "displayName": "30 seconds of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_300", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_900", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_1800", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_3600", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_7200", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_10800", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_21600", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88.1~policy~microsoft_edge_sleepingtabstimeout_sleepingtabstimeout_43200", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed", + "displayName": "Allow launching of local files in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist", + "displayName": "Open local files in Internet Explorer mode file extension allow list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileextensionallowlist_internetexplorerintegrationlocalfileextensionallowlistdesc", + "displayName": "Open local files in Internet Explorer mode file extension allow list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileshowcontextmenu", + "displayName": "Show context menu to open a link in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileshowcontextmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_internetexplorerintegrationlocalfileshowcontextmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior", + "displayName": "Intranet Redirection Behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_0", + "displayName": "Use default browser behavior.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_1", + "displayName": "Disable DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_2", + "displayName": "Disable DNS interception checks; allow did-you-mean \"http://intranetsite/\" infobars.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_intranetredirectbehavior_intranetredirectbehavior_3", + "displayName": "Allow DNS interception checks and did-you-mean \"http://intranetsite/\" infobars.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended", + "displayName": "Show Microsoft Rewards experiences (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended_showmicrosoftrewards_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended", + "displayName": "Enable startup boost (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~performance_recommended_startupboostenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended", + "displayName": "Block Sleeping Tabs on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsblockedforurls_recommended_sleepingtabsblockedforurlsdesc", + "displayName": "Block Sleeping Tabs on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended", + "displayName": "Configure Sleeping Tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_300", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_900", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_1800", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_3600", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_7200", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_10800", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_21600", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_recommended~sleepingtabs_recommended_sleepingtabstimeout_recommended_sleepingtabstimeout_43200", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards", + "displayName": "Show Microsoft Rewards experiences (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_showmicrosoftrewards_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_verticaltabsallowed", + "displayName": "Configures availability of a vertical layout for tabs on the side of the browser (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_verticaltabsallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_verticaltabsallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webrtcallowlegacytlsprotocols", + "displayName": "Allow legacy TLS/DTLS downgrade in WebRTC (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webrtcallowlegacytlsprotocols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webrtcallowlegacytlsprotocols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetallowed", + "displayName": "Enable the Web widget (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup", + "displayName": "Allow the Web widget at Windows startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge_webwidgetisenabledonstartup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~extensions_blockexternalextensions", + "displayName": "Blocks external extensions from being installed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~extensions_blockexternalextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~extensions_blockexternalextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~performance_startupboostenabled", + "displayName": "Enable startup boost (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~performance_startupboostenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~performance_startupboostenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~printing_printertypedenylist", + "displayName": "Disable printer types on the deny list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~printing_printertypedenylist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~printing_printertypedenylist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~printing_printertypedenylist_printertypedenylistdesc", + "displayName": "Disable printer types on the deny list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls", + "displayName": "Block Sleeping Tabs on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsblockedforurls_sleepingtabsblockedforurlsdesc", + "displayName": "Block Sleeping Tabs on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled", + "displayName": "Configure Sleeping Tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout", + "displayName": "Set the background tab inactivity timeout for Sleeping Tabs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_300", + "displayName": "5 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_900", + "displayName": "15 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_1800", + "displayName": "30 minutes of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_3600", + "displayName": "1 hour of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_7200", + "displayName": "2 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_10800", + "displayName": "3 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_21600", + "displayName": "6 hours of inactivity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev88~policy~microsoft_edge~sleepingtabs_sleepingtabstimeout_sleepingtabstimeout_43200", + "displayName": "12 hours of inactivity", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_browsingdatalifetime_browsingdatalifetime", + "displayName": "Browsing Data Lifetime Settings (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_definepreferredlanguages", + "displayName": "Define an ordered list of preferred languages that websites should display in if the site supports the language (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_definepreferredlanguages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_definepreferredlanguages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_definepreferredlanguages_definepreferredlanguages", + "displayName": "Define an ordered list of preferred languages that websites should display in if the site supports the language (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended", + "displayName": "Block smart actions for a list of services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_recommended_smartactionsblocklist_recommended_smartactionsblocklistdesc", + "displayName": "Block smart actions for a list of services (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_showrecommendationsenabled", + "displayName": "Allow feature recommendations and browser assistance notifications from Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_showrecommendationsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_showrecommendationsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_smartactionsblocklist", + "displayName": "Block smart actions for a list of services (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_smartactionsblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_smartactionsblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge_smartactionsblocklist_smartactionsblocklistdesc", + "displayName": "Block smart actions for a list of services (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~manageability_mamenabled", + "displayName": "Mobile App Management Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~manageability_mamenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~manageability_mamenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes", + "displayName": "Restrict background graphics printing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_any", + "displayName": "Allow printing with and without background graphics", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_enabled", + "displayName": "Allow printing only with background graphics", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingallowedbackgroundgraphicsmodes_printingallowedbackgroundgraphicsmodes_disabled", + "displayName": "Allow printing only without background graphics", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault", + "displayName": "Default background graphics printing mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_enabled", + "displayName": "Enable background graphics printing mode by default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev89~policy~microsoft_edge~printing_printingbackgroundgraphicsdefault_printingbackgroundgraphicsdefault_disabled", + "displayName": "Disable background graphics printing mode by default", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on shutdown (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_fetchkeepalivedurationsecondsonshutdown_fetchkeepalivedurationsecondsonshutdown", + "displayName": "Fetch keepalive duration on shutdown: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin", + "displayName": "Sets managed configuration values for websites to specific origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_managedconfigurationperorigin_managedconfigurationperorigin", + "displayName": "Sets managed configuration values for websites to specific origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_quickviewofficefilesenabled", + "displayName": "Manage QuickView Office files capability in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_quickviewofficefilesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_quickviewofficefilesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_recommended~httpauthentication_recommended_windowshelloforhttpauthenabled_recommended", + "displayName": "Windows Hello For HTTP Auth Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_recommended~httpauthentication_recommended_windowshelloforhttpauthenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_recommended~httpauthentication_recommended_windowshelloforhttpauthenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_sslerroroverrideallowedfororigins", + "displayName": "Allow users to proceed from the HTTPS warning page for specific origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_sslerroroverrideallowedfororigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_sslerroroverrideallowedfororigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge_sslerroroverrideallowedfororigins_sslerroroverrideallowedfororiginsdesc", + "displayName": "Allow users to proceed from the HTTPS warning page for specific origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~applicationguard_applicationguardfavoritessyncenabled", + "displayName": "Application Guard Favorites Sync Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~applicationguard_applicationguardfavoritessyncenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~applicationguard_applicationguardfavoritessyncenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~httpauthentication_windowshelloforhttpauthenabled", + "displayName": "Windows Hello For HTTP Auth Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~httpauthentication_windowshelloforhttpauthenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~httpauthentication_windowshelloforhttpauthenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode", + "displayName": "Print Rasterization Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_printrasterizationmode", + "displayName": "Print Rasterization Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_printrasterizationmode_0", + "displayName": "Full page rasterization", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev90~policy~microsoft_edge~printing_printrasterizationmode_printrasterizationmode_1", + "displayName": "Avoid rasterization if possible", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_explicitlyallowednetworkports", + "displayName": "Explicitly allowed network ports (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_explicitlyallowednetworkports_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_explicitlyallowednetworkports_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_explicitlyallowednetworkports_explicitlyallowednetworkportsdesc", + "displayName": "Explicitly allowed network ports (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_importstartuppagesettings", + "displayName": "Allow importing of startup page settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_importstartuppagesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_importstartuppagesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_mathsolverenabled", + "displayName": "Let users snip a Math problem and get the solution with a step-by-step explanation in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_mathsolverenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_mathsolverenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_recommended_importstartuppagesettings_recommended", + "displayName": "Allow importing of startup page settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_recommended_importstartuppagesettings_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge_recommended_importstartuppagesettings_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~applicationguard_applicationguardtrafficidentificationenabled", + "displayName": "Application Guard Traffic Identification (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~applicationguard_applicationguardtrafficidentificationenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~applicationguard_applicationguardtrafficidentificationenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagecontentenabled", + "displayName": "Allow Microsoft News content on the new tab page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagecontentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagecontentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagequicklinksenabled", + "displayName": "Allow quick links on the new tab page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagequicklinksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev91~policy~microsoft_edge~startup_newtabpagequicklinksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_aadwebsitessousingthisprofileenabled", + "displayName": "Single sign-on for work or school sites using this profile enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_aadwebsitessousingthisprofileenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_aadwebsitessousingthisprofileenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault", + "displayName": "Configure Automatic HTTPS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_automatichttpsdefault", + "displayName": "Configure Automatic HTTPS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_automatichttpsdefault_0", + "displayName": "Automatic HTTPS functionality is disabled.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_automatichttpsdefault_1", + "displayName": "Navigations delivered over HTTP are switched to HTTPS, only on domains likely to support HTTPS.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_automatichttpsdefault_automatichttpsdefault_2", + "displayName": "All navigations delivered over HTTP are switched to HTTPS. Connection errors might occur more often.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_headlessmodeenabled", + "displayName": "Control use of the Headless Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_headlessmodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_headlessmodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationlocalsitelistexpirationdays", + "displayName": "Specify the number of days that a site remains on the local IE mode site list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationlocalsitelistexpirationdays_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationlocalsitelistexpirationdays_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationlocalsitelistexpirationdays_internetexplorerintegrationlocalsitelistexpirationdays", + "displayName": "Specify the number of days that a site remains on the local IE mode site list: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationreloadiniemodeallowed", + "displayName": "Allow unconfigured sites to be reloaded in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationreloadiniemodeallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_internetexplorerintegrationreloadiniemodeallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_aadwebsitessousingthisprofileenabled_recommended", + "displayName": "Single sign-on for work or school sites using this profile enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_aadwebsitessousingthisprofileenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_aadwebsitessousingthisprofileenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended", + "displayName": "Configure Automatic HTTPS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_automatichttpsdefault", + "displayName": "Configure Automatic HTTPS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_automatichttpsdefault_0", + "displayName": "Automatic HTTPS functionality is disabled.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_automatichttpsdefault_1", + "displayName": "Navigations delivered over HTTP are switched to HTTPS, only on domains likely to support HTTPS.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_automatichttpsdefault_recommended_automatichttpsdefault_2", + "displayName": "All navigations delivered over HTTP are switched to HTTPS. Connection errors might occur more often.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_internetexplorerintegrationreloadiniemodeallowed_recommended", + "displayName": "Allow unconfigured sites to be reloaded in Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_internetexplorerintegrationreloadiniemodeallowed_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge_recommended_internetexplorerintegrationreloadiniemodeallowed_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowed", + "displayName": "Specifies whether to allow insecure websites to make requests to more-private network endpoints (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowedforurls", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from insecure contexts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowedforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowedforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev92~policy~microsoft_edge~privatenetworkrequestsettings_insecureprivatenetworkrequestsallowedforurls_insecureprivatenetworkrequestsallowedforurlsdesc", + "displayName": "Allow the listed sites to make requests to more-private network endpoints from insecure contexts (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_0", + "displayName": "Automatically", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_1", + "displayName": "With device password", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_2", + "displayName": "With custom primary password", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93.1~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_3", + "displayName": "Autofill off", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_autoplayallowlist", + "displayName": "Allow media autoplay on specific sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_autoplayallowlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_autoplayallowlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_autoplayallowlist_autoplayallowlistdesc", + "displayName": "Allow media autoplay on specific sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_cecpq2enabled", + "displayName": "CECPQ2 post-quantum key-agreement enabled for TLS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_cecpq2enabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_cecpq2enabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_configureviewinfileexplorer", + "displayName": "Configure the View in File Explorer feature for SharePoint pages in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_configureviewinfileexplorer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_configureviewinfileexplorer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_configureviewinfileexplorer_configureviewinfileexplorer", + "displayName": "Configure the View in File Explorer feature for SharePoint pages in Microsoft Edge (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationcloudsitelist", + "displayName": "Configure the Enterprise Mode Cloud Site List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationcloudsitelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationcloudsitelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationcloudsitelist_internetexplorerintegrationcloudsitelist", + "displayName": "Configure the Enterprise Mode Cloud Site List (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationsitelistrefreshinterval", + "displayName": "Configure how frequently the Enterprise Mode Site List is refreshed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationsitelistrefreshinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationsitelistrefreshinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_internetexplorerintegrationsitelistrefreshinterval_internetexplorerintegrationsitelistrefreshinterval", + "displayName": "Configure how frequently the Enterprise Mode Site List is refreshed: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_localbrowserdatashareenabled", + "displayName": "Enable Windows to search local Microsoft Edge browsing data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_localbrowserdatashareenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_localbrowserdatashareenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_msawebsitessousingthisprofileallowed", + "displayName": "Allow single sign-on for Microsoft sites using this profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_msawebsitessousingthisprofileallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_msawebsitessousingthisprofileallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_localbrowserdatashareenabled_recommended", + "displayName": "Enable Windows to search local Microsoft Edge browsing data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_localbrowserdatashareenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_localbrowserdatashareenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_msawebsitessousingthisprofileallowed_recommended", + "displayName": "Allow single sign-on for Microsoft sites using this profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_msawebsitessousingthisprofileallowed_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_msawebsitessousingthisprofileallowed_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_travelassistanceenabled_recommended", + "displayName": "Enable travel assistance (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_travelassistanceenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended_travelassistanceenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended", + "displayName": "Sets layout for printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_printingwebpagelayout", + "displayName": "Sets layout for printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_printingwebpagelayout_0", + "displayName": "Sets layout option as portrait", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_recommended~printing_recommended_printingwebpagelayout_recommended_printingwebpagelayout_1", + "displayName": "Sets layout option as landscape", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_relaunchwindow", + "displayName": "Set the time interval for relaunch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_relaunchwindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_relaunchwindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_relaunchwindow_relaunchwindow", + "displayName": "Relaunch time window (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_remotedebuggingallowed", + "displayName": "Allow remote debugging (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_remotedebuggingallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_remotedebuggingallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_travelassistanceenabled", + "displayName": "Enable travel assistance (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_travelassistanceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_travelassistanceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_tripledesenabled", + "displayName": "Enable 3DES cipher suites in TLS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_tripledesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge_tripledesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting", + "displayName": "Control use of JavaScript JIT (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting_1", + "displayName": "Allow any site to run JavaScript JIT", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_defaultjavascriptjitsetting_defaultjavascriptjitsetting_2", + "displayName": "Do not allow any site to run JavaScript JIT", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitallowedforsites", + "displayName": "Allow JavaScript to use JIT on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitallowedforsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitallowedforsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitallowedforsites_javascriptjitallowedforsitesdesc", + "displayName": "Allow JavaScript to use JIT on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitblockedforsites", + "displayName": "Block JavaScript from using JIT on these sites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitblockedforsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitblockedforsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_javascriptjitblockedforsites_javascriptjitblockedforsitesdesc", + "displayName": "Block JavaScript from using JIT on these sites (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_showpdfdefaultrecommendationsenabled", + "displayName": "Allow notifications to set Microsoft Edge as default PDF reader (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_showpdfdefaultrecommendationsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~contentsettings_showpdfdefaultrecommendationsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol", + "displayName": "Configure users ability to override feature flags (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_featureflagoverridescontrol", + "displayName": "Configure users ability to override feature flags (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_featureflagoverridescontrol_2", + "displayName": "Allow users to override feature flags using command line arguments only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_featureflagoverridescontrol_1", + "displayName": "Allow users to override feature flags", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~experimentation_featureflagoverridescontrol_featureflagoverridescontrol_0", + "displayName": "Prevent users from overriding feature flags", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_implicitsigninenabled", + "displayName": "Enable implicit sign-in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_implicitsigninenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_implicitsigninenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_oneauthauthenticationenforced", + "displayName": "OneAuth Authentication Flow Enforced for signin (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_oneauthauthenticationenforced_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~identity_oneauthauthenticationenforced_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_passwordgeneratorenabled", + "displayName": "Allow users to get a strong password suggestion whenever they are creating an account online (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_passwordgeneratorenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_passwordgeneratorenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting", + "displayName": "Configures a setting that asks users to enter their device password while using password autofill (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_0", + "displayName": "Automatically", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~passwordmanager_primarypasswordsetting_primarypasswordsetting_1", + "displayName": "With device password", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout", + "displayName": "Sets layout for printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_printingwebpagelayout", + "displayName": "Sets layout for printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_printingwebpagelayout_0", + "displayName": "Sets layout option as portrait", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev93~policy~microsoft_edge~printing_printingwebpagelayout_printingwebpagelayout_1", + "displayName": "Sets layout option as landscape", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge_webrtcrespectosroutingtableenabled", + "displayName": "Enable support for Windows OS routing table rules when making peer to peer connections via WebRTC (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge_webrtcrespectosroutingtableenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge_webrtcrespectosroutingtableenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~applicationguard_applicationguardpassivemodeenabled", + "displayName": "Ignore Application Guard site list configuration and browse Edge normally (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~applicationguard_applicationguardpassivemodeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~applicationguard_applicationguardpassivemodeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~identity_onlyonpremisesimplicitsigninenabled", + "displayName": "Only on-premises account enabled for implicit sign-in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~identity_onlyonpremisesimplicitsigninenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev94~policy~microsoft_edge~identity_onlyonpremisesimplicitsigninenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_browserlegacyextensionpointsblockingenabled", + "displayName": "Enable browser legacy extension point blocking (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_browserlegacyextensionpointsblockingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_browserlegacyextensionpointsblockingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_crossoriginwebassemblymodulesharingenabled", + "displayName": "Specifies whether WebAssembly modules can be sent cross-origin (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_crossoriginwebassemblymodulesharingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_crossoriginwebassemblymodulesharingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_displaycapturepermissionspolicyenabled", + "displayName": "Specifies whether the display-capture permissions-policy is checked or skipped (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_displaycapturepermissionspolicyenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_displaycapturepermissionspolicyenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenheightadjustment", + "displayName": "Configure the pixel adjustment between window.open heights sourced from IE mode pages vs. Edge mode pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenheightadjustment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenheightadjustment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenheightadjustment_internetexplorerintegrationwindowopenheightadjustment", + "displayName": "Configure the pixel adjustment between window.open heights sourced from IE mode pages vs. Edge mode pages: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenwidthadjustment", + "displayName": "Configure the pixel adjustment between window.open widths sourced from IE mode pages vs. Edge mode pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenwidthadjustment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenwidthadjustment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_internetexplorerintegrationwindowopenwidthadjustment_internetexplorerintegrationwindowopenwidthadjustment", + "displayName": "Configure the pixel adjustment between window.open widths sourced from IE mode pages vs. Edge mode pages: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended_visualsearchenabled_recommended", + "displayName": "Visual search enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended_visualsearchenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended_visualsearchenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended~smartscreen_recommended_newsmartscreenlibraryenabled_recommended", + "displayName": "Enable new SmartScreen library (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended~smartscreen_recommended_newsmartscreenlibraryenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_recommended~smartscreen_recommended_newsmartscreenlibraryenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior", + "displayName": "Configure ShadowStack crash rollback behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_shadowstackcrashrollbackbehavior", + "displayName": "Configure ShadowStack crash rollback behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_shadowstackcrashrollbackbehavior_0", + "displayName": "Disable Hardware-enforced Stack Protection", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_shadowstackcrashrollbackbehavior_1", + "displayName": "Disable Hardware-enforced Stack Protection until the next Microsoft Edge update", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_shadowstackcrashrollbackbehavior_shadowstackcrashrollbackbehavior_2", + "displayName": "Enable Hardware-enforced Stack Protection", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_visualsearchenabled", + "displayName": "Visual search enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_visualsearchenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge_visualsearchenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~contentsettings_intranetfilelinksenabled", + "displayName": "Allow intranet zone file URL links from Microsoft Edge to open in Windows File Explorer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~contentsettings_intranetfilelinksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~contentsettings_intranetfilelinksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~smartscreen_newsmartscreenlibraryenabled", + "displayName": "Enable new SmartScreen library (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~smartscreen_newsmartscreenlibraryenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev95~policy~microsoft_edge~smartscreen_newsmartscreenlibraryenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended", + "displayName": "Configure when efficiency mode should become active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode", + "displayName": "Configure when efficiency mode should become active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_4", + "displayName": "When the device is unplugged, efficiency mode takes moderate steps to save battery. When the device is unplugged and the battery is low, efficiency mode takes additional steps to save battery.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_5", + "displayName": "When the device is unplugged or unplugged and the battery is low, efficiency mode takes additional steps to save battery.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode", + "displayName": "Configure when efficiency mode should become active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode", + "displayName": "Configure when efficiency mode should become active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_4", + "displayName": "When the device is unplugged, efficiency mode takes moderate steps to save battery. When the device is unplugged and the battery is low, efficiency mode takes additional steps to save battery.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96.1~policy~microsoft_edge~performance_efficiencymode_efficiencymode_5", + "displayName": "When the device is unplugged or unplugged and the battery is low, efficiency mode takes additional steps to save battery.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_audioprocesshighpriorityenabled", + "displayName": "Allow the audio process to run with priority above normal on Windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_audioprocesshighpriorityenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_audioprocesshighpriorityenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_autolaunchprotocolscomponentenabled", + "displayName": "AutoLaunch Protocols Component Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_autolaunchprotocolscomponentenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_autolaunchprotocolscomponentenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_forcesynctypes", + "displayName": "Configure the list of types that are included for synchronization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_forcesynctypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_forcesynctypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_forcesynctypes_forcesynctypesdesc", + "displayName": "Configure the list of types that are included for synchronization (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes", + "displayName": "Configure whether form data and HTTP headers will be sent when entering or exiting Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes", + "displayName": "Configure whether form data and HTTP headers will be sent when entering or exiting Internet Explorer mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes_0", + "displayName": "Do not send form data or headers", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes_1", + "displayName": "Send form data only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes_2", + "displayName": "Send additional headers only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorerintegrationcomplexnavdatatypes_internetexplorerintegrationcomplexnavdatatypes_3", + "displayName": "Send form data and additional headers", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorermodetoolbarbuttonenabled", + "displayName": "Show the Reload in Internet Explorer mode button in the toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorermodetoolbarbuttonenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_internetexplorermodetoolbarbuttonenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended_internetexplorermodetoolbarbuttonenabled_recommended", + "displayName": "Show the Reload in Internet Explorer mode button in the toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended_internetexplorermodetoolbarbuttonenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended_internetexplorermodetoolbarbuttonenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended", + "displayName": "Configure when efficiency mode should become active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode", + "displayName": "Configure when efficiency mode should become active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~performance_recommended_efficiencymode_recommended_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~typosquattingchecker_recommended_typosquattingcheckerenabled_recommended", + "displayName": "Configure Edge TyposquattingChecker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~typosquattingchecker_recommended_typosquattingcheckerenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_recommended~typosquattingchecker_recommended_typosquattingcheckerenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_rendererappcontainerenabled", + "displayName": "Enable renderer in app container (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_rendererappcontainerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_rendererappcontainerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_sharedlinksenabled", + "displayName": "Show links shared from Microsoft 365 apps in History (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_sharedlinksenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge_sharedlinksenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~applicationguard_applicationguarduploadblockingenabled", + "displayName": "Prevents files from being uploaded while in Application Guard (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~applicationguard_applicationguarduploadblockingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~applicationguard_applicationguarduploadblockingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode", + "displayName": "Configure when efficiency mode should become active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode", + "displayName": "Configure when efficiency mode should become active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode_0", + "displayName": "Efficiency mode is always active", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode_1", + "displayName": "Efficiency mode is never active", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode_2", + "displayName": "Efficiency mode is active when the device is unplugged", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~performance_efficiencymode_efficiencymode_3", + "displayName": "Efficiency mode is active when the device is unplugged and the battery is low", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode", + "displayName": "Print PostScript Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_printpostscriptmode", + "displayName": "Print PostScript Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_printpostscriptmode_0", + "displayName": "Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printpostscriptmode_printpostscriptmode_1", + "displayName": "Type42", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printrasterizepdfdpi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printrasterizepdfdpi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~printing_printrasterizepdfdpi_printrasterizepdfdpi", + "displayName": "Print Rasterize PDF DPI: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~typosquattingchecker_typosquattingcheckerenabled", + "displayName": "Configure Edge TyposquattingChecker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~typosquattingchecker_typosquattingcheckerenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev96~policy~microsoft_edge~typosquattingchecker_typosquattingcheckerenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_accessibilityimagelabelsenabled", + "displayName": "Get Image Descriptions from Microsoft Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_accessibilityimagelabelsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_accessibilityimagelabelsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_corsnonwildcardrequestheaderssupport", + "displayName": "CORS non-wildcard request header support enabled (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_corsnonwildcardrequestheaderssupport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_corsnonwildcardrequestheaderssupport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgediscoverenabled", + "displayName": "Discover feature In Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgediscoverenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgediscoverenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgeenhanceimagesenabled", + "displayName": "Enhance images enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgeenhanceimagesenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_edgeenhanceimagesenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_internetexplorermodetabinedgemodeallowed", + "displayName": "Allow sites configured for Internet Explorer mode to open in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_internetexplorermodetabinedgemodeallowed_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_internetexplorermodetabinedgemodeallowed_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_openmicrosoftlinksinedgeenabled", + "displayName": "Always open links from certain Microsoft apps in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_openmicrosoftlinksinedgeenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_openmicrosoftlinksinedgeenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended_edgediscoverenabled_recommended", + "displayName": "Discover feature In Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended_edgediscoverenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended_edgediscoverenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreendnsrequestsenabled_recommended", + "displayName": "Enable Microsoft Defender SmartScreen DNS requests (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreendnsrequestsenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_recommended~smartscreen_recommended_smartscreendnsrequestsenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_websqlinthirdpartycontextenabled", + "displayName": "Force WebSQL in third-party contexts to be re-enabled (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_websqlinthirdpartycontextenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge_websqlinthirdpartycontextenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowallportsforurls", + "displayName": "Automatically grant sites permission to connect all serial ports (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowallportsforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowallportsforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowallportsforurls_serialallowallportsforurlsdesc", + "displayName": "Automatically grant sites permission to connect all serial ports (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowusbdevicesforurls", + "displayName": "Automatically grant sites permission to connect to USB serial devices (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowusbdevicesforurls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowusbdevicesforurls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~contentsettings_serialallowusbdevicesforurls_serialallowusbdevicesforurls", + "displayName": "Automatically grant sites permission to connect to USB serial devices (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_sameorigintabcaptureallowedbyorigins", + "displayName": "Allow Same Origin Tab capture by these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_sameorigintabcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_sameorigintabcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_sameorigintabcaptureallowedbyorigins_sameorigintabcaptureallowedbyoriginsdesc", + "displayName": "Allow Same Origin Tab capture by these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_screencaptureallowedbyorigins", + "displayName": "Allow Desktop, Window, and Tab capture by these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_screencaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_screencaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_screencaptureallowedbyorigins_screencaptureallowedbyoriginsdesc", + "displayName": "Allow Desktop, Window, and Tab capture by these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_tabcaptureallowedbyorigins", + "displayName": "Allow Tab capture by these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_tabcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_tabcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_tabcaptureallowedbyorigins_tabcaptureallowedbyoriginsdesc", + "displayName": "Allow Tab capture by these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_windowcaptureallowedbyorigins", + "displayName": "Allow Window and Tab capture by these origins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_windowcaptureallowedbyorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_windowcaptureallowedbyorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~screencapture_windowcaptureallowedbyorigins_windowcaptureallowedbyoriginsdesc", + "displayName": "Allow Window and Tab capture by these origins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~smartscreen_smartscreendnsrequestsenabled", + "displayName": "Enable Microsoft Defender SmartScreen DNS requests (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~smartscreen_smartscreendnsrequestsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev97~policy~microsoft_edge~smartscreen_smartscreendnsrequestsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_0", + "displayName": "Standard mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_1", + "displayName": "Balanced mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_2", + "displayName": "Strict mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98.1~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_3", + "displayName": "Basic mode", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_edgefollowenabled", + "displayName": "Enable Follow service in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_edgefollowenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_edgefollowenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode", + "displayName": "Enhance the security state in Microsoft Edge (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_0", + "displayName": "Standard mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_1", + "displayName": "Balanced mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymode_enhancesecuritymode_2", + "displayName": "Strict mode", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodebypasslistdomains", + "displayName": "Configure the list of domains for which enhance security mode will not be enforced (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodebypasslistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodebypasslistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodebypasslistdomains_enhancesecuritymodebypasslistdomainsdesc", + "displayName": "Configure the list of domains for which enhance security mode will not be enforced (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodeenforcelistdomains", + "displayName": "Configure the list of domains for which enhance security mode will always be enforced (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodeenforcelistdomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodeenforcelistdomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_enhancesecuritymodeenforcelistdomains_enhancesecuritymodeenforcelistdomainsdesc", + "displayName": "Configure the list of domains for which enhance security mode will always be enforced (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_inappsupportenabled", + "displayName": "In-app support Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_inappsupportenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_inappsupportenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_microsoftedgeinsiderpromotionenabled", + "displayName": "Microsoft Edge Insider Promotion Enabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_microsoftedgeinsiderpromotionenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_microsoftedgeinsiderpromotionenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_u2fsecuritykeyapienabled", + "displayName": "Allow using the deprecated U2F Security Key API (deprecated) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_u2fsecuritykeyapienabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge_u2fsecuritykeyapienabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings", + "displayName": "Print preview sticky settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings", + "displayName": "Print preview sticky settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings_0", + "displayName": "Enable sticky settings for PDF and Webpages", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings_1", + "displayName": "Disable sticky settings for PDF and Webpages", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings_2", + "displayName": "Disable sticky settings for PDF", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev98~policy~microsoft_edge~printing_printstickysettings_printstickysettings_3", + "displayName": "Disable sticky settings for Webpages", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_addressbareditingenabled", + "displayName": "Configure address bar editing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_addressbareditingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_addressbareditingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_allowgamesmenu", + "displayName": "Allow users to access the games menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_allowgamesmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_allowgamesmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_donotsilentlyblockprotocolsfromorigins", + "displayName": "Define a list of protocols that can not be silently blocked by anti-flood protection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_donotsilentlyblockprotocolsfromorigins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_donotsilentlyblockprotocolsfromorigins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_donotsilentlyblockprotocolsfromorigins_donotsilentlyblockprotocolsfromorigins", + "displayName": "Define a list of protocols that can not be silently blocked by anti-flood protection (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_hubssidebarenabled", + "displayName": "Show Hubs Sidebar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_hubssidebarenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_hubssidebarenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudneutralsitesreporting", + "displayName": "Configure reporting of potentially misconfigured neutral site URLs to the M365 Admin Center Site Lists app (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudneutralsitesreporting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudneutralsitesreporting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudneutralsitesreporting_internetexplorerintegrationcloudneutralsitesreporting", + "displayName": "Configure reporting of potentially misconfigured neutral site URLs to the M365 Admin Center Site Lists app (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudusersitesreporting", + "displayName": "Configure reporting of IE Mode user list entries to the M365 Admin Center Site Lists app (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudusersitesreporting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudusersitesreporting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_internetexplorerintegrationcloudusersitesreporting_internetexplorerintegrationcloudusersitesreporting", + "displayName": "Configure reporting of IE Mode user list entries to the M365 Admin Center Site Lists app (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended_hubssidebarenabled_recommended", + "displayName": "Show Hubs Sidebar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended_hubssidebarenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended_hubssidebarenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended~identity_recommended_signinctaonntpenabled_recommended", + "displayName": "Enable sign in click to action dialog (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended~identity_recommended_signinctaonntpenabled_recommended_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_recommended~identity_recommended_signinctaonntpenabled_recommended_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_relatedmatchescloudserviceenabled", + "displayName": "Configure Related Matches in Find on Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_relatedmatchescloudserviceenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_relatedmatchescloudserviceenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_sandboxexternalprotocolblocked", + "displayName": "Allow Microsoft Edge to block navigations to external protocols in a sandboxed iframe (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_sandboxexternalprotocolblocked_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_sandboxexternalprotocolblocked_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction", + "displayName": "Enable or disable the User-Agent Reduction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_useragentreduction", + "displayName": "Enable or disable the User-Agent Reduction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_useragentreduction_0", + "displayName": "User-Agent reduction will be controllable via Experimentation", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_useragentreduction_1", + "displayName": "User-Agent reduction diabled, and not enabled by Experimentation", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge_useragentreduction_useragentreduction_2", + "displayName": "User-Agent reduction will be enabled for all origins", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge~passwordmanager_passwordmanagerblocklist", + "displayName": "Configure the list of domains for which the password manager UI (Save and Fill) will be disabled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge~passwordmanager_passwordmanagerblocklist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge~passwordmanager_passwordmanagerblocklist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_microsoft_edgev99~policy~microsoft_edge~passwordmanager_passwordmanagerblocklist_passwordmanagerblocklistdesc", + "displayName": "Configure the list of domains for which the password manager UI (Save and Fill) will be disabled (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_notifications_disallownotificationmirroring", + "displayName": "Disallow Notification Mirroring (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_notifications_disallownotificationmirroring_0", + "displayName": "Block", + "description": "Enable notification mirroring." + }, + { + "id": "user_vendor_msft_policy_config_notifications_disallownotificationmirroring_1", + "displayName": "Allow", + "description": "Disable notification mirroring." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_notifications_disallowtilenotification", + "displayName": "Disallow Tile Notification (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_notifications_disallowtilenotification_0", + "displayName": "Block", + "description": "Disabled." + }, + { + "id": "user_vendor_msft_policy_config_notifications_disallowtilenotification_1", + "displayName": "Allow", + "description": "Enabled." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_ageoutpolicy", + "displayName": "Age out documents older than n days (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_ageoutpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_ageoutpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_ageoutpolicy_l_ageoutpolicydecimal", + "displayName": "Number of days (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_evictserverversionspolicy", + "displayName": "Age out the locally cached copies of server document versions that are more than n days old. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_evictserverversionspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_evictserverversionspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_evictserverversionspolicy_l_evictserverversionspolicydecimal", + "displayName": "Number of days (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_maximplicitcachesize", + "displayName": "Set the max size of the Office Document Cache (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_maximplicitcachesize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_maximplicitcachesize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_maximplicitcachesize_l_maximplicitcachesizedecimal", + "displayName": "Percent of disk space (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_opendirectlyinapp", + "displayName": "Open Directly in Office Client Application (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_opendirectlyinapp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16~policy~l_microsoftofficesystem~l_miscellaneous437_l_opendirectlyinapp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v10~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_allownonadminuserinstalllaps", + "displayName": "Allow users who aren’t admins to install language accessory packs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v10~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_allownonadminuserinstalllaps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v10~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_allownonadminuserinstalllaps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v11~policy~l_microsoftofficesystem~l_miscellaneous437_l_officerecommendeddocuments", + "displayName": "Show recommended files on the File tab or start page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v11~policy~l_microsoftofficesystem~l_miscellaneous437_l_officerecommendeddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v11~policy~l_microsoftofficesystem~l_miscellaneous437_l_officerecommendeddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v11~policy~l_microsoftofficesystem~l_services_l_officeenableautoalttext", + "displayName": "Automatically generate alternative text (alt text) for pictures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v11~policy~l_microsoftofficesystem~l_services_l_officeenableautoalttext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v11~policy~l_microsoftofficesystem~l_services_l_officeenableautoalttext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_miscellaneous437_l_ageoutpolicylocalversioning", + "displayName": "Number of days to keep local document versions in the local cache (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_miscellaneous437_l_ageoutpolicylocalversioning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_miscellaneous437_l_ageoutpolicylocalversioning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_miscellaneous437_l_ageoutpolicylocalversioning_l_ageoutpolicylocalversioningdecimal", + "displayName": "Number of days (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_miscellaneous437_l_disallowedroamingmrudomains", + "displayName": "Turn off roaming of file names and metadata by server domain. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_miscellaneous437_l_disallowedroamingmrudomains_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_miscellaneous437_l_disallowedroamingmrudomains_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_miscellaneous437_l_disallowedroamingmrudomains_l_disalloweddomainlist", + "displayName": "Disallowed Domains: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_securitysettings_l_basicauthpromptbehavior", + "displayName": "Allow specified hosts to show Basic Authentication prompts to Office apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_securitysettings_l_basicauthpromptbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_securitysettings_l_basicauthpromptbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_securitysettings_l_basicauthpromptbehavior_l_authenticationbasicauthenabledhostsid", + "displayName": "Host names: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_securitysettings_l_basicauthproxybehavior", + "displayName": "Allow Basic Authentication prompts from network proxies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_securitysettings_l_basicauthproxybehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v12~policy~l_microsoftofficesystem~l_securitysettings_l_basicauthproxybehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v13~policy~l_microsoftofficesystem~l_pdfandxps_l_pdfprotectionfromoffice", + "displayName": "Use the Sensitivity feature in Office to apply sensitivity labels to PDFs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v13~policy~l_microsoftofficesystem~l_pdfandxps_l_pdfprotectionfromoffice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v13~policy~l_microsoftofficesystem~l_pdfandxps_l_pdfprotectionfromoffice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v13~policy~l_microsoftofficesystem~l_securitysettings_l_aipexception", + "displayName": "Use the Azure Information Protection add-in for sensitivity labeling (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v13~policy~l_microsoftofficesystem~l_securitysettings_l_aipexception_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v13~policy~l_microsoftofficesystem~l_securitysettings_l_aipexception_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_m365linkshandling_l_m365linksbrowserchoice", + "displayName": "Choose which browser opens web links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_m365linkshandling_l_m365linksbrowserchoice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_m365linkshandling_l_m365linksbrowserchoice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_m365linkshandling_l_m365linksbrowserchoice_l_browserchoiceenum", + "displayName": "Browser: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_m365linkshandling_l_m365linksbrowserchoice_l_browserchoiceenum_0", + "displayName": "System default browser", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_m365linkshandling_l_m365linksbrowserchoice_l_browserchoiceenum_1", + "displayName": "Microsoft Edge", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforirm", + "displayName": "Encryption mode for Information Rights Management (IRM) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforirm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforirm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforirm_l_encryptiontypeforirmcolon", + "displayName": "IRM Encryption Mode: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforirm_l_encryptiontypeforirmcolon_1", + "displayName": "Cipher Block Chaining (CBC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v14~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforirm_l_encryptiontypeforirmcolon_2", + "displayName": "Electronic Codebook (ECB)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v15~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableresourceidnamemapping", + "displayName": "Disable caching when opening server-only files. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v15~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableresourceidnamemapping_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v15~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableresourceidnamemapping_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingofadaptivefloatieuser", + "displayName": "Disable Training of the Adaptive Floatie feature for the user (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingofadaptivefloatieuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletrainingofadaptivefloatieuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletraininguser", + "displayName": "Disable Training of all features for the user (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletraininguser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_miscellaneous437_l_disabletraininguser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_allowuserdefinedfilesharecatalogs", + "displayName": "Allow users to control the Trusted Shared Folder Catalogs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_allowuserdefinedfilesharecatalogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v16~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_allowuserdefinedfilesharecatalogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_diagnostics_l_configuregetdiagnostics", + "displayName": "Configure Get Diagnostics feature's visibility in the Help Ribbon in Office applications and control the feature's mode of operation. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_diagnostics_l_configuregetdiagnostics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_diagnostics_l_configuregetdiagnostics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_diagnostics_l_configuregetdiagnostics_l_configuregetdiagnosticsenum", + "displayName": "Configure Get Diagnostics: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_diagnostics_l_configuregetdiagnostics_l_configuregetdiagnosticsenum_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_diagnostics_l_configuregetdiagnostics_l_configuregetdiagnosticsenum_1", + "displayName": "Upload diagnostic logs to Microsoft", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v17~policy~l_microsoftofficesystem~l_diagnostics_l_configuregetdiagnostics_l_configuregetdiagnosticsenum_2", + "displayName": "Capture diagnostic logs in a local archive, dont upload logs to Microsoft", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter", + "displayName": "Hide Microsoft cloud-based file locations in the Backstage view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_l_onlinestoragefilterid", + "displayName": "Online Storage Filter Value: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences", + "displayName": "Allow the use of connected experiences in Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent", + "displayName": "Allow the use of connected experiences in Office that analyze content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent", + "displayName": "Allow the use of connected experiences in Office that download online content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences", + "displayName": "Allow the use of additional optional connected experiences in Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2.updates.3~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffexcel", + "displayName": "Turn off AutoSave by default in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffexcel_l_autosavedefaultsettingenum", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffexcel_l_autosavedefaultsettingenum_0", + "displayName": "Use AutoSave Default Setting", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffexcel_l_autosavedefaultsettingenum_1", + "displayName": "AutoSave Is On By Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffexcel_l_autosavedefaultsettingenum_2", + "displayName": "AutoSave Is Off By Default", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffpowerpoint", + "displayName": "Turn off AutoSave by default in PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffpowerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffpowerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffpowerpoint_l_autosavedefaultsettingenum", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffpowerpoint_l_autosavedefaultsettingenum_0", + "displayName": "Use AutoSave Default Setting", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffpowerpoint_l_autosavedefaultsettingenum_1", + "displayName": "AutoSave Is On By Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffpowerpoint_l_autosavedefaultsettingenum_2", + "displayName": "AutoSave Is Off By Default", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffword", + "displayName": "Turn off AutoSave by default in Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffword_l_autosavedefaultsettingenum", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffword_l_autosavedefaultsettingenum_0", + "displayName": "Use AutoSave Default Setting", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffword_l_autosavedefaultsettingenum_1", + "displayName": "AutoSave Is On By Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_autosavedefaultoffword_l_autosavedefaultsettingenum_2", + "displayName": "AutoSave Is Off By Default", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationexcel", + "displayName": "[Deprecated] Don’t AutoSave files in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationpowerpoint", + "displayName": "[Deprecated] Don’t AutoSave files in PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationpowerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationpowerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationword", + "displayName": "[Deprecated] Don’t AutoSave files in Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_autosave_l_dontautosaveinformationword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_disabledefaultservice", + "displayName": "Remove Office Presentation Service from the list of online presentation services in PowerPoint and Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_disabledefaultservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_disabledefaultservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_disableprogrammaticaccess", + "displayName": "Restrict programmatic access for creating online presentations in PowerPoint and Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_disableprogrammaticaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_disableprogrammaticaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_preventaccesstouserspecifiedservices", + "displayName": "Prevent users from adding online presentation services in PowerPoint and Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_preventaccesstouserspecifiedservices_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast_l_preventaccesstouserspecifiedservices_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00", + "displayName": "Configure presentation service in PowerPoint and Word 1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastservicecreatesharednotes0", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastservicecreatesharednotes0_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastservicecreatesharednotes0_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastservicemajorversion0", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastserviceminorversion0", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastservicenotesdefaulturl0", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastserviceservercapabilities0", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastserviceserverdescription0", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastserviceserverinfo0", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastserviceservername0", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastserviceserverterms0", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastserviceserverurl0", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice00_l_broadcastservicesharednotescustomurl0", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01", + "displayName": "Configure presentation service in PowerPoint and Word 2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastservicecreatesharednotes1", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastservicecreatesharednotes1_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastservicecreatesharednotes1_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastservicemajorversion1", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastserviceminorversion1", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastservicenotesdefaulturl1", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastserviceservercapabilities1", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastserviceserverdescription1", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastserviceserverinfo1", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastserviceservername1", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastserviceserverterms1", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastserviceserverurl1", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice01_l_broadcastservicesharednotescustomurl1", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02", + "displayName": "Configure presentation service in PowerPoint and Word 3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastservicecreatesharednotes2", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastservicecreatesharednotes2_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastservicecreatesharednotes2_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastservicemajorversion2", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastserviceminorversion2", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastservicenotesdefaulturl2", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastserviceservercapabilities2", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastserviceserverdescription2", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastserviceserverinfo2", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastserviceservername2", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastserviceserverterms2", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastserviceserverurl2", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice02_l_broadcastservicesharednotescustomurl2", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03", + "displayName": "Configure presentation service in PowerPoint and Word 4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastservicecreatesharednotes3", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastservicecreatesharednotes3_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastservicecreatesharednotes3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastservicemajorversion3", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastserviceminorversion3", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastservicenotesdefaulturl3", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastserviceservercapabilities3", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastserviceserverdescription3", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastserviceserverinfo3", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastserviceservername3", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastserviceserverterms3", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastserviceserverurl3", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice03_l_broadcastservicesharednotescustomurl3", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04", + "displayName": "Configure presentation service in PowerPoint and Word 5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastservicecreatesharednotes4", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastservicecreatesharednotes4_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastservicecreatesharednotes4_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastservicemajorversion4", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastserviceminorversion4", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastservicenotesdefaulturl4", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastserviceservercapabilities4", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastserviceserverdescription4", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastserviceserverinfo4", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastserviceservername4", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastserviceserverterms4", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastserviceserverurl4", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice04_l_broadcastservicesharednotescustomurl4", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05", + "displayName": "Configure presentation service in PowerPoint and Word 6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastservicecreatesharednotes5", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastservicecreatesharednotes5_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastservicecreatesharednotes5_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastservicemajorversion5", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastserviceminorversion5", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastservicenotesdefaulturl5", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastserviceservercapabilities5", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastserviceserverdescription5", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastserviceserverinfo5", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastserviceservername5", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastserviceserverterms5", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastserviceserverurl5", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice05_l_broadcastservicesharednotescustomurl5", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06", + "displayName": "Configure presentation service in PowerPoint and Word 7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastservicecreatesharednotes6", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastservicecreatesharednotes6_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastservicecreatesharednotes6_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastservicemajorversion6", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastserviceminorversion6", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastservicenotesdefaulturl6", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastserviceservercapabilities6", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastserviceserverdescription6", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastserviceserverinfo6", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastserviceservername6", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastserviceserverterms6", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastserviceserverurl6", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice06_l_broadcastservicesharednotescustomurl6", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07", + "displayName": "Configure presentation service in PowerPoint and Word 8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastservicecreatesharednotes7", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastservicecreatesharednotes7_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastservicecreatesharednotes7_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastservicemajorversion7", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastserviceminorversion7", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastservicenotesdefaulturl7", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastserviceservercapabilities7", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastserviceserverdescription7", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastserviceserverinfo7", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastserviceservername7", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastserviceserverterms7", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastserviceserverurl7", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice07_l_broadcastservicesharednotescustomurl7", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08", + "displayName": "Configure presentation service in PowerPoint and Word 9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastservicecreatesharednotes8", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastservicecreatesharednotes8_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastservicecreatesharednotes8_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastservicemajorversion8", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastserviceminorversion8", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastservicenotesdefaulturl8", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastserviceservercapabilities8", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastserviceserverdescription8", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastserviceserverinfo8", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastserviceservername8", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastserviceserverterms8", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastserviceserverurl8", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice08_l_broadcastservicesharednotescustomurl8", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09", + "displayName": "Configure presentation service in PowerPoint and Word 10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastservicecreatesharednotes9", + "displayName": "Create Shared Notes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastservicecreatesharednotes9_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastservicecreatesharednotes9_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastservicemajorversion9", + "displayName": "Server Major Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastserviceminorversion9", + "displayName": "Server Minor Version: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastservicenotesdefaulturl9", + "displayName": "Shared Notes Default Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastserviceservercapabilities9", + "displayName": "Server Capabilities flags: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastserviceserverdescription9", + "displayName": "Description (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastserviceserverinfo9", + "displayName": "Information URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastserviceservername9", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastserviceserverterms9", + "displayName": "Service agreement URL (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastserviceserverurl9", + "displayName": "Service URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_broadcast~l_broadcastservices_l_configurebroadcastservice09_l_broadcastservicesharednotescustomurl9", + "displayName": "Shared Notes Url (optional): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasedefaultinstanceslimit", + "displayName": "Set the database default instances limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasedefaultinstanceslimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasedefaultinstanceslimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasedefaultinstanceslimit_l_databasedefaultinstanceslimitdecimal", + "displayName": "Default number of instances returned (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasedefaulttimeout", + "displayName": "Set the database default timeout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasedefaulttimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasedefaulttimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasedefaulttimeout_l_databasedefaulttimeoutdecimal", + "displayName": "Database default timeout (milliseconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasemaxinstanceslimit", + "displayName": "Set maximum database instances limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasemaxinstanceslimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasemaxinstanceslimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasemaxinstanceslimit_l_databasemaxinstanceslimitdecimal", + "displayName": "Maximum number of instances returned (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasemaxtimeout", + "displayName": "Set maximum database timeout limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasemaxtimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasemaxtimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_database_l_databasemaxtimeout_l_databasemaxtimeoutdecimal", + "displayName": "Database maximum timeout (milliseconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_cleanupinterval", + "displayName": "Set the cleanup interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_cleanupinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_cleanupinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_cleanupinterval_l_cleanupintervaldecimal", + "displayName": "Cleanup interval (minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_errorscleanupinterval", + "displayName": "Set errors cleanup interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_errorscleanupinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_errorscleanupinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_errorscleanupinterval_l_errorscleanupintervaldecimal", + "displayName": "Errors cleanup interval (minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_maxretries", + "displayName": "Set maximum number of retries when synchronization fails (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_maxretries_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_maxretries_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_maxretries_l_maxretriesdecimal", + "displayName": "Maximum number of retries (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_queryinstanceslimit", + "displayName": "Set query items limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_queryinstanceslimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_queryinstanceslimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_queryinstanceslimit_l_queryinstanceslimitdecimal", + "displayName": "Query instances limit (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_querytimeout", + "displayName": "Set query processing timeout limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_querytimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_querytimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_querytimeout_l_querytimeoutdecimal", + "displayName": "Time before query timeout (minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_refreshfrequencylimit", + "displayName": "Set refresh frequency limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_refreshfrequencylimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_refreshfrequencylimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_refreshfrequencylimit_l_refreshfrequencylimitdecimal", + "displayName": "Refresh frequency limit (minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_retryintervallimit", + "displayName": "Set subscription refresh retry interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_retryintervallimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_retryintervallimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_retryintervallimit_l_retryintervallimitdecimal", + "displayName": "Maximum retry interval (minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_sleepinterval", + "displayName": "Set maximum sleep interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_sleepinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_sleepinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_synchronization_l_sleepinterval_l_sleepintervaldecimal", + "displayName": "Sleep interval upper limit (minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicedefaultsizelimit", + "displayName": "Set web service default return size limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicedefaultsizelimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicedefaultsizelimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicedefaultsizelimit_l_webservicedefaultsizelimitdecimal", + "displayName": "Web service default size limit (KB) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicedefaulttimeout", + "displayName": "Set web service default timeout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicedefaulttimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicedefaulttimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicedefaulttimeout_l_webservicedefaulttimeoutdecimal", + "displayName": "Web service default timeout limit (milliseconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicemaxsizelimit", + "displayName": "Set maximum web service return size limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicemaxsizelimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicemaxsizelimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicemaxsizelimit_l_webservicemaxsizelimitdecimal", + "displayName": "Web service maximum size limit (KB) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicemaxtimeout", + "displayName": "Set maximum web service default timeout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicemaxtimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicemaxtimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_businessdata~l_webservice_l_webservicemaxtimeout_l_webservicemaxtimeoutdecimal", + "displayName": "Web service maximum timeout limit (milliseconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_defaultsubjectforareviewrequest", + "displayName": "Default subject for a review request (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_defaultsubjectforareviewrequest_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_defaultsubjectforareviewrequest_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_defaultsubjectforareviewrequest_l_defaultsubjectforareviewrequest393", + "displayName": "Default subject for a review request (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_donotpromptuserstoshareexcelworkbookswhensendingforreview", + "displayName": "Do not prompt users to share Excel workbooks when sending for review (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_donotpromptuserstoshareexcelworkbookswhensendingforreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_donotpromptuserstoshareexcelworkbookswhensendingforreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_maxnumberofdocumentsbeingreviewedusingadhocreview", + "displayName": "Max number of documents being reviewed using ad hoc review (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_maxnumberofdocumentsbeingreviewedusingadhocreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_maxnumberofdocumentsbeingreviewedusingadhocreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_maxnumberofdocumentsbeingreviewedusingadhocreview_l_empty388", + "displayName": "\r\nMax number of documents being reviewed using ad hoc review\r\n", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_maxnumberofdocumentsbeingreviewedusingsendforreview", + "displayName": "Max number of documents being reviewed using 'send for review' (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_maxnumberofdocumentsbeingreviewedusingsendforreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_maxnumberofdocumentsbeingreviewedusingsendforreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_maxnumberofdocumentsbeingreviewedusingsendforreview_l_empty385", + "displayName": "\r\nMax number of documents being reviewed using 'send for review'\r\n", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlookadhocreviewing", + "displayName": "Outlook: Ad hoc reviewing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlookadhocreviewing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlookadhocreviewing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlookadhocreviewing_l_empty400", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlookadhocreviewing_l_empty400_0", + "displayName": "Enable ad hoc reviewing", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlookadhocreviewing_l_empty400_2", + "displayName": "Exclude author's e-mail in documents", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlookadhocreviewing_l_empty400_1", + "displayName": "Disable ad hoc reviewing", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlooksendforreview", + "displayName": "Outlook: 'send for review' (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlooksendforreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlooksendforreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlooksendforreview_l_empty399", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlooksendforreview_l_empty399_0", + "displayName": "Enable 'send for review'", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlooksendforreview_l_empty399_2", + "displayName": "Exclude author's e-mail in documents", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_outlooksendforreview_l_empty399_1", + "displayName": "Disable 'send for review'", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_promptforsendingrevieweddocumenttoauthor", + "displayName": "Prompt for sending reviewed document to author (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_promptforsendingrevieweddocumenttoauthor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_promptforsendingrevieweddocumenttoauthor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_promptforsendingrevieweddocumenttoauthor_l_empty395", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_promptforsendingrevieweddocumenttoauthor_l_empty395_2", + "displayName": "Never ask user", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_promptforsendingrevieweddocumenttoauthor_l_empty395_1", + "displayName": "Prompt for 'send for review'", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_promptforsendingrevieweddocumenttoauthor_l_empty395_0", + "displayName": "Always prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_whenchoosingsendforreview", + "displayName": "When choosing 'Send for Review...' (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_whenchoosingsendforreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_whenchoosingsendforreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_whenchoosingsendforreview_l_empty392", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_whenchoosingsendforreview_l_empty392_2", + "displayName": "Send link and attachment", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_whenchoosingsendforreview_l_empty392_1", + "displayName": "Only send link", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings_l_whenchoosingsendforreview_l_empty392_0", + "displayName": "Prompt user", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_coauthoring_l_setdocumentsynchronizationtimeout", + "displayName": "Set document synchronization timeout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_coauthoring_l_setdocumentsynchronizationtimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_coauthoring_l_setdocumentsynchronizationtimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_coauthoring_l_setdocumentsynchronizationtimeout_l_setdocumentsynchronizationtimeoutspinid", + "displayName": "in milliseconds: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withasimplewebdiscussionslink373", + "displayName": "With a simple Web discussions link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withasimplewebdiscussionslink373_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withasimplewebdiscussionslink373_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withasimplewebdiscussionslink373_l_withasimplewebdiscussionslink374", + "displayName": "With a simple Web discussions link (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withawebdiscussionslink380", + "displayName": "With a Web discussions link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withawebdiscussionslink380_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withawebdiscussionslink380_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withawebdiscussionslink380_l_withawebdiscussionslink381", + "displayName": "With a Web discussions link (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withjustanattachment", + "displayName": "With just an attachment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withjustanattachment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withjustanattachment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withjustanattachment_l_withjustanattachment379", + "displayName": "With just an attachment (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withjustasimplewebdiscussionslink", + "displayName": "With just a simple Web discussions link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withjustasimplewebdiscussionslink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withjustasimplewebdiscussionslink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareply_l_withjustasimplewebdiscussionslink_l_withjustasimplewebdiscussionslink377", + "displayName": "With just a simple Web discussions link (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_onlycontainingalink", + "displayName": "Only containing a link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_onlycontainingalink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_onlycontainingalink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_onlycontainingalink_l_onlycontainingalink357", + "displayName": "Only containing a link (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_onlycontaininganattachment", + "displayName": "Only containing an attachment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_onlycontaininganattachment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_onlycontaininganattachment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_onlycontaininganattachment_l_onlycontaininganattachment356", + "displayName": "Only containing an attachment (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withalinkandanattachment", + "displayName": "With a link and an attachment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withalinkandanattachment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withalinkandanattachment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withalinkandanattachment_l_withalinkandanattachment359", + "displayName": "With a link and an attachment (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withasimplewebdiscussionslink", + "displayName": "With a simple Web discussions link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withasimplewebdiscussionslink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withasimplewebdiscussionslink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withasimplewebdiscussionslink_l_withasimplewebdiscussionslink362", + "displayName": "With a simple Web discussions link (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withasimplewebdiscussionslinkandanattachment", + "displayName": "With a simple Web discussions link and an attachment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withasimplewebdiscussionslinkandanattachment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withasimplewebdiscussionslinkandanattachment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withasimplewebdiscussionslinkandanattachment_l_withasimplewebdiscussionslinkandanattachment364", + "displayName": "With a simple Web discussions link and an attachment (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withawebdiscussionslink", + "displayName": "With a Web discussions link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withawebdiscussionslink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withawebdiscussionslink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withawebdiscussionslink_l_withawebdiscussionslink367", + "displayName": "With a Web discussions link (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withawebdiscussionslinkandanattachment", + "displayName": "With a Web discussions link and an attachment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withawebdiscussionslinkandanattachment_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withawebdiscussionslinkandanattachment_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_collaborationsettings~l_defaultmessagetextforareviewrequest_l_withawebdiscussionslinkandanattachment_l_withawebdiscussionslinkandanattachment370", + "displayName": "With a Web discussions link and an attachment (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_configurepresenceicons", + "displayName": "Configure presence icons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_configurepresenceicons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_configurepresenceicons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_configurepresenceicons_l_configurepresenceiconsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_configurepresenceicons_l_configurepresenceiconsdropid_0", + "displayName": "Display all", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_configurepresenceicons_l_configurepresenceiconsdropid_1", + "displayName": "Display some", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_configurepresenceicons_l_configurepresenceiconsdropid_2", + "displayName": "Display none", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_displaylegacygaldialog", + "displayName": "Display legacy GAL dialog (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_displaylegacygaldialog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_displaylegacygaldialog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_donotdisplayhovermenu", + "displayName": "Do not display Hover Menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_donotdisplayhovermenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_donotdisplayhovermenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_donotdisplayphotograph", + "displayName": "Do not display photograph (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_donotdisplayphotograph_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_donotdisplayphotograph_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_removememberoftab", + "displayName": "Remove Member Of tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_removememberoftab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_removememberoftab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_removeorganizationtab", + "displayName": "Remove Organization tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_removeorganizationtab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_removeorganizationtab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffclicktoimoption", + "displayName": "Turn off click to IM option (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffclicktoimoption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffclicktoimoption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffclicktotelephone", + "displayName": "Turn off click to telephone (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffclicktotelephone_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffclicktotelephone_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffpresenceintegration", + "displayName": "Turn off presence integration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffpresenceintegration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard_l_turnoffpresenceintegration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoffcontacttabcalendar", + "displayName": "Remove Calendar Line (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoffcontacttabcalendar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoffcontacttabcalendar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoffcontacttablocation", + "displayName": "Remove Location Line (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoffcontacttablocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoffcontacttablocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacebirthday", + "displayName": "Replace AD - Birthday (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacebirthday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacebirthday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacebirthday_l_birthdayadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacecompany", + "displayName": "Replace AD - Company (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacecompany_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacecompany_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacecompany_l_companyadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceemail", + "displayName": "Replace AD - E-mail (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceemail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceemail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceemail_l_emailadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehome", + "displayName": "Replace AD - Home (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehome_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehome_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehome_l_homeadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehome2", + "displayName": "Replace AD - Home2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehome2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehome2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehome2_l_home2adreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehomeadd", + "displayName": "Replace AD - Home Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehomeadd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehomeadd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacehomeadd_l_homeaddadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceim", + "displayName": "Replace AD - IM (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceim_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceim_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceim_l_imadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacemobile", + "displayName": "Replace AD - Mobile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacemobile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacemobile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacemobile_l_mobileadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceoffice", + "displayName": "Replace AD - Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceoffice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceoffice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceoffice_l_officeadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceother", + "displayName": "Replace AD - Other (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceother_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceother_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceother_l_otheradreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceotheradd", + "displayName": "Replace AD - Other Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceotheradd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceotheradd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceotheradd_l_otheraddadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceprofile", + "displayName": "Replace AD - Profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceprofile_l_profileadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacework", + "displayName": "Replace AD - Work (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacework_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacework_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacework_l_workadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacework2", + "displayName": "Replace AD - Work2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacework2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacework2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplacework2_l_work2adreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceworkadd", + "displayName": "Replace AD - Work Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceworkadd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceworkadd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceworkadd_l_workaddadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceworkfax", + "displayName": "Replace AD - WorkFax (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceworkfax_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceworkfax_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabadreplaceworkfax_l_workfaxadreplace", + "displayName": "AD Attribute: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacebirthday", + "displayName": "Replace Label - Birthday (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacebirthday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacebirthday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacebirthday_l_birthdaylabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacecompany", + "displayName": "Replace Label - Company (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacecompany_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacecompany_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacecompany_l_companylabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceemail", + "displayName": "Replace Label - E-mail (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceemail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceemail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceemail_l_emaillabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehome", + "displayName": "Replace Label - Home (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehome_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehome_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehome_l_homelabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehome2", + "displayName": "Replace Label - Home2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehome2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehome2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehome2_l_home2labelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehomeadd", + "displayName": "Replace Label - Home Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehomeadd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehomeadd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacehomeadd_l_homeaddlabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceim", + "displayName": "Replace Label - IM (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceim_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceim_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceim_l_imlabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacemobile", + "displayName": "Replace Label - Mobile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacemobile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacemobile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacemobile_l_mobilelabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceoffice", + "displayName": "Replace Label - Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceoffice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceoffice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceoffice_l_officelabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceother", + "displayName": "Replace Label - Other (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceother_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceother_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceother_l_otherlabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceotheradd", + "displayName": "Replace Label - Other Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceotheradd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceotheradd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceotheradd_l_otheraddlabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceprofile", + "displayName": "Replace Label - Profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceprofile_l_profilelabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacework", + "displayName": "Replace Label - Work (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacework_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacework_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacework_l_worklabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacework2", + "displayName": "Replace Label - Work2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacework2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacework2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplacework2_l_work2labelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceworkadd", + "displayName": "Replace Label - Work Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceworkadd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceworkadd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceworkadd_l_workaddlabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceworkfax", + "displayName": "Replace Label - WorkFax (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceworkfax_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceworkfax_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttablabelreplaceworkfax_l_workfaxlabelreplace", + "displayName": "Label: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacebirthday", + "displayName": "Replace MAPI - Birthday (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacebirthday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacebirthday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacebirthday_l_birthdaymapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacecompany", + "displayName": "Replace MAPI - Company (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacecompany_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacecompany_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacecompany_l_companymapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceemail", + "displayName": "Replace MAPI - E-mail (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceemail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceemail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceemail_l_emailmapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehome", + "displayName": "Replace MAPI - Home (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehome_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehome_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehome_l_homemapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehome2", + "displayName": "Replace MAPI - Home2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehome2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehome2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehome2_l_home2mapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehomeadd", + "displayName": "Replace MAPI - Home Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehomeadd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehomeadd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacehomeadd_l_homeaddmapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceim", + "displayName": "Replace MAPI - IM (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceim_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceim_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceim_l_immapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacemobile", + "displayName": "Replace MAPI - Mobile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacemobile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacemobile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacemobile_l_mobilemapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceoffice", + "displayName": "Replace MAPI - Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceoffice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceoffice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceoffice_l_officemapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceother", + "displayName": "Replace MAPI - Other (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceother_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceother_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceother_l_othermapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceotheradd", + "displayName": "Replace MAPI - Other Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceotheradd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceotheradd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceotheradd_l_otheraddmapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceprofile", + "displayName": "Replace MAPI - Profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceprofile_l_profilemapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacework", + "displayName": "Replace MAPI - Work (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacework_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacework_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacework_l_workmapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacework2", + "displayName": "Replace MAPI - Work2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacework2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacework2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplacework2_l_work2mapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceworkadd", + "displayName": "Replace MAPI - Work Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceworkadd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceworkadd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceworkadd_l_workaddmapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceworkfax", + "displayName": "Replace MAPI - WorkFax (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceworkfax_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceworkfax_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_contactcard~l_contacttab_l_turnoncontacttabmapireplaceworkfax_l_workfaxmapireplace", + "displayName": "MAPI Property: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_baseurl", + "displayName": "Base URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_baseurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_baseurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_baseurl_l_baseurl349", + "displayName": "Base URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_defaultbuttontext", + "displayName": "Default button text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_defaultbuttontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_defaultbuttontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_defaultbuttontext_l_defaultbuttontext350", + "displayName": "Default button text (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_defaultsaveprompttext", + "displayName": "Default save prompt text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_defaultsaveprompttext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_defaultsaveprompttext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_defaultsaveprompttext_l_defaultsaveprompttext352", + "displayName": "Default save prompt text (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_listoferrormessagestocustomize", + "displayName": "List of error messages to customize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_listoferrormessagestocustomize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_listoferrormessagestocustomize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize351", + "displayName": "List of error messages to customize (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize351_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize351_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_hidebuiltinshapepresetstyles", + "displayName": "Hide built-in shape style presets (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_hidebuiltinshapepresetstyles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_hidebuiltinshapepresetstyles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_tooltipfordisabledtoolbarbuttonsandmenuitems", + "displayName": "Tooltip for disabled toolbar buttons and menu items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_tooltipfordisabledtoolbarbuttonsandmenuitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_tooltipfordisabledtoolbarbuttonsandmenuitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_tooltipfordisabledtoolbarbuttonsandmenuitems_l_tooltipfordisabledtoolbarbuttonsandmenuitems353", + "displayName": "Tooltip for disabled toolbar buttons and menu items (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_turnoffscreenclipping", + "displayName": "Turn off screen clipping (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_turnoffscreenclipping_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_disableitemsinuserinterface_l_turnoffscreenclipping_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_dlp_l_policytipsenabled", + "displayName": "Enable DLP on application boot (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_dlp_l_policytipsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_dlp_l_policytipsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_disabledocumentinformationpanel", + "displayName": "Disable Document Information Panel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_disabledocumentinformationpanel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_disabledocumentinformationpanel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_documentinformationpanelbeaconingui", + "displayName": "Document Information Panel Beaconing UI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_documentinformationpanelbeaconingui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_documentinformationpanelbeaconingui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_documentinformationpanelbeaconingui_l_empty423", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_documentinformationpanelbeaconingui_l_empty423_0", + "displayName": "Never show UI", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_documentinformationpanelbeaconingui_l_empty423_1", + "displayName": "Always show UI", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_documentinformationpanelbeaconingui_l_empty423_2", + "displayName": "Show UI if XSN is in Internet Zone", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_offlinemodefordocumentinformationpanel", + "displayName": "Offline Mode for Document Information Panel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_offlinemodefordocumentinformationpanel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_offlinemodefordocumentinformationpanel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_offlinemodefordocumentinformationpanel_l_empty422", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_offlinemodefordocumentinformationpanel_l_empty422_0", + "displayName": "Disable Offline Mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_offlinemodefordocumentinformationpanel_l_empty422_1", + "displayName": "Enable Offline Mode, work offline now", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_offlinemodefordocumentinformationpanel_l_empty422_2", + "displayName": "Enable Offline Mode", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_trustcentersolution", + "displayName": "Trust Local Solution (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_trustcentersolution_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_trustcentersolution_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_trustcentersolution_l_empty421", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_trustcentersolution_l_empty421_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_documentinformationpanel_l_trustcentersolution_l_empty421_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_hidemissingcomponentdownloadhyperlinks", + "displayName": "Hide missing component download hyperlinks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_hidemissingcomponentdownloadhyperlinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_hidemissingcomponentdownloadhyperlinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_setdownloadlocationfornet20framework", + "displayName": "Set download location for Microsoft .NET Framework 2.0 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_setdownloadlocationfornet20framework_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_setdownloadlocationfornet20framework_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_setdownloadlocationfornet20framework_l_empty434", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_setdownloadlocationfornet20frameworklp", + "displayName": "Set download location for Microsoft .NET Framework 2.0 Language Pack (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_setdownloadlocationfornet20frameworklp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_setdownloadlocationfornet20frameworklp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_downloadingframeworkcomponents_l_setdownloadlocationfornet20frameworklp_l_empty435", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy1", + "displayName": "Places Bar Location 1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy1_l_placesbarname", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy1_l_placesbarpath", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy10", + "displayName": "Places Bar Location 10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy10_l_placesbarname227", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy10_l_placesbarpath228", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy2", + "displayName": "Places Bar Location 2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy2_l_placesbarname211", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy2_l_placesbarpath212", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy3", + "displayName": "Places Bar Location 3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy3_l_placesbarname213", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy3_l_placesbarpath214", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy4", + "displayName": "Places Bar Location 4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy4_l_placesbarname215", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy4_l_placesbarpath216", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy5", + "displayName": "Places Bar Location 5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy5_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy5_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy5_l_placesbarname217", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy5_l_placesbarpath218", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy6", + "displayName": "Places Bar Location 6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy6_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy6_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy6_l_placesbarname219", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy6_l_placesbarpath220", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy7", + "displayName": "Places Bar Location 7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy7_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy7_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy7_l_placesbarname221", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy7_l_placesbarpath222", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy8", + "displayName": "Places Bar Location 8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy8_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy8_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy8_l_placesbarname223", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy8_l_placesbarpath224", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy9", + "displayName": "Places Bar Location 9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy9_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy9_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy9_l_placesbarname225", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_placesbarlocations_l_placesbarlocationpolicy9_l_placesbarpath226", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing", + "displayName": "Activate Restricted Browsing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_access", + "displayName": "Microsoft Access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_access_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_access_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_excel", + "displayName": "Microsoft Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_excel_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_excel_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_infopath", + "displayName": "Microsoft InfoPath (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_infopath_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_infopath_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_onenote", + "displayName": "Microsoft OneNote (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_onenote_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_onenote_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_outlook", + "displayName": "Microsoft Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_outlook_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_outlook_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_powerpoint", + "displayName": "Microsoft PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_powerpoint_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_powerpoint_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_project", + "displayName": "Microsoft Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_project_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_project_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_publisher", + "displayName": "Microsoft Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_publisher_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_publisher_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_sharepoint", + "displayName": "Microsoft SharePoint Designer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_sharepoint_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_sharepoint_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_visio", + "displayName": "Microsoft Visio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_visio_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_visio_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_word", + "displayName": "Microsoft Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_word_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_activaterestrictedbrowsing_l_word_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_listofapprovedlocationspolicy", + "displayName": "Approve Locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_listofapprovedlocationspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_listofapprovedlocationspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_listofapprovedlocationspolicy_l_listofapprovedlocations", + "displayName": "List of Approved Locations: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_listofapprovedlocationspolicy_l_listofapprovedlocations_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_fileopensave~l_restrictedbrowsing_l_listofapprovedlocationspolicy_l_listofapprovedlocations_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disablemovie", + "displayName": "Disable First Run Movie (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disablemovie_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disablemovie_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disableofficefirstrun", + "displayName": "Disable Office First Run on application boot (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disableofficefirstrun_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_firstrun_l_disableofficefirstrun_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_allowroamingquickaccesstoolbarribboncustomizations", + "displayName": "Allow roaming of all user customizations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_allowroamingquickaccesstoolbarribboncustomizations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_allowroamingquickaccesstoolbarribboncustomizations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy", + "displayName": "Turn off user customizations via UI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiaccess", + "displayName": "Disallow in Access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiaccess_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiaccess_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiexcel", + "displayName": "Disallow in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiexcel_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiexcel_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiinfopath", + "displayName": "Disallow in InfoPath (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiinfopath_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiinfopath_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuionenote", + "displayName": "Disallow in OneNote (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuionenote_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuionenote_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuioutlook", + "displayName": "Disallow in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuioutlook_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuioutlook_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuipowerpoint", + "displayName": "Disallow in PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuipowerpoint_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuipowerpoint_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiproject", + "displayName": "Disallow in Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiproject_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiproject_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuipublisher", + "displayName": "Disallow in Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuipublisher_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuipublisher_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuispd", + "displayName": "Disallow in SharePoint Designer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuispd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuispd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuispw", + "displayName": "Disallow in SharePoint Workspace (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuispw_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuispw_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuivisio", + "displayName": "Disallow in Visio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuivisio_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuivisio_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiword", + "displayName": "Disallow in Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiword_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_disabletoolbarcustomizationuipolicy_l_disabletoolbarcustomizationuiword_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_donotshowscreentipsontoolbars", + "displayName": "Do not show ScreenTips on toolbars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_donotshowscreentipsontoolbars_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_donotshowscreentipsontoolbars_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_largeicons", + "displayName": "Large icons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_largeicons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_largeicons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_listfontnamesintheirfont", + "displayName": "List font names in their font (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_listfontnamesintheirfont_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_listfontnamesintheirfont_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations", + "displayName": "Menu animations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations_l_menuanimations209", + "displayName": "Menu animations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations_l_menuanimations209_0", + "displayName": "(System Default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations_l_menuanimations209_1", + "displayName": "Random", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations_l_menuanimations209_2", + "displayName": "Unfold", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations_l_menuanimations209_3", + "displayName": "Slide", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_menuanimations_l_menuanimations209_4", + "displayName": "Fade", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy", + "displayName": "Disable UI extending from documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyaccess", + "displayName": "Disallow in Access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyaccess_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyaccess_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyexcel", + "displayName": "Disallow in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyexcel_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyexcel_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyinfopath", + "displayName": "Disallow in InfoPath (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyinfopath_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyinfopath_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyoutlook", + "displayName": "Disallow in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyoutlook_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyoutlook_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicypowerpoint", + "displayName": "Disallow in PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicypowerpoint_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicypowerpoint_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyproject", + "displayName": "Disallow in Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyproject_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyproject_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicypublisher", + "displayName": "Disallow in Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicypublisher_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicypublisher_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyvisio", + "displayName": "Disallow in Visio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyvisio_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyvisio_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyword", + "displayName": "Disallow in Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyword_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_noextensibilitycustomizationfromdocumentpolicy_l_noextensibilitycustomizationfromdocumentpolicyword_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy", + "displayName": "Turn off all user customizations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyaccess", + "displayName": "Disallow in Access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyaccess_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyaccess_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyexcel", + "displayName": "Disallow in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyexcel_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyexcel_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyinfopath", + "displayName": "Disallow in InfoPath (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyinfopath_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyinfopath_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyonenote", + "displayName": "Disallow in OneNote (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyonenote_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyonenote_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyoutlook", + "displayName": "Disallow in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyoutlook_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyoutlook_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicypowerpoint", + "displayName": "Disallow in PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicypowerpoint_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicypowerpoint_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyproject", + "displayName": "Disallow in Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyproject_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyproject_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicypublisher", + "displayName": "Disallow in Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicypublisher_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicypublisher_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyspd", + "displayName": "Disallow in SharePoint Designer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyspd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyspd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyspw", + "displayName": "Disallow in SharePoint Workspace (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyspw_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyspw_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyvisio", + "displayName": "Disallow in Visio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyvisio_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyvisio_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyword", + "displayName": "Disallow in Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyword_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_nousercustomizationpolicy_l_nousercustomizationpolicyword_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_showshortcutkeysinscreentips", + "displayName": "Show shortcut keys in ScreenTips (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_showshortcutkeysinscreentips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize_l_showshortcutkeysinscreentips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_automaticdiscovery", + "displayName": "Automatic Discovery (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_automaticdiscovery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_automaticdiscovery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_automaticdiscovery_l_automaticdiscovery210", + "displayName": "Automatic Discovery (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_automaticdiscovery_l_automaticdiscovery210_on", + "displayName": "On", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_automaticdiscovery_l_automaticdiscovery210_off", + "displayName": "Off", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_disableuserfromsettingpersonalsiteasdefaultlocation", + "displayName": "Disable user from setting personal site as default location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_disableuserfromsettingpersonalsiteasdefaultlocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace_l_disableuserfromsettingpersonalsiteasdefaultlocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace~l_definesharedworkspaceurls_l_site1", + "displayName": "Site 1: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace~l_definesharedworkspaceurls_l_site1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace~l_definesharedworkspaceurls_l_site1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace~l_definesharedworkspaceurls_l_site1_l_name", + "displayName": "Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_gloabloptions~l_customize~l_sharedworkspace~l_definesharedworkspaceurls_l_site1_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_charttemplatesserverlocation", + "displayName": "Chart Templates Server Location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_charttemplatesserverlocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_charttemplatesserverlocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_charttemplatesserverlocation_l_location", + "displayName": "Location: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_enablemsgraphasdefaultchart", + "displayName": "Enable MS Graph as Default Chart Tool in PowerPoint and Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_enablemsgraphasdefaultchart_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_enablemsgraphasdefaultchart_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_graphgallerypath", + "displayName": "Graph gallery path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_graphgallerypath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_graphgallerypath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_graphsettings_l_graphgallerypath_l_graphgallerypath354", + "displayName": "Graph gallery path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_help_l_federatedsearchforhelp", + "displayName": "Federated search for help (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_help_l_federatedsearchforhelp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_help_l_federatedsearchforhelp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltincolorvariations", + "displayName": "Disable built-in color variations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltincolorvariations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltincolorvariations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltinigxgraphics", + "displayName": "Disable built-in graphics (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltinigxgraphics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltinigxgraphics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltinquickstyles", + "displayName": "Disable Built-in Quick Styles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltinquickstyles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_disablebuiltinquickstyles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel", + "displayName": "Error Severity Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel_l_errorseveritylevel419", + "displayName": "Error Severity Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel_l_errorseveritylevel419_0", + "displayName": "Errors only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel_l_errorseveritylevel419_1", + "displayName": "Level 1 warnings and below", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel_l_errorseveritylevel419_2", + "displayName": "Level 2 warnings and below", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel_l_errorseveritylevel419_3", + "displayName": "Level 3 warnings and below", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_errorseveritylevel_l_errorseveritylevel419_4", + "displayName": "All", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_logfileentriesnumber", + "displayName": "Log File Entries Number (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_logfileentriesnumber_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_logfileentriesnumber_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_logfileentriesnumber_l_empty420", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_logfilemaximumsize", + "displayName": "Log File Maximum Size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_logfilemaximumsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_logfilemaximumsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_igx_l_logfilemaximumsize_l_logfilemaximumsizepart", + "displayName": "Bytes: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setcommentfieldsforoutlookcontactsdictionary", + "displayName": "Set comment fields for Outlook Contacts Dictionary (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setcommentfieldsforoutlookcontactsdictionary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setcommentfieldsforoutlookcontactsdictionary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setcommentfieldsforoutlookcontactsdictionary_l_setcommentfieldsforoutlookcontactsdictionaryid", + "displayName": "Field identification letters: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setcommentfieldsforoutlookglobaladdresslistdictionary", + "displayName": "Set comment fields for Outlook Global Address List Dictionary (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setcommentfieldsforoutlookglobaladdresslistdictionary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setcommentfieldsforoutlookglobaladdresslistdictionary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setcommentfieldsforoutlookglobaladdresslistdictionary_l_setcommentfieldsforoutlookglobaladdresslistdictionaryid", + "displayName": "Field identification letters: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setupdateintervalforoutlookcontactsdictionary", + "displayName": "Set update interval for Outlook Contacts Dictionary (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setupdateintervalforoutlookcontactsdictionary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setupdateintervalforoutlookcontactsdictionary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setupdateintervalforoutlookcontactsdictionary_l_setupdateintervalforoutlookcontactsdictionaryspinid", + "displayName": "(in minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setupdateintervalforoutlookglobaladdresslistdictionary", + "displayName": "Set update interval for Outlook Global Address List Dictionary (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setupdateintervalforoutlookglobaladdresslistdictionary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setupdateintervalforoutlookglobaladdresslistdictionary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_setupdateintervalforoutlookglobaladdresslistdictionary_l_setupdateintervalforoutlookglobaladdresslistdictionaryspinid", + "displayName": "(in minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_turnoffoutlooknamedictionaries", + "displayName": "Turn off Outlook name dictionaries update (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_turnoffoutlooknamedictionaries_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_turnoffoutlooknamedictionaries_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_turnoffsharepointdictionary", + "displayName": "Turn off SharePoint dictionary update (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_turnoffsharepointdictionary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_imejapanese_l_turnoffsharepointdictionary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_improvederrorreporting_l_stopreportingerrormessages", + "displayName": "Stop reporting error messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_improvederrorreporting_l_stopreportingerrormessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_improvederrorreporting_l_stopreportingerrormessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_improvederrorreporting_l_stopreportingnoncriticalerrors", + "displayName": "Stop reporting non-critical errors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_improvederrorreporting_l_stopreportingnoncriticalerrors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_improvederrorreporting_l_stopreportingnoncriticalerrors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings_l_disableproofingtoolsadvertisement", + "displayName": "Notify users if they do not have proofing tools for a language they use (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings_l_disableproofingtoolsadvertisement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings_l_disableproofingtoolsadvertisement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_changeordeletelinktolanguagepackdownloadsite", + "displayName": "Change or delete link to language pack download site (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_changeordeletelinktolanguagepackdownloadsite_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_changeordeletelinktolanguagepackdownloadsite_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_changeordeletelinktolanguagepackdownloadsite_l_changeordeletelinktolanguagepackdownloadsiteid", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_changeordeletelinktoproofingtoolsdownloadsite", + "displayName": "Change or delete link to the proofing tools download site (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_changeordeletelinktoproofingtoolsdownloadsite_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_changeordeletelinktoproofingtoolsdownloadsite_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_changeordeletelinktoproofingtoolsdownloadsite_l_changeordeletelinktoproofingtoolsdownloadsiteid", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin", + "displayName": "Display help in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336", + "displayName": "Display help in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_0", + "displayName": "(same as menus and dialog boxes)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1078", + "displayName": "Afrikaans", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1052", + "displayName": "Albanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1118", + "displayName": "Amharic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1025", + "displayName": "Arabic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1067", + "displayName": "Armenian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1101", + "displayName": "Assamese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1068", + "displayName": "Azerbaijani (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2117", + "displayName": "Bangla (Bangladesh)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1093", + "displayName": "Bangla (India)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1069", + "displayName": "Basque", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1059", + "displayName": "Belarusian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_5146", + "displayName": "Bosnian (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1026", + "displayName": "Bulgarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1027", + "displayName": "Catalan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1170", + "displayName": "Central Kurdish (Iraq)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1116", + "displayName": "Cherokee", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2052", + "displayName": "Chinese (Simplified)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1028", + "displayName": "Chinese (Traditional)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1050", + "displayName": "Croatian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1029", + "displayName": "Czech", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1030", + "displayName": "Danish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1164", + "displayName": "Dari", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1043", + "displayName": "Dutch", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1033", + "displayName": "English", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1061", + "displayName": "Estonian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1124", + "displayName": "Filipino", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1035", + "displayName": "Finnish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1036", + "displayName": "French", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1110", + "displayName": "Galician", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1079", + "displayName": "Georgian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1031", + "displayName": "German", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1032", + "displayName": "Greek", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1095", + "displayName": "Gujarati", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1128", + "displayName": "Hausa (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1037", + "displayName": "Hebrew", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1081", + "displayName": "Hindi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1038", + "displayName": "Hungarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1039", + "displayName": "Icelandic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1136", + "displayName": "Igbo", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1057", + "displayName": "Indonesian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2141", + "displayName": "Inuktitut (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2108", + "displayName": "Irish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1076", + "displayName": "isiXhosa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1077", + "displayName": "isiZulu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1040", + "displayName": "Italian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1041", + "displayName": "Japanese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1099", + "displayName": "Kannada", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1087", + "displayName": "Kazakh", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1107", + "displayName": "Khmer", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1158", + "displayName": "K'iche", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1159", + "displayName": "Kinyarwanda", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1089", + "displayName": "Swahili", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1111", + "displayName": "Konkani", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1042", + "displayName": "Korean", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1088", + "displayName": "Kyrgyz", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1062", + "displayName": "Latvian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1063", + "displayName": "Lithuanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1134", + "displayName": "Luxembourgish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1086", + "displayName": "Malay (Malaysia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1100", + "displayName": "Malayalam", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1082", + "displayName": "Maltese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1153", + "displayName": "Maori", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1102", + "displayName": "Marathi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1104", + "displayName": "Mongolian (Cyrillic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1071", + "displayName": "Macedonian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1121", + "displayName": "Nepali", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1044", + "displayName": "Norwegian (Bokmal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2068", + "displayName": "Norwegian (Nynorsk)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1096", + "displayName": "Odia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1065", + "displayName": "Persian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1045", + "displayName": "Polish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1046", + "displayName": "Portuguese (Brazil)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2070", + "displayName": "Portuguese (Portugal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1094", + "displayName": "Punjabi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2118", + "displayName": "Punjabi (Pakistan)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_3179", + "displayName": "Quechua (Peru)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1048", + "displayName": "Romanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1049", + "displayName": "Russian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1169", + "displayName": "Scottish Gaelic (United Kingdom)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_3098", + "displayName": "Serbian (Cyrillic, Serbia and Montenegro (Former))", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_7194", + "displayName": "Serbian (Cyrillic, Bosnia and Herzegovina)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2074", + "displayName": "Serbian (Latin, Serbia and Montenegro (Former))", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1132", + "displayName": "Sesotho sa Leboa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1074", + "displayName": "Setswana", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2137", + "displayName": "Sindhi (Arabic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1115", + "displayName": "Sinhala", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1051", + "displayName": "Slovak", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1060", + "displayName": "Slovenian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_3082", + "displayName": "Spanish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1053", + "displayName": "Swedish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1064", + "displayName": "Tajik", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1097", + "displayName": "Tamil", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1092", + "displayName": "Tatar", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1098", + "displayName": "Telugu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1054", + "displayName": "Thai", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1139", + "displayName": "Tigrinya (Ethiopia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1055", + "displayName": "Turkish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1090", + "displayName": "Turkmen", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1058", + "displayName": "Ukrainian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1056", + "displayName": "Urdu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1152", + "displayName": "Uyghur (PRC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1091", + "displayName": "Uzbek (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_2051", + "displayName": "Valencian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1066", + "displayName": "Vietnamese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1106", + "displayName": "Welsh", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1160", + "displayName": "Wolof", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displayhelpin_l_displayhelpin336_1130", + "displayName": "Yoruba", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin", + "displayName": "Display menus and dialog boxes in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334", + "displayName": "Display menus and dialog boxes in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_0", + "displayName": "(same as the system)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1078", + "displayName": "Afrikaans", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1052", + "displayName": "Albanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1118", + "displayName": "Amharic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1025", + "displayName": "Arabic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1067", + "displayName": "Armenian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1101", + "displayName": "Assamese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1068", + "displayName": "Azerbaijani (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2117", + "displayName": "Bangla (Bangladesh)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1093", + "displayName": "Bangla (India)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1069", + "displayName": "Basque", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1059", + "displayName": "Belarusian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_5146", + "displayName": "Bosnian (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1026", + "displayName": "Bulgarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1027", + "displayName": "Catalan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1170", + "displayName": "Central Kurdish (Iraq)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1116", + "displayName": "Cherokee", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2052", + "displayName": "Chinese (Simplified)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1028", + "displayName": "Chinese (Traditional)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1050", + "displayName": "Croatian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1029", + "displayName": "Czech", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1030", + "displayName": "Danish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1164", + "displayName": "Dari", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1043", + "displayName": "Dutch", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1033", + "displayName": "English", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1061", + "displayName": "Estonian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1124", + "displayName": "Filipino", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1035", + "displayName": "Finnish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1036", + "displayName": "French", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1110", + "displayName": "Galician", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1079", + "displayName": "Georgian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1031", + "displayName": "German", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1032", + "displayName": "Greek", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1095", + "displayName": "Gujarati", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1128", + "displayName": "Hausa (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1037", + "displayName": "Hebrew", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1081", + "displayName": "Hindi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1038", + "displayName": "Hungarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1039", + "displayName": "Icelandic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1136", + "displayName": "Igbo", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1057", + "displayName": "Indonesian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2141", + "displayName": "Inuktitut (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2108", + "displayName": "Irish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1076", + "displayName": "isiXhosa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1077", + "displayName": "isiZulu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1040", + "displayName": "Italian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1041", + "displayName": "Japanese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1099", + "displayName": "Kannada", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1087", + "displayName": "Kazakh", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1107", + "displayName": "Khmer", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1158", + "displayName": "K'iche", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1159", + "displayName": "Kinyarwanda", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1088", + "displayName": "Kyrgyz", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1089", + "displayName": "Swahili", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1111", + "displayName": "Konkani", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1042", + "displayName": "Korean", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1062", + "displayName": "Latvian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1063", + "displayName": "Lithuanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1134", + "displayName": "Luxembourgish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1086", + "displayName": "Malay (Malaysia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1100", + "displayName": "Malayalam", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1082", + "displayName": "Maltese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1153", + "displayName": "Maori", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1102", + "displayName": "Marathi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1071", + "displayName": "Macedonian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1104", + "displayName": "Mongolian (Cyrillic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1121", + "displayName": "Nepali", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1044", + "displayName": "Norwegian (Bokmal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2068", + "displayName": "Norwegian (Nynorsk)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1096", + "displayName": "Odia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1065", + "displayName": "Persian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1045", + "displayName": "Polish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1046", + "displayName": "Portuguese (Brazil)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2070", + "displayName": "Portuguese (Portugal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1094", + "displayName": "Punjabi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2118", + "displayName": "Punjabi (Pakistan)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_3179", + "displayName": "Quechua (Peru)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1048", + "displayName": "Romanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1049", + "displayName": "Russian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1169", + "displayName": "Scottish Gaelic (United Kingdom)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_3098", + "displayName": "Serbian (Cyrillic, Serbia and Montenegro (Former))", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_7194", + "displayName": "Serbian (Cyrillic, Bosnia and Herzegovina)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2074", + "displayName": "Serbian (Latin, Serbia and Montenegro (Former))", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1132", + "displayName": "Sesotho sa Leboa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1074", + "displayName": "Setswana", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2137", + "displayName": "Sindhi (Arabic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1115", + "displayName": "Sinhala", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1051", + "displayName": "Slovak", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1060", + "displayName": "Slovenian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_3082", + "displayName": "Spanish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1053", + "displayName": "Swedish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1064", + "displayName": "Tajik", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1097", + "displayName": "Tamil", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1092", + "displayName": "Tatar", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1098", + "displayName": "Telugu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1054", + "displayName": "Thai", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1139", + "displayName": "Tigrinya (Ethiopia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1055", + "displayName": "Turkish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1090", + "displayName": "Turkmen", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1058", + "displayName": "Ukrainian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1056", + "displayName": "Urdu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1152", + "displayName": "Uyghur (PRC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1091", + "displayName": "Uzbek (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_2051", + "displayName": "Valencian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1066", + "displayName": "Vietnamese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1106", + "displayName": "Welsh", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1160", + "displayName": "Wolof", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_displaylanguage_l_displaymenusanddialogboxesin_l_displaymenusanddialogboxesin334_1130", + "displayName": "Yoruba", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage", + "displayName": "Primary Editing Language (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341", + "displayName": "Primary Editing Language (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1078", + "displayName": "Afrikaans", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1052", + "displayName": "Albanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1156", + "displayName": "Alsatian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1118", + "displayName": "Amharic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_5121", + "displayName": "Arabic (Algeria)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_15361", + "displayName": "Arabic (Bahrain)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3073", + "displayName": "Arabic (Egypt)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2049", + "displayName": "Arabic (Iraq)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_11265", + "displayName": "Arabic (Jordan)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_13313", + "displayName": "Arabic (Kuwait)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_12289", + "displayName": "Arabic (Lebanon)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_4097", + "displayName": "Arabic (Libya)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_6145", + "displayName": "Arabic (Morocco)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_8193", + "displayName": "Arabic (Oman)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_16385", + "displayName": "Arabic (Qatar)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1025", + "displayName": "Arabic (Saudi Arabia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_10241", + "displayName": "Arabic (Syria)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_7169", + "displayName": "Arabic (Tunisia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_14337", + "displayName": "Arabic (U.A.E.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_9217", + "displayName": "Arabic (Yemen)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1067", + "displayName": "Armenian (Armenia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1101", + "displayName": "Assamese (India)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2092", + "displayName": "Azerbaijani (Cyrillic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1068", + "displayName": "Azerbaijani (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2117", + "displayName": "Bangla (Bangladesh)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1093", + "displayName": "Bangla (India)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1133", + "displayName": "Bashkir", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1069", + "displayName": "Basque", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1059", + "displayName": "Belarusian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_8218", + "displayName": "Bosnian (Cyrillic, Bosnia and Herzegovina)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_5146", + "displayName": "Bosnian (Latin, Bosnia and Herzegovina)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1150", + "displayName": "Breton", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1026", + "displayName": "Bulgarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1109", + "displayName": "Burmese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1027", + "displayName": "Catalan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1170", + "displayName": "Central Kurdish (Iraq)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1116", + "displayName": "Cherokee", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2052", + "displayName": "Chinese (PRC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3076", + "displayName": "Chinese (Hong Kong S.A.R.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_5124", + "displayName": "Chinese (Macao S.A.R.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_4100", + "displayName": "Chinese (Singapore)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1028", + "displayName": "Chinese (Taiwan)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1155", + "displayName": "Corsican", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_4122", + "displayName": "Croatian (Bosnia and Herzegovina)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1050", + "displayName": "Croatian (Croatia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1029", + "displayName": "Czech", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1030", + "displayName": "Danish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1164", + "displayName": "Dari", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1125", + "displayName": "Divehi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2067", + "displayName": "Dutch (Belgium)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1043", + "displayName": "Dutch (Netherlands)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1126", + "displayName": "Edo", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3081", + "displayName": "English (Australia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_10249", + "displayName": "English (Belize)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_4105", + "displayName": "English (Canada)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_9225", + "displayName": "English (Caribbean)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_15369", + "displayName": "English (Hong Kong S.A.R.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_16393", + "displayName": "English (India)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_14345", + "displayName": "English (Indonesia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_6153", + "displayName": "English (Ireland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_8201", + "displayName": "English (Jamaica)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_17417", + "displayName": "English (Malaysia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_5129", + "displayName": "English (New Zealand)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_13321", + "displayName": "English (Philippines)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_18441", + "displayName": "English (Singapore)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_7177", + "displayName": "English (South Africa)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_11273", + "displayName": "English (Trinidad and Tobago)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2057", + "displayName": "English (U.K.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1033", + "displayName": "English (U.S.)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_12297", + "displayName": "English (Zimbabwe)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1061", + "displayName": "Estonian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1080", + "displayName": "Faeroese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1124", + "displayName": "Filipino", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1035", + "displayName": "Finnish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2060", + "displayName": "French (Belgium)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_11276", + "displayName": "French (Cameroon)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3084", + "displayName": "French (Canada)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_7180", + "displayName": "French (Caribbean)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_9228", + "displayName": "French (Congo (DRC))", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_12300", + "displayName": "French (Côte d'Ivoire)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1036", + "displayName": "French (France)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_15372", + "displayName": "French (Haiti)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_5132", + "displayName": "French (Luxembourg)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_13324", + "displayName": "French (Mali)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_6156", + "displayName": "French (Monaco)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_14348", + "displayName": "French (Morocco)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_8204", + "displayName": "French (Reunion)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_10252", + "displayName": "French (Senegal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_4108", + "displayName": "French (Switzerland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1122", + "displayName": "Frisian (Netherlands)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1127", + "displayName": "Fulfulde", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1169", + "displayName": "Scottish Gaelic (United Kingdom)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1110", + "displayName": "Galician", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1079", + "displayName": "Georgian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3079", + "displayName": "German (Austria)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1031", + "displayName": "German (Germany)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_5127", + "displayName": "German (Liechtenstein)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_4103", + "displayName": "German (Luxembourg)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2055", + "displayName": "German (Switzerland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1032", + "displayName": "Greek", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1135", + "displayName": "Greenlandic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1140", + "displayName": "Guarani", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1095", + "displayName": "Gujarati", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1128", + "displayName": "Hausa (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1141", + "displayName": "Hawaiian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1037", + "displayName": "Hebrew (Israel)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1081", + "displayName": "Hindi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1038", + "displayName": "Hungarian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1129", + "displayName": "Ibibio", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1039", + "displayName": "Icelandic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1136", + "displayName": "Igbo", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1057", + "displayName": "Indonesian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2141", + "displayName": "Inuktitut (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1117", + "displayName": "Inuktitut (Syllabics)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2108", + "displayName": "Irish (Ireland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1077", + "displayName": "isiZulu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1076", + "displayName": "isiXhosa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1040", + "displayName": "Italian (Italy)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2064", + "displayName": "Italian (Switzerland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1041", + "displayName": "Japanese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1099", + "displayName": "Kannada", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1137", + "displayName": "Kanuri", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1120", + "displayName": "Kashmiri (Arabic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2144", + "displayName": "Kashmiri (Devanagari)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1087", + "displayName": "Kazakh", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1107", + "displayName": "Khmer", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1158", + "displayName": "K'iche", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1159", + "displayName": "Kinyarwanda", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1111", + "displayName": "Konkani", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1042", + "displayName": "Korean", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1088", + "displayName": "Kyrgyz", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1108", + "displayName": "Lao", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1142", + "displayName": "Latin", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1062", + "displayName": "Latvian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1063", + "displayName": "Lithuanian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1134", + "displayName": "Luxembourgish (Luxembourg)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1071", + "displayName": "Macedonian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2110", + "displayName": "Malay (Brunei)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1086", + "displayName": "Malay (Malaysia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1100", + "displayName": "Malayalam", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1082", + "displayName": "Maltese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1112", + "displayName": "Manipuri", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1153", + "displayName": "Maori", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1146", + "displayName": "Mapudungun", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1102", + "displayName": "Marathi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1148", + "displayName": "Mohawk", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1104", + "displayName": "Mongolian (Cyrillic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2128", + "displayName": "Mongolian (Traditional Mongolian)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2145", + "displayName": "Nepali (India)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1121", + "displayName": "Nepali (Nepal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1044", + "displayName": "Norwegian (Bokmål)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2068", + "displayName": "Norwegian (Nynorsk)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1154", + "displayName": "Occitan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1138", + "displayName": "Oromo", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1096", + "displayName": "Odia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1145", + "displayName": "Papiamentu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1123", + "displayName": "Pashto", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1065", + "displayName": "Persian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1045", + "displayName": "Polish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1046", + "displayName": "Portuguese (Brazil)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2070", + "displayName": "Portuguese (Portugal)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1094", + "displayName": "Punjabi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2118", + "displayName": "Punjabi (Pakistan)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1131", + "displayName": "Quechua (Bolivia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2155", + "displayName": "Quechua (Ecuador)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3179", + "displayName": "Quechua (Peru)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1047", + "displayName": "Romansh (Switzerland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2072", + "displayName": "Romanian (Moldova)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1048", + "displayName": "Romanian (Romania)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2073", + "displayName": "Russian (Moldova)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1049", + "displayName": "Russian (Russia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_9275", + "displayName": "Sami, Inari (Finland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_4155", + "displayName": "Sami, Lule (Norway)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_5179", + "displayName": "Sami, Lule (Sweden)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3131", + "displayName": "Sami, Northern (Finland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1083", + "displayName": "Sami, Northern (Norway)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2107", + "displayName": "Sami, Northern (Sweden)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_8251", + "displayName": "Sami, Skolt (Finland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_6203", + "displayName": "Sami, Southern (Norway)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_7227", + "displayName": "Sami, Southern (Sweden)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1103", + "displayName": "Sanskrit", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_7194", + "displayName": "Serbian (Cyrillic, Bosnia and Herzegovina)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_6170", + "displayName": "Serbian (Latin, Bosnia and Herzegovina)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3098", + "displayName": "Serbian (Cyrillic, Serbia and Montenegro (Former))", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_10266", + "displayName": "Serbian (Cyrillic, Serbia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_12314", + "displayName": "Serbian (Cyrillic, Montenegro)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2074", + "displayName": "Serbian (Latin, Serbia and Montenegro (Former))", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_11290", + "displayName": "Serbian (Latin, Montenegro)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_9242", + "displayName": "Serbian (Latin, Serbia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1072", + "displayName": "Sesotho", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1132", + "displayName": "Sesotho sa Leboa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1074", + "displayName": "Setswana", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1113", + "displayName": "Sindhi (Devanagari)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2137", + "displayName": "Sindhi (Arabic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1115", + "displayName": "Sinhala", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1051", + "displayName": "Slovak", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1060", + "displayName": "Slovenian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1143", + "displayName": "Somali", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2094", + "displayName": "Lower Sorbian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1070", + "displayName": "Upper Sorbian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_11274", + "displayName": "Spanish (Argentina)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_16394", + "displayName": "Spanish (Bolivia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_13322", + "displayName": "Spanish (Chile)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_9226", + "displayName": "Spanish (Colombia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_5130", + "displayName": "Spanish (Costa Rica)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_7178", + "displayName": "Spanish (Dominican Republic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_12298", + "displayName": "Spanish (Ecuador)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_17418", + "displayName": "Spanish (El Salvador)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_4106", + "displayName": "Spanish (Guatemala)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_18442", + "displayName": "Spanish (Honduras)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2058", + "displayName": "Spanish (Mexico)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_19466", + "displayName": "Spanish (Nicaragua)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_6154", + "displayName": "Spanish (Panama)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_15370", + "displayName": "Spanish (Paraguay)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_10250", + "displayName": "Spanish (Peru)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_20490", + "displayName": "Spanish (Puerto Rico)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_3082", + "displayName": "Spanish (Spain)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_21514", + "displayName": "Spanish (United States)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_14346", + "displayName": "Spanish (Uruguay)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_8202", + "displayName": "Spanish (Venezuela)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1089", + "displayName": "Swahili", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2077", + "displayName": "Swedish (Finland)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1053", + "displayName": "Swedish (Sweden)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1114", + "displayName": "Syriac", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2143", + "displayName": "Tamazight (Latin, Algeria)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1119", + "displayName": "Tamazight (Arabic, Morocco)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1097", + "displayName": "Tamil", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1092", + "displayName": "Tatar", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1098", + "displayName": "Telugu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1064", + "displayName": "Tajik", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1054", + "displayName": "Thai", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1105", + "displayName": "Tibetan (PRC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2163", + "displayName": "Tigrinya (Eritrea)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1139", + "displayName": "Tigrinya (Ethiopia)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1055", + "displayName": "Turkish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1090", + "displayName": "Turkmen", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1152", + "displayName": "Uyghur (PRC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1058", + "displayName": "Ukrainian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1056", + "displayName": "Urdu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2115", + "displayName": "Uzbek (Cyrillic)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1091", + "displayName": "Uzbek (Latin)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_2051", + "displayName": "Valencian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1075", + "displayName": "Venda", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1066", + "displayName": "Vietnamese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1106", + "displayName": "Welsh", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1160", + "displayName": "Wolof", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1073", + "displayName": "Xitsonga", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1157", + "displayName": "Sakha", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1144", + "displayName": "Yi (PRC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1085", + "displayName": "Yiddish", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages_l_primaryeditinglanguage_l_primaryeditinglanguage341_1130", + "displayName": "Yoruba", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_afrikaans", + "displayName": "Afrikaans (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_afrikaans_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_afrikaans_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_albanian", + "displayName": "Albanian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_albanian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_albanian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_alsatian", + "displayName": "Alsatian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_alsatian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_alsatian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_amharic", + "displayName": "Amharic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_amharic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_amharic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicalgeria", + "displayName": "Arabic (Algeria) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicalgeria_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicalgeria_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicbahrain", + "displayName": "Arabic (Bahrain) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicbahrain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicbahrain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicegypt", + "displayName": "Arabic (Egypt) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicegypt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicegypt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiciraq", + "displayName": "Arabic (Iraq) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiciraq_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiciraq_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicjordan", + "displayName": "Arabic (Jordan) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicjordan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicjordan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabickuwait", + "displayName": "Arabic (Kuwait) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabickuwait_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabickuwait_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiclebanon", + "displayName": "Arabic (Lebanon) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiclebanon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiclebanon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiclibya", + "displayName": "Arabic (Libya) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiclibya_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabiclibya_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicmorocco", + "displayName": "Arabic (Morocco) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicmorocco_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicmorocco_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicoman", + "displayName": "Arabic (Oman) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicoman_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicoman_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicqatar", + "displayName": "Arabic (Qatar) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicqatar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicqatar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicsaudiarabia", + "displayName": "Arabic (Saudi Arabia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicsaudiarabia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicsaudiarabia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicsyria", + "displayName": "Arabic (Syria) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicsyria_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicsyria_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabictunisia", + "displayName": "Arabic (Tunisia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabictunisia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabictunisia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicuae", + "displayName": "Arabic (U.A.E.) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicuae_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicuae_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicyemen", + "displayName": "Arabic (Yemen) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicyemen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_arabicyemen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_armenianarmenia", + "displayName": "Armenian (Armenia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_armenianarmenia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_armenianarmenia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_assameseindia", + "displayName": "Assamese (India) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_assameseindia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_assameseindia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_azerbaijanicyrillic", + "displayName": "Azerbaijani (Cyrillic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_azerbaijanicyrillic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_azerbaijanicyrillic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_azerbaijanilatin", + "displayName": "Azerbaijani (Latin) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_azerbaijanilatin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_azerbaijanilatin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_banglabangladesh", + "displayName": "Bangla (Bangladesh) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_banglabangladesh_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_banglabangladesh_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_banglaindia", + "displayName": "Bangla (India) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_banglaindia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_banglaindia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bashkir", + "displayName": "Bashkir (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bashkir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bashkir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_basque", + "displayName": "Basque (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_basque_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_basque_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_belarusian", + "displayName": "Belarusian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_belarusian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_belarusian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bosniancyrillicbosniaandherzegovina", + "displayName": "Bosnian (Cyrillic, Bosnia and Herzegovina) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bosniancyrillicbosniaandherzegovina_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bosniancyrillicbosniaandherzegovina_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bosnianlatinbosniaandherzegovina", + "displayName": "Bosnian (Latin, Bosnia and Herzegovina) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bosnianlatinbosniaandherzegovina_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bosnianlatinbosniaandherzegovina_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_breton", + "displayName": "Breton (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_breton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_breton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bulgarian", + "displayName": "Bulgarian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bulgarian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_bulgarian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_burmese", + "displayName": "Burmese (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_burmese_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_burmese_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_catalan", + "displayName": "Catalan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_catalan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_catalan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_centralkurdishiraq", + "displayName": "Central Kurdish (Iraq) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_centralkurdishiraq_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_centralkurdishiraq_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_cherokee", + "displayName": "Cherokee (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_cherokee_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_cherokee_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesehongkongsar", + "displayName": "Chinese (Hong Kong S.A.R.) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesehongkongsar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesehongkongsar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesemacaosar", + "displayName": "Chinese (Macao S.A.R.) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesemacaosar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesemacaosar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chineseprc", + "displayName": "Chinese (PRC) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chineseprc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chineseprc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesesingapore", + "displayName": "Chinese (Singapore) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesesingapore_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesesingapore_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesetaiwan", + "displayName": "Chinese (Taiwan) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesetaiwan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_chinesetaiwan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_corsican", + "displayName": "Corsican (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_corsican_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_corsican_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_croatianbosniaandherzegovina", + "displayName": "Croatian (Bosnia and Herzegovina) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_croatianbosniaandherzegovina_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_croatianbosniaandherzegovina_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_croatiancroatia", + "displayName": "Croatian (Croatia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_croatiancroatia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_croatiancroatia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_czech", + "displayName": "Czech (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_czech_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_czech_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_danish", + "displayName": "Danish (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_danish_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_danish_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dari", + "displayName": "Dari (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dari_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dari_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_divehi", + "displayName": "Divehi (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_divehi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_divehi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dutchbelgium", + "displayName": "Dutch (Belgium) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dutchbelgium_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dutchbelgium_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dutchnetherlands", + "displayName": "Dutch (Netherlands) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dutchnetherlands_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_dutchnetherlands_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_edo", + "displayName": "Edo (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_edo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_edo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishaustralia", + "displayName": "English (Australia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishaustralia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishaustralia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishbelize", + "displayName": "English (Belize) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishbelize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishbelize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishcanada", + "displayName": "English (Canada) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishcanada_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishcanada_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishcaribbean", + "displayName": "English (Caribbean) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishcaribbean_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishcaribbean_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishhongkongsar", + "displayName": "English (Hong Kong S.A.R.) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishhongkongsar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishhongkongsar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishindia", + "displayName": "English (India) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishindia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishindia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishindonesia", + "displayName": "English (Indonesia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishindonesia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishindonesia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishireland", + "displayName": "English (Ireland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishireland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishireland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishjamaica", + "displayName": "English (Jamaica) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishjamaica_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishjamaica_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishmalaysia", + "displayName": "English (Malaysia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishmalaysia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishmalaysia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishnewzealand", + "displayName": "English (New Zealand) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishnewzealand_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishnewzealand_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishphilippines", + "displayName": "English (Philippines) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishphilippines_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishphilippines_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishsingapore", + "displayName": "English (Singapore) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishsingapore_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishsingapore_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishsouthafrica", + "displayName": "English (South Africa) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishsouthafrica_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishsouthafrica_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishtrinidadandtobago", + "displayName": "English (Trinidad and Tobago) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishtrinidadandtobago_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishtrinidadandtobago_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishuk", + "displayName": "English (U.K.) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishuk_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishuk_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishus", + "displayName": "English (U.S.) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishus_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishus_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishzimbabwe", + "displayName": "English (Zimbabwe) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishzimbabwe_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_englishzimbabwe_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_estonian", + "displayName": "Estonian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_estonian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_estonian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_faeroese", + "displayName": "Faeroese (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_faeroese_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_faeroese_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_filipino", + "displayName": "Filipino (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_filipino_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_filipino_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_finnish", + "displayName": "Finnish (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_finnish_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_finnish_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchbelgium", + "displayName": "French (Belgium) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchbelgium_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchbelgium_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcameroon", + "displayName": "French (Cameroon) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcameroon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcameroon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcanada", + "displayName": "French (Canada) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcanada_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcanada_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcaribbean", + "displayName": "French (Caribbean) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcaribbean_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcaribbean_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcongodrc", + "displayName": "French (Congo (DRC)) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcongodrc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcongodrc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcotedivoire", + "displayName": "French (Côte d'Ivoire) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcotedivoire_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchcotedivoire_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchfrance", + "displayName": "French (France) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchfrance_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchfrance_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchhaiti", + "displayName": "French (Haiti) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchhaiti_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchhaiti_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchluxembourg", + "displayName": "French (Luxembourg) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchluxembourg_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchluxembourg_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmali", + "displayName": "French (Mali) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmali_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmali_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmonaco", + "displayName": "French (Monaco) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmonaco_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmonaco_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmorocco", + "displayName": "French (Morocco) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmorocco_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchmorocco_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchreunion", + "displayName": "French (Reunion) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchreunion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchreunion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchsenegal", + "displayName": "French (Senegal) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchsenegal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchsenegal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchswitzerland", + "displayName": "French (Switzerland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchswitzerland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frenchswitzerland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frisiannetherlands", + "displayName": "Frisian (Netherlands) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frisiannetherlands_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_frisiannetherlands_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_fulfulde", + "displayName": "Fulfulde (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_fulfulde_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_fulfulde_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_galician", + "displayName": "Galician (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_galician_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_galician_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_georgian", + "displayName": "Georgian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_georgian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_georgian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanaustria", + "displayName": "German (Austria) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanaustria_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanaustria_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germangermany", + "displayName": "German (Germany) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germangermany_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germangermany_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanliechtenstein", + "displayName": "German (Liechtenstein) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanliechtenstein_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanliechtenstein_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanluxembourg", + "displayName": "German (Luxembourg) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanluxembourg_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanluxembourg_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanswitzerland", + "displayName": "German (Switzerland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanswitzerland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_germanswitzerland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_greek", + "displayName": "Greek (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_greek_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_greek_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_greenlandic", + "displayName": "Greenlandic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_greenlandic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_greenlandic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_guarani", + "displayName": "Guarani (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_guarani_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_guarani_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_gujarati", + "displayName": "Gujarati (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_gujarati_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_gujarati_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hausa", + "displayName": "Hausa (Latin) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hausa_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hausa_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hawaiian", + "displayName": "Hawaiian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hawaiian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hawaiian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hebrewisrael", + "displayName": "Hebrew (Israel) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hebrewisrael_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hebrewisrael_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hindi", + "displayName": "Hindi (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hindi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hindi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hungarian", + "displayName": "Hungarian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hungarian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_hungarian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_ibibio", + "displayName": "Ibibio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_ibibio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_ibibio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_icelandic", + "displayName": "Icelandic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_icelandic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_icelandic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_igbo", + "displayName": "Igbo (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_igbo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_igbo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_indonesian", + "displayName": "Indonesian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_indonesian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_indonesian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_inuktitutlatin", + "displayName": "Inuktitut (Latin) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_inuktitutlatin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_inuktitutlatin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_inuktitutsyllabics", + "displayName": "Inuktitut (Syllabics) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_inuktitutsyllabics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_inuktitutsyllabics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_irishireland", + "displayName": "Irish (Ireland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_irishireland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_irishireland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_isixhosa", + "displayName": "isiXhosa (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_isixhosa_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_isixhosa_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_isizulu", + "displayName": "isiZulu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_isizulu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_isizulu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_italianitaly", + "displayName": "Italian (Italy) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_italianitaly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_italianitaly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_italianswitzerland", + "displayName": "Italian (Switzerland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_italianswitzerland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_italianswitzerland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_japanese", + "displayName": "Japanese (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_japanese_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_japanese_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kannada", + "displayName": "Kannada (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kannada_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kannada_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kanuri", + "displayName": "Kanuri (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kanuri_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kanuri_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kashmiriarabic", + "displayName": "Kashmiri (Arabic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kashmiriarabic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kashmiriarabic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kashmiridevanagari", + "displayName": "Kashmiri (Devanagari) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kashmiridevanagari_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kashmiridevanagari_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kazakh", + "displayName": "Kazakh (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kazakh_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kazakh_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_khmer", + "displayName": "Khmer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_khmer_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_khmer_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kiche", + "displayName": "K'iche (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kiche_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kiche_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kinyarwanda", + "displayName": "Kinyarwanda (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kinyarwanda_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kinyarwanda_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_konkani", + "displayName": "Konkani (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_konkani_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_konkani_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_korean", + "displayName": "Korean (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_korean_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_korean_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kyrgyz", + "displayName": "Kyrgyz (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kyrgyz_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_kyrgyz_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lao", + "displayName": "Lao (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lao_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lao_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_latin", + "displayName": "Latin (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_latin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_latin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_latvian", + "displayName": "Latvian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_latvian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_latvian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lithuanian", + "displayName": "Lithuanian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lithuanian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lithuanian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lowersorbian", + "displayName": "Lower Sorbian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lowersorbian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_lowersorbian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_luxembourgishluxembourg", + "displayName": "Luxembourgish (Luxembourg) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_luxembourgishluxembourg_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_luxembourgishluxembourg_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_macedonian", + "displayName": "Macedonian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_macedonian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_macedonian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malayalam", + "displayName": "Malayalam (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malayalam_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malayalam_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malaybrunei", + "displayName": "Malay (Brunei) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malaybrunei_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malaybrunei_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malaymalaysia", + "displayName": "Malay (Malaysia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malaymalaysia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_malaymalaysia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_maltese", + "displayName": "Maltese (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_maltese_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_maltese_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_manipuri", + "displayName": "Manipuri (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_manipuri_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_manipuri_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_maori", + "displayName": "Maori (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_maori_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_maori_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mapudungun", + "displayName": "Mapudungun (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mapudungun_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mapudungun_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_marathi", + "displayName": "Marathi (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_marathi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_marathi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mohawk", + "displayName": "Mohawk (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mohawk_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mohawk_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mongoliancyrillic", + "displayName": "Mongolian (Cyrillic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mongoliancyrillic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mongoliancyrillic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mongoliantraditionalmongolian", + "displayName": "Mongolian (Traditional Mongolian) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mongoliantraditionalmongolian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_mongoliantraditionalmongolian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_nepaliindia", + "displayName": "Nepali (India) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_nepaliindia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_nepaliindia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_nepalinepal", + "displayName": "Nepali (Nepal) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_nepalinepal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_nepalinepal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_norwegianbokml", + "displayName": "Norwegian (Bokmål) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_norwegianbokml_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_norwegianbokml_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_norwegiannynorsk", + "displayName": "Norwegian (Nynorsk) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_norwegiannynorsk_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_norwegiannynorsk_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_occitan", + "displayName": "Occitan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_occitan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_occitan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_odia", + "displayName": "Odia (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_odia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_odia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_oromo", + "displayName": "Oromo (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_oromo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_oromo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_papiamentu", + "displayName": "Papiamentu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_papiamentu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_papiamentu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_pashto", + "displayName": "Pashto (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_pashto_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_pashto_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_persian", + "displayName": "Persian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_persian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_persian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_polish", + "displayName": "Polish (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_polish_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_polish_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_portuguesebrazil", + "displayName": "Portuguese (Brazil) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_portuguesebrazil_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_portuguesebrazil_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_portugueseportugal", + "displayName": "Portuguese (Portugal) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_portugueseportugal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_portugueseportugal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_punjabi", + "displayName": "Punjabi (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_punjabi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_punjabi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_punjabipakistan", + "displayName": "Punjabi (Pakistan) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_punjabipakistan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_punjabipakistan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuabolivia", + "displayName": "Quechua (Bolivia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuabolivia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuabolivia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuaecuador", + "displayName": "Quechua (Ecuador) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuaecuador_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuaecuador_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuaperu", + "displayName": "Quechua (Peru) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuaperu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_quechuaperu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanianmoldova", + "displayName": "Romanian (Moldova) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanianmoldova_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanianmoldova_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanianromania", + "displayName": "Romanian (Romania) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanianromania_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanianromania_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanshswitzerland", + "displayName": "Romansh (Switzerland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanshswitzerland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_romanshswitzerland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_russianmoldova", + "displayName": "Russian (Moldova) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_russianmoldova_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_russianmoldova_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_russianrussia", + "displayName": "Russian (Russia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_russianrussia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_russianrussia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sakha", + "displayName": "Sakha (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sakha_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sakha_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samiinarifinland", + "displayName": "Sami, Inari (Finland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samiinarifinland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samiinarifinland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samilulenorway", + "displayName": "Sami, Lule (Norway) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samilulenorway_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samilulenorway_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samilulesweden", + "displayName": "Sami, Lule (Sweden) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samilulesweden_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samilulesweden_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernfinland", + "displayName": "Sami, Northern (Finland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernfinland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernfinland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernnorway", + "displayName": "Sami, Northern (Norway) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernnorway_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernnorway_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernsweden", + "displayName": "Sami, Northern (Sweden) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernsweden_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_saminorthernsweden_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samiskoltfinland", + "displayName": "Sami, Skolt (Finland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samiskoltfinland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samiskoltfinland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samisouthernnorway", + "displayName": "Sami, Southern (Norway) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samisouthernnorway_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samisouthernnorway_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samisouthernsweden", + "displayName": "Sami, Southern (Sweden) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samisouthernsweden_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_samisouthernsweden_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sanskrit", + "displayName": "Sanskrit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sanskrit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sanskrit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_scottishgaelicunitedkingdom", + "displayName": "Scottish Gaelic (United Kingdom) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_scottishgaelicunitedkingdom_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_scottishgaelicunitedkingdom_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicbosniaandherzegovina", + "displayName": "Serbian (Cyrillic, Bosnia and Herzegovina) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicbosniaandherzegovina_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicbosniaandherzegovina_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicmontenegro", + "displayName": "Serbian (Cyrillic, Montenegro) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicmontenegro_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicmontenegro_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicserbia", + "displayName": "Serbian (Cyrillic, Serbia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicserbia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicserbia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicserbiaandmontenegro", + "displayName": "Serbian (Cyrillic, Serbia and Montenegro (Former)) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicserbiaandmontenegro_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbiancyrillicserbiaandmontenegro_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinbosniaandherzegovina", + "displayName": "Serbian (Latin, Bosnia and Herzegovina) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinbosniaandherzegovina_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinbosniaandherzegovina_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinmontenegro", + "displayName": "Serbian (Latin, Montenegro) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinmontenegro_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinmontenegro_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinserbia", + "displayName": "Serbian (Latin, Serbia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinserbia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinserbia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinserbiaandmontenegro", + "displayName": "Serbian (Latin, Serbia and Montenegro (Former)) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinserbiaandmontenegro_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_serbianlatinserbiaandmontenegro_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sesotho", + "displayName": "Sesotho (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sesotho_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sesotho_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sesothosaleboa", + "displayName": "Sesotho sa Leboa (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sesothosaleboa_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sesothosaleboa_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_setswana", + "displayName": "Setswana (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_setswana_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_setswana_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sindhiarabic", + "displayName": "Sindhi (Arabic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sindhiarabic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sindhiarabic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sindhidevanagari", + "displayName": "Sindhi (Devanagari) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sindhidevanagari_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sindhidevanagari_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sinhala", + "displayName": "Sinhala (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sinhala_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_sinhala_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_slovak", + "displayName": "Slovak (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_slovak_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_slovak_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_slovenian", + "displayName": "Slovenian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_slovenian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_slovenian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_somali", + "displayName": "Somali (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_somali_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_somali_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishargentina", + "displayName": "Spanish (Argentina) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishargentina_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishargentina_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishbolivia", + "displayName": "Spanish (Bolivia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishbolivia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishbolivia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishchile", + "displayName": "Spanish (Chile) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishchile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishchile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishcolombia", + "displayName": "Spanish (Colombia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishcolombia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishcolombia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishcostarica", + "displayName": "Spanish (Costa Rica) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishcostarica_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishcostarica_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishdominicanrepublic", + "displayName": "Spanish (Dominican Republic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishdominicanrepublic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishdominicanrepublic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishecuador", + "displayName": "Spanish (Ecuador) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishecuador_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishecuador_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishelsalvador", + "displayName": "Spanish (El Salvador) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishelsalvador_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishelsalvador_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishguatemala", + "displayName": "Spanish (Guatemala) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishguatemala_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishguatemala_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishhonduras", + "displayName": "Spanish (Honduras) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishhonduras_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishhonduras_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishmexico", + "displayName": "Spanish (Mexico) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishmexico_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishmexico_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishnicaragua", + "displayName": "Spanish (Nicaragua) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishnicaragua_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishnicaragua_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishpanama", + "displayName": "Spanish (Panama) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishpanama_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishpanama_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishparaguay", + "displayName": "Spanish (Paraguay) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishparaguay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishparaguay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishperu", + "displayName": "Spanish (Peru) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishperu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishperu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishpuertorico", + "displayName": "Spanish (Puerto Rico) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishpuertorico_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishpuertorico_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishspain", + "displayName": "Spanish (Spain) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishspain_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishspain_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishunitedstates", + "displayName": "Spanish (United States) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishunitedstates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishunitedstates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishuruguay", + "displayName": "Spanish (Uruguay) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishuruguay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishuruguay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishvenezuela", + "displayName": "Spanish (Venezuela) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishvenezuela_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_spanishvenezuela_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swahili", + "displayName": "Swahili (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swahili_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swahili_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swedishfinland", + "displayName": "Swedish (Finland) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swedishfinland_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swedishfinland_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swedishsweden", + "displayName": "Swedish (Sweden) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swedishsweden_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_swedishsweden_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_syriac", + "displayName": "Syriac (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_syriac_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_syriac_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tajik", + "displayName": "Tajik (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tajik_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tajik_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamazightarabicmorocco", + "displayName": "Tamazight (Arabic, Morocco) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamazightarabicmorocco_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamazightarabicmorocco_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamazightlatinalgeria", + "displayName": "Tamazight (Latin, Algeria) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamazightlatinalgeria_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamazightlatinalgeria_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamil", + "displayName": "Tamil (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamil_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tamil_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tatar", + "displayName": "Tatar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tatar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tatar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_telugu", + "displayName": "Telugu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_telugu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_telugu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_thai", + "displayName": "Thai (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_thai_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_thai_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tibetanprc", + "displayName": "Tibetan (PRC) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tibetanprc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tibetanprc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tigrinyaeritrea", + "displayName": "Tigrinya (Eritrea) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tigrinyaeritrea_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tigrinyaeritrea_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tigrinyaethiopia", + "displayName": "Tigrinya (Ethiopia) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tigrinyaethiopia_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_tigrinyaethiopia_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_turkish", + "displayName": "Turkish (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_turkish_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_turkish_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_turkmen", + "displayName": "Turkmen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_turkmen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_turkmen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_ukrainian", + "displayName": "Ukrainian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_ukrainian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_ukrainian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uppersorbian", + "displayName": "Upper Sorbian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uppersorbian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uppersorbian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_urdu", + "displayName": "Urdu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_urdu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_urdu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uyghurprc", + "displayName": "Uyghur (PRC) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uyghurprc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uyghurprc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uzbekcyrillic", + "displayName": "Uzbek (Cyrillic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uzbekcyrillic_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uzbekcyrillic_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uzbeklatin", + "displayName": "Uzbek (Latin) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uzbeklatin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_uzbeklatin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_valencian", + "displayName": "Valencian (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_valencian_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_valencian_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_venda", + "displayName": "Venda (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_venda_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_venda_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_vietnamese", + "displayName": "Vietnamese (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_vietnamese_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_vietnamese_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_welsh", + "displayName": "Welsh (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_welsh_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_welsh_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_wolof", + "displayName": "Wolof (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_wolof_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_wolof_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_xitsonga", + "displayName": "Xitsonga (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_xitsonga_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_xitsonga_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yiddish", + "displayName": "Yiddish (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yiddish_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yiddish_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yiprc", + "displayName": "Yi (PRC) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yiprc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yiprc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yoruba", + "displayName": "Yoruba (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yoruba_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_editinglanguages~l_enablededitinglanguages_l_yoruba_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_other_l_disablecomingsoon", + "displayName": "Turn off Coming Soon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_other_l_disablecomingsoon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_languagesettings~l_other_l_disablecomingsoon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_activedirectorytimeoutforqueryingoneentryforgroupexpansion", + "displayName": "Active Directory timeout for querying one entry for group expansion (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_activedirectorytimeoutforqueryingoneentryforgroupexpansion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_activedirectorytimeoutforqueryingoneentryforgroupexpansion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_activedirectorytimeoutforqueryingoneentryforgroupexpansion_l_entertimeoutinseconds", + "displayName": "Enter timeout in seconds: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_additionalpermissionsrequesturl", + "displayName": "Additional permissions request URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_additionalpermissionsrequesturl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_additionalpermissionsrequesturl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_additionalpermissionsrequesturl_l_checktospecifyacustomurloremailaddress", + "displayName": "Check to specify a custom URL or e-mail address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_additionalpermissionsrequesturl_l_checktospecifyacustomurloremailaddress_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_additionalpermissionsrequesturl_l_checktospecifyacustomurloremailaddress_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_additionalpermissionsrequesturl_l_specifyurlemailaddress", + "displayName": "Specify URL/Email address: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_allowuserswithearlierversionsofofficetoreadwithbrowsers", + "displayName": "Allow users with earlier versions of Office to read with browsers... (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_allowuserswithearlierversionsofofficetoreadwithbrowsers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_allowuserswithearlierversionsofofficetoreadwithbrowsers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_alwaysexpandgroupsinofficewhenrestrictingpermissionfordocume", + "displayName": "Always expand groups in Office when restricting permission for documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_alwaysexpandgroupsinofficewhenrestrictingpermissionfordocume_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_alwaysexpandgroupsinofficewhenrestrictingpermissionfordocume_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_alwaysrequireuserstoconnecttoverifypermission", + "displayName": "Always require users to connect to verify permission (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_alwaysrequireuserstoconnecttoverifypermission_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_alwaysrequireuserstoconnecttoverifypermission_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_disableinformationrightsmanagementuserinterface", + "displayName": "Turn off Information Rights Management user interface (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_disableinformationrightsmanagementuserinterface_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_disableinformationrightsmanagementuserinterface_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_neverallowuserstospecifygroupswhenrestrictingpermissionfordo", + "displayName": "Never allow users to specify groups when restricting permission for documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_neverallowuserstospecifygroupswhenrestrictingpermissionfordo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_neverallowuserstospecifygroupswhenrestrictingpermissionfordo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_preventusersfromchangingpermissions", + "displayName": "Prevent users from changing permissions on rights managed content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_preventusersfromchangingpermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_preventusersfromchangingpermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_specifydefaultpermissionserver", + "displayName": "Specify Permission Policy Default Server for Quick Access Toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_specifydefaultpermissionserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_specifydefaultpermissionserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_specifydefaultpermissionserver_l_empty407", + "displayName": "\r\nEnter Permission Policy Default Server for Quick Access Toolbar\r\n", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_urlforlocationofdocumenttemplatespolicy", + "displayName": "URL for location of document templates displayed when applications do not recognize rights-managed documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_urlforlocationofdocumenttemplatespolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_urlforlocationofdocumenttemplatespolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_managerestrictedpermissions_l_urlforlocationofdocumenttemplatespolicy_l_enteraurl", + "displayName": "Enter a URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_checkouttolocaldisk", + "displayName": "Check-out to local disk (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_checkouttolocaldisk_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_checkouttolocaldisk_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_deletefilesfromofficedocumentcache", + "displayName": "Delete files from Office Document Cache (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_deletefilesfromofficedocumentcache_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_deletefilesfromofficedocumentcache_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_enablecheckouttodrafts", + "displayName": "Save checked-out files to a local folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_enablecheckouttodrafts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_enablecheckouttodrafts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_officedocumentcachelocation", + "displayName": "Office document cache location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_officedocumentcachelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_officedocumentcachelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_officedocumentcachelocation_l_officedocumentcachelocationid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_opendocumentsfromofficedocumentcachefirst", + "displayName": "Open documents from Office Document Cache first (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_opendocumentsfromofficedocumentcachefirst_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_microsoftofficedocumentcache_l_opendocumentsfromofficedocumentcachefirst_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_allowlinkedinfeatures", + "displayName": "Show LinkedIn features in Office applications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_allowlinkedinfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_allowlinkedinfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_alwaysshowfilesharemoreoptions", + "displayName": "Show additional sharing choices under the File tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_alwaysshowfilesharemoreoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_alwaysshowfilesharemoreoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_changedestinationurlforsharepointhyperlink", + "displayName": "Change destination URL for SharePoint hyperlink (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_changedestinationurlforsharepointhyperlink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_changedestinationurlforsharepointhyperlink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_changedestinationurlforsharepointhyperlink_l_changedestinationurlforsharepointhyperlinkid", + "displayName": "Destination URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_changelabelofsavetosharepoint", + "displayName": "SharePoint Product Name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_changelabelofsavetosharepoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_changelabelofsavetosharepoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_changelabelofsavetosharepoint_l_changelabelofsavetosharepointid", + "displayName": "Custom string to be displayed: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_controlblogging", + "displayName": "Control Blogging (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_controlblogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_controlblogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_controlblogging_l_empty503", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_controlblogging_l_empty503_0", + "displayName": "Enabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_controlblogging_l_empty503_1", + "displayName": "Only SharePoint blogs allowed", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_controlblogging_l_empty503_2", + "displayName": "All blogging disabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableanimations", + "displayName": "Disable Office animations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableanimations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableanimations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablebackgrounds", + "displayName": "Disable Office Backgrounds (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablebackgrounds_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablebackgrounds_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableclipboardtoolbartriggers", + "displayName": "Disable Clipboard Toolbar triggers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableclipboardtoolbartriggers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableclipboardtoolbartriggers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablelinksopenright", + "displayName": "Open Office file links in Office Online (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablelinksopenright_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablelinksopenright_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableofficestartglobal", + "displayName": "Disable the Office Start screen for all Office applications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableofficestartglobal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableofficestartglobal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablescreenshotautohyperlink", + "displayName": "Do not automatically hyperlink screenshots (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablescreenshotautohyperlink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablescreenshotautohyperlink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablewebviewintheofficefiledialogs", + "displayName": "Disable web view in the Office file dialog boxes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablewebviewintheofficefiledialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disablewebviewintheofficefiledialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disalowconvertdocumentpolicy", + "displayName": "Disallow Convert Document (Excel, PowerPoint, Word) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disalowconvertdocumentpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_disalowconvertdocumentpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotdisplaypathsinalerts", + "displayName": "Do not display paths in alerts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotdisplaypathsinalerts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotdisplaypathsinalerts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotemulatetabswithspaceswhenexportinghtml", + "displayName": "Emulate tabs with spaces when exporting HTML (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotemulatetabswithspaceswhenexportinghtml_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotemulatetabswithspaceswhenexportinghtml_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donottrackdocumenteditingtime", + "displayName": "Do not track document editing time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donottrackdocumenteditingtime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donottrackdocumenteditingtime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotuploadmediafiles", + "displayName": "Do not upload media files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotuploadmediafiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotuploadmediafiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotusehardwareacceleration", + "displayName": "Do not use hardware graphics acceleration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotusehardwareacceleration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotusehardwareacceleration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotvalidateprintersbeforeusingthem", + "displayName": "Do not validate printers before using them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotvalidateprintersbeforeusingthem_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_donotvalidateprintersbeforeusingthem_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_enableworkflowsonmysite", + "displayName": "Enable Workflows on My Site (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_enableworkflowsonmysite_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_enableworkflowsonmysite_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_freezedry", + "displayName": "Enable Smart Resume (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_freezedry_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_freezedry_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_graphicfilterlegacymode", + "displayName": "Graphic filter legacy mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_graphicfilterlegacymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_graphicfilterlegacymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_hidethelearnmoreaboutsharepointhyperlink", + "displayName": "Hide the Learn more about SharePoint Hyperlink (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_hidethelearnmoreaboutsharepointhyperlink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_hidethelearnmoreaboutsharepointhyperlink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_homeworkflowlibrary", + "displayName": "Home Workflow Library (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_homeworkflowlibrary_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_homeworkflowlibrary_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_homeworkflowlibrary_l_path2504", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_increasevisibilityofaccessibilitycheckerviolations", + "displayName": "Increase the visibility of Accessibility Checker violations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_increasevisibilityofaccessibilitycheckerviolations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_increasevisibilityofaccessibilitycheckerviolations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_increasevisibilityofaccessibilitycheckerviolations_l_increasevisibilityofaccessibilitycheckerviolationsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_increasevisibilityofaccessibilitycheckerviolations_l_increasevisibilityofaccessibilitycheckerviolationsdropid_0", + "displayName": "Accessibility violations do not change loudness (default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_increasevisibilityofaccessibilitycheckerviolations_l_increasevisibilityofaccessibilitycheckerviolationsdropid_1", + "displayName": "Accessibility errors cause slab to be loud", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_increasevisibilityofaccessibilitycheckerviolations_l_increasevisibilityofaccessibilitycheckerviolationsdropid_2", + "displayName": "Accessibility errors or warnings cause slab to be loud", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_iscustomaddintabdefaultbackstageplace", + "displayName": "Take users to a custom File menu tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_iscustomaddintabdefaultbackstageplace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_iscustomaddintabdefaultbackstageplace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_iscustomtabdefaultinnewplace", + "displayName": "Show the Custom tab as the default tab when creating a new file (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_iscustomtabdefaultinnewplace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_iscustomtabdefaultinnewplace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_microsoftofficeshareddrawingcode", + "displayName": "Disable Microsoft Office shared drawing code for blip caching (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_microsoftofficeshareddrawingcode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_microsoftofficeshareddrawingcode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_microsoftofficeshareddrawingcodeformeta", + "displayName": "Disable Microsoft Office shared drawing code for metafile rendering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_microsoftofficeshareddrawingcodeformeta_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_microsoftofficeshareddrawingcodeformeta_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_mrutemplatelistlength", + "displayName": "Most Recently Used Template List Length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_mrutemplatelistlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_mrutemplatelistlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_mrutemplatelistlength_l_mrutemplatelistlength505", + "displayName": "Most Recently Used Template List Length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter", + "displayName": "Hide file locations when opening or saving files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_l_onlinestoragefilterid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_l_onlinestoragefilterid_1", + "displayName": "Hide OneDrive Personal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_l_onlinestoragefilterid_2", + "displayName": "Hide SharePoint Online and OneDrive for Business", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_l_onlinestoragefilterid_3", + "displayName": "Hide OneDrive Personal, SharePoint Online and OneDrive for Business", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_l_onlinestoragefilterid_4", + "displayName": "Hide Local PC", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_onlinestoragefilter_l_onlinestoragefilterid_8", + "displayName": "Hide SharePoint Server", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_printticketsafemode", + "displayName": "Print ticket safe mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_printticketsafemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_printticketsafemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_providefeedbackwithsound", + "displayName": "Provide feedback with sound (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_providefeedbackwithsound_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_providefeedbackwithsound_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showpasteoptionsbuttons", + "displayName": "Show Paste Options button when content is pasted (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showpasteoptionsbuttons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showpasteoptionsbuttons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showscreentips", + "displayName": "Show Screen Tips (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showscreentips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showscreentips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showscreentips_l_showscreentipsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showscreentips_l_showscreentipsdropid_0", + "displayName": "Show feature descriptions", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showscreentips_l_showscreentipsdropid_1", + "displayName": "Don't show feature descriptions", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showscreentips_l_showscreentipsdropid_2", + "displayName": "Don't show screentips", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showskydrivesignin", + "displayName": "Show OneDrive Sign In (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showskydrivesignin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_showskydrivesignin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_signinoptions", + "displayName": "Block signing into Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_signinoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_signinoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_signinoptions_l_signinoptions5", + "displayName": "Block signing into Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_signinoptions_l_signinoptions5_0", + "displayName": "Both IDs allowed", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_signinoptions_l_signinoptions5_1", + "displayName": "Microsoft Account only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_signinoptions_l_signinoptions5_2", + "displayName": "Org ID only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_signinoptions_l_signinoptions5_3", + "displayName": "None allowed", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_suppressrecommendedsettingsdialog", + "displayName": "Suppress recommended settings dialog (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_suppressrecommendedsettingsdialog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_suppressrecommendedsettingsdialog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_uselegacytranslationfeatures", + "displayName": "Use legacy translation features (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_uselegacytranslationfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_uselegacytranslationfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_uselocaluserinfo", + "displayName": "Use local user name and initials values regardless of signed-in user (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_uselocaluserinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_uselocaluserinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_usesystemfontinsteadoftahoma", + "displayName": "Use system font instead of the Office default UI font (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_usesystemfontinsteadoftahoma_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_usesystemfontinsteadoftahoma_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_webfoldersmanagingpairsofwebpagesandfolders", + "displayName": "Web Folders: Managing pairs of Web pages and folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_webfoldersmanagingpairsofwebpagesandfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_webfoldersmanagingpairsofwebpagesandfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_webfoldersmanagingpairsofwebpagesandfolders_l_webfoldersmanagingpairsofwebpagesandfolders506", + "displayName": "Web Folders: Managing pairs of Web pages and folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_webfoldersmanagingpairsofwebpagesandfolders_l_webfoldersmanagingpairsofwebpagesandfolders506_0", + "displayName": "Show and manage the pair as a single file", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_webfoldersmanagingpairsofwebpagesandfolders_l_webfoldersmanagingpairsofwebpagesandfolders506_2", + "displayName": "Show both parts and manage them individually", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437_l_webfoldersmanagingpairsofwebpagesandfolders_l_webfoldersmanagingpairsofwebpagesandfolders506_1", + "displayName": "Show both parts but manage as a single file", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1", + "displayName": "Workflow Cache 1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_l_workflowcachename", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_l_workflowdescrip", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_l_workflowfriendly", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_l_workflowpath", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_l_workflowsig", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_l_workflowsig_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache1_l_workflowsig_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10", + "displayName": "Workflow Cache 10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_l_workflowcachename473", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_l_workflowdescrip475", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_l_workflowfriendly476", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_l_workflowpath474", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_l_workflowsig477", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_l_workflowsig477_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache10_l_workflowsig477_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11", + "displayName": "Workflow Cache 11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_l_workflowcachename478", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_l_workflowdescrip480", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_l_workflowfriendly481", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_l_workflowpath479", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_l_workflowsig482", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_l_workflowsig482_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache11_l_workflowsig482_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12", + "displayName": "Workflow Cache 12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_l_workflowcachename483", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_l_workflowdescrip485", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_l_workflowfriendly486", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_l_workflowpath484", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_l_workflowsig487", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_l_workflowsig487_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache12_l_workflowsig487_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13", + "displayName": "Workflow Cache 13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_l_workflowcachename488", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_l_workflowdescrip490", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_l_workflowfriendly491", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_l_workflowpath489", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_l_workflowsig492", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_l_workflowsig492_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache13_l_workflowsig492_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14", + "displayName": "Workflow Cache 14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_l_workflowcachename493", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_l_workflowdescrip495", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_l_workflowfriendly496", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_l_workflowpath494", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_l_workflowsig497", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_l_workflowsig497_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache14_l_workflowsig497_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15", + "displayName": "Workflow Cache 15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_l_workflowcachename498", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_l_workflowdescrip500", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_l_workflowfriendly501", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_l_workflowpath499", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_l_workflowsig502", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_l_workflowsig502_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache15_l_workflowsig502_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2", + "displayName": "Workflow Cache 2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_l_workflowcachename433", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_l_workflowdescrip435", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_l_workflowfriendly436", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_l_workflowpath434", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_l_workflowsig437", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_l_workflowsig437_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache2_l_workflowsig437_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3", + "displayName": "Workflow Cache 3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_l_workflowcachename438", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_l_workflowdescrip440", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_l_workflowfriendly441", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_l_workflowpath439", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_l_workflowsig442", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_l_workflowsig442_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache3_l_workflowsig442_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4", + "displayName": "Workflow Cache 4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_l_workflowcachename443", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_l_workflowdescrip445", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_l_workflowfriendly446", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_l_workflowpath444", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_l_workflowsig447", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_l_workflowsig447_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache4_l_workflowsig447_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5", + "displayName": "Workflow Cache 5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_l_workflowcachename448", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_l_workflowdescrip450", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_l_workflowfriendly451", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_l_workflowpath449", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_l_workflowsig452", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_l_workflowsig452_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache5_l_workflowsig452_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6", + "displayName": "Workflow Cache 6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_l_workflowcachename453", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_l_workflowdescrip455", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_l_workflowfriendly456", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_l_workflowpath454", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_l_workflowsig457", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_l_workflowsig457_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache6_l_workflowsig457_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7", + "displayName": "Workflow Cache 7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_l_workflowcachename458", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_l_workflowdescrip460", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_l_workflowfriendly461", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_l_workflowpath459", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_l_workflowsig462", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_l_workflowsig462_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache7_l_workflowsig462_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8", + "displayName": "Workflow Cache 8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_l_workflowcachename463", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_l_workflowdescrip465", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_l_workflowfriendly466", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_l_workflowpath464", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_l_workflowsig467", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_l_workflowsig467_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache8_l_workflowsig467_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9", + "displayName": "Workflow Cache 9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_l_workflowcachename468", + "displayName": "Name of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_l_workflowdescrip470", + "displayName": "Description of the workflow to be shown to the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_l_workflowfriendly471", + "displayName": "Name of the document library to be shown the user (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_l_workflowpath469", + "displayName": "Full URL to the document library with which the workflow is associated (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_l_workflowsig472", + "displayName": "Workflow requires the user to sign the document (Word/Excel only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_l_workflowsig472_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_miscellaneous437~l_workflowcache_l_workflowcache9_l_workflowsig472_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_officeconverters_l_blockopeningofprereleaseexcel", + "displayName": "Block opening of pre-release versions of file formats new to Excel 2016 through the Compatibility Pack for Office 2016 and Excel 2016 Converter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_officeconverters_l_blockopeningofprereleaseexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_officeconverters_l_blockopeningofprereleaseexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_officeconverters_l_blockopeningofprereleaseppt", + "displayName": "Block opening of pre-release versions of file formats new to PowerPoint 2016 through the Compatibility Pack for Office 2016 and PowerPoint 2016 Converter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_officeconverters_l_blockopeningofprereleaseppt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_officeconverters_l_blockopeningofprereleaseppt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_disableinclusionofdocumentpropertiesinpdfandxpsoutput", + "displayName": "Disable inclusion of document properties in PDF and XPS output (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_disableinclusionofdocumentpropertiesinpdfandxpsoutput_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_disableinclusionofdocumentpropertiesinpdfandxpsoutput_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_enforcepdfcompliancewithiso190051pdfa", + "displayName": "Enforce PDF compliance with ISO 19005-1 (PDF/A) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_enforcepdfcompliancewithiso190051pdfa_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_enforcepdfcompliancewithiso190051pdfa_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_enforcepdfcompliancewithiso190051pdfa_l_empty417", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_enforcepdfcompliancewithiso190051pdfa_l_empty417_0", + "displayName": "Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_enforcepdfcompliancewithiso190051pdfa_l_empty417_1", + "displayName": "Encourage", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_enforcepdfcompliancewithiso190051pdfa_l_empty417_2", + "displayName": "Prevent", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_enforcepdfcompliancewithiso190051pdfa_l_empty417_3", + "displayName": "Enforce", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_specifytypesoffixedformatoptionsavailabletotheuser", + "displayName": "Disable Microsoft Save As PDF and XPS add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_specifytypesoffixedformatoptionsavailabletotheuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_specifytypesoffixedformatoptionsavailabletotheuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_specifytypesoffixedformatoptionsavailabletotheuser_l_empty418", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_specifytypesoffixedformatoptionsavailabletotheuser_l_empty418_0", + "displayName": "Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_specifytypesoffixedformatoptionsavailabletotheuser_l_empty418_1", + "displayName": "Disable XPS", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_specifytypesoffixedformatoptionsavailabletotheuser_l_empty418_2", + "displayName": "Disable PDF", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_pdfandxps_l_specifytypesoffixedformatoptionsavailabletotheuser_l_empty418_3", + "displayName": "Disable XPS and PDF", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences", + "displayName": "[Deprecated] Allow the use of connected experiences in Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences_l_connectedofficeexperiencesdropid", + "displayName": "[Deprecated] Connected experiences in Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences_l_connectedofficeexperiencesdropid_1", + "displayName": "Connected", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_connectedofficeexperiences_l_connectedofficeexperiencesdropid_2", + "displayName": "Disconnected", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_disableoptinwizard", + "displayName": "Disable Opt-in Wizard on first run (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_disableoptinwizard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_disableoptinwizard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_enablecustomerexperienceimprovementprogram", + "displayName": "Enable Customer Experience Improvement Program (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_enablecustomerexperienceimprovementprogram_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_enablecustomerexperienceimprovementprogram_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent", + "displayName": "[Deprecated] Allow the use of connected experiences in Office that analyze content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent_l_officeexperiencesanlayzingcontentdropid", + "displayName": "[Deprecated] Connected experiences in Office that analyze content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent_l_officeexperiencesanlayzingcontentdropid_1", + "displayName": "Enabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesanlayzingcontent_l_officeexperiencesanlayzingcontentdropid_2", + "displayName": "Disabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent", + "displayName": "[Deprecated] Allow the use of connected experiences in Office that download online content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent_l_officeexperiencesdownloadingcontentdropid", + "displayName": "[Deprecated] Connected experiences in Office that download online content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent_l_officeexperiencesdownloadingcontentdropid_1", + "displayName": "Enabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_officeexperiencesdownloadingcontent_l_officeexperiencesdownloadingcontentdropid_2", + "displayName": "Disabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences", + "displayName": "[Deprecated] Allow the use of additional optional connected experiences in Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences_l_optionalconnectedexperiencesdropid", + "displayName": "[Deprecated] Optional connected experiences in Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences_l_optionalconnectedexperiencesdropid_1", + "displayName": "Enabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_optionalconnectedexperiences_l_optionalconnectedexperiencesdropid_2", + "displayName": "Disabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_screenshot", + "displayName": "Allow including screenshot with Office Feedback (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_screenshot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_screenshot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendcustomerdata", + "displayName": "Send personal information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendcustomerdata_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendcustomerdata_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendfeedback", + "displayName": "Send Office Feedback (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendfeedback_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendfeedback_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendtelemetry", + "displayName": "Configure the level of client software diagnostic data sent by Office to Microsoft (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendtelemetry_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendtelemetry_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendtelemetry_l_sendtelemetrydropid", + "displayName": "Type of diagnostic data: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendtelemetry_l_sendtelemetrydropid_3", + "displayName": "Neither", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendtelemetry_l_sendtelemetrydropid_2", + "displayName": "Optional", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendtelemetry_l_sendtelemetrydropid_1", + "displayName": "Required", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_updatereliabilitypolicy", + "displayName": "Automatically receive small updates to improve reliability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_updatereliabilitypolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_updatereliabilitypolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitcustomtags", + "displayName": "Specify custom labels to use with the Readiness Toolkit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitcustomtags_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitcustomtags_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitcustomtags_l_officereadinesstoolkitcustomtagstag1", + "displayName": "Label 1: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitcustomtags_l_officereadinesstoolkitcustomtagstag2", + "displayName": "Label 2: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitcustomtags_l_officereadinesstoolkitcustomtagstag3", + "displayName": "Label 3: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitcustomtags_l_officereadinesstoolkitcustomtagstag4", + "displayName": "Label 4: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitenableusageagent", + "displayName": "Allow add-in usage data to be generated and collected by the Readiness Toolkit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitenableusageagent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_readinesstoolkit_l_officereadinesstoolkitenableusageagent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization", + "displayName": "ActiveX Control Initialization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_l_activexcontrolinitializationcolon", + "displayName": "ActiveX Control Initialization: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_l_activexcontrolinitializationcolon_1", + "displayName": "1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_l_activexcontrolinitializationcolon_2", + "displayName": "2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_l_activexcontrolinitializationcolon_3", + "displayName": "3", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_l_activexcontrolinitializationcolon_4", + "displayName": "4", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_l_activexcontrolinitializationcolon_5", + "displayName": "5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_activexcontrolinitialization_l_activexcontrolinitializationcolon_6", + "displayName": "6", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_allowedextensions", + "displayName": "Allow file extensions for OLE embedding (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_allowedextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_allowedextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_allowedextensions_l_allowedextensionsole", + "displayName": "File extensions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_automationsecurity", + "displayName": "Automation Security (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_automationsecurity_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_automationsecurity_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_automationsecurity_l_settheautomationsecuritylevel", + "displayName": "Set the Automation Security level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_automationsecurity_l_settheautomationsecuritylevel_3", + "displayName": "Disable macros by default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_automationsecurity_l_settheautomationsecuritylevel_2", + "displayName": "Use application macro security level", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_automationsecurity_l_settheautomationsecuritylevel_1", + "displayName": "Macros enabled (default)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_blockedextensions", + "displayName": "Block additional file extensions for OLE embedding (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_blockedextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_blockedextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_blockedextensions_l_blockedextensionsole", + "displayName": "File extensions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkactivexobjects", + "displayName": "Check ActiveX objects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkactivexobjects_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkactivexobjects_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkactivexobjects_l_checkactivexobjectsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkactivexobjects_l_checkactivexobjectsdropid_0", + "displayName": "Do not check", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkactivexobjects_l_checkactivexobjectsdropid_1", + "displayName": "Override IE kill bit list", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkactivexobjects_l_checkactivexobjectsdropid_2", + "displayName": "Strict allow list", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkexcelrtdservers", + "displayName": "Check Excel RTD servers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkexcelrtdservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkexcelrtdservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkoleobjects", + "displayName": "Check OLE objects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkoleobjects_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkoleobjects_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkoleobjects_l_checkoleobjectsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkoleobjects_l_checkoleobjectsdropid_0", + "displayName": "Do not check", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkoleobjects_l_checkoleobjectsdropid_1", + "displayName": "Override IE kill bit list", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkoleobjects_l_checkoleobjectsdropid_2", + "displayName": "Strict allow list", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkowcdatasourceproviders", + "displayName": "Check OWC data source providers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkowcdatasourceproviders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_checkowcdatasourceproviders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disableallactivex", + "displayName": "Disable All ActiveX (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disableallactivex_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disableallactivex_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablealltrustbarnotificationsfor", + "displayName": "Disable all Trust Bar notifications for security issues (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablealltrustbarnotificationsfor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablealltrustbarnotificationsfor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablepasswordtoopenui", + "displayName": "Disable password to open UI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablepasswordtoopenui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablepasswordtoopenui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablevbaforofficeapplications319", + "displayName": "Disable VBA for Office applications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablevbaforofficeapplications319_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_disablevbaforofficeapplications319_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_enableminimizevbaresigning", + "displayName": "Enable Minimizing VBA Project Digital Signature Invalidation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_enableminimizevbaresigning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_enableminimizevbaresigning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptdocumentproperties", + "displayName": "Encrypt document properties (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptdocumentproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptdocumentproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforpasswordprotectedoffice972003", + "displayName": "Encryption type for password protected Office 97-2003 files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforpasswordprotectedoffice972003_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforpasswordprotectedoffice972003_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforpasswordprotectedoffice972003_l_encryptiontypecolon318", + "displayName": "Encryption type: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforpasswordprotectedofficeopen", + "displayName": "Encryption type for password protected Office Open XML files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforpasswordprotectedofficeopen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforpasswordprotectedofficeopen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_encryptiontypeforpasswordprotectedofficeopen_l_encryptiontypecolon", + "displayName": "Encryption type: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_loadcontrolsinforms3", + "displayName": "Load Controls in Forms3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_loadcontrolsinforms3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_loadcontrolsinforms3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_loadcontrolsinforms3_l_loadcontrolsinforms3colon", + "displayName": "Load Controls in Forms3: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_loadcontrolsinforms3_l_loadcontrolsinforms3colon_1", + "displayName": "1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_loadcontrolsinforms3_l_loadcontrolsinforms3colon_2", + "displayName": "2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_loadcontrolsinforms3_l_loadcontrolsinforms3colon_3", + "displayName": "3", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_loadcontrolsinforms3_l_loadcontrolsinforms3colon_4", + "displayName": "4", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_macroruntimescanscope", + "displayName": "Macro Runtime Scan Scope (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_macroruntimescanscope_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_macroruntimescanscope_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_macroruntimescanscope_l_macroruntimescanscopeenum", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_macroruntimescanscope_l_macroruntimescanscopeenum_0", + "displayName": "Disable for all documents", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_macroruntimescanscope_l_macroruntimescanscopeenum_1", + "displayName": "Enable for low trust documents", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_macroruntimescanscope_l_macroruntimescanscopeenum_2", + "displayName": "Enable for all documents", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_preventwordandexcelfromloadingmanagedcodeextensions", + "displayName": "Prevent Word and Excel from loading managed code extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_preventwordandexcelfromloadingmanagedcodeextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_preventwordandexcelfromloadingmanagedcodeextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_protectdocumentmetadataforpasswordprotected", + "displayName": "Protect document metadata for password protected files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_protectdocumentmetadataforpasswordprotected_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_protectdocumentmetadataforpasswordprotected_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_protectdocumentmetadataforrightsmanaged", + "displayName": "Protect document metadata for rights managed Office Open XML Files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_protectdocumentmetadataforrightsmanaged_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_protectdocumentmetadataforrightsmanaged_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setminimumpasswordlength", + "displayName": "Set minimum password length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setminimumpasswordlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setminimumpasswordlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setminimumpasswordlength_l_setminimumpasswordlengthspinid", + "displayName": "Minimum password length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordhashformatasisocompliant", + "displayName": "Set password hash format as ISO-compliant (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordhashformatasisocompliant_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordhashformatasisocompliant_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordrulesdomaintimeout", + "displayName": "Set password rules domain timeout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordrulesdomaintimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordrulesdomaintimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordrulesdomaintimeout_l_setpasswordrulesdomaintimeoutspinid", + "displayName": "in milliseconds (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordruleslevel", + "displayName": "Set password rules level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordruleslevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordruleslevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordruleslevel_l_setpasswordrulesleveldropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordruleslevel_l_setpasswordrulesleveldropid_0", + "displayName": "No password checks", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordruleslevel_l_setpasswordrulesleveldropid_1", + "displayName": "Local length check", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordruleslevel_l_setpasswordrulesleveldropid_2", + "displayName": "Local length and complexity checks", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_setpasswordruleslevel_l_setpasswordrulesleveldropid_3", + "displayName": "Local length, local complexity, and domain policy checks", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_suppresshyperlinkwarnings", + "displayName": "Suppress hyperlink warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_suppresshyperlinkwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_suppresshyperlinkwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_turnofferrorreportingforfilesthatfailfilevalidation", + "displayName": "Turn off error reporting for files that fail file validation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_turnofferrorreportingforfilesthatfailfilevalidation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_turnofferrorreportingforfilesthatfailfilevalidation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_turnoffpdfencryptionsettingui", + "displayName": "Turn off PDF encryption setting UI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_turnoffpdfencryptionsettingui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings_l_turnoffpdfencryptionsettingui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_checkthexadesportionsofadigitalsignature", + "displayName": "Check the XAdES portions of a digital signature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_checkthexadesportionsofadigitalsignature_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_checkthexadesportionsofadigitalsignature_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_configuretimestampinghashingalgorithm", + "displayName": "Configure time stamping hashing algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_configuretimestampinghashingalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_configuretimestampinghashingalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_configuretimestampinghashingalgorithm_l_configuretimestampinghashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_configuretimestampinghashingalgorithm_l_configuretimestampinghashingalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_configuretimestampinghashingalgorithm_l_configuretimestampinghashingalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_configuretimestampinghashingalgorithm_l_configuretimestampinghashingalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_configuretimestampinghashingalgorithm_l_configuretimestampinghashingalgorithmdropid_sha512", + "displayName": "SHA512", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_donotallowexpiredcertificateswhenvalidatingsignatures", + "displayName": "Do not allow expired certificates when validating signatures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_donotallowexpiredcertificateswhenvalidatingsignatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_donotallowexpiredcertificateswhenvalidatingsignatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration", + "displayName": "Requested XAdES level for signature generation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_l_requestedxadeslevelforsignaturegenerationdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_l_requestedxadeslevelforsignaturegenerationdropid_0", + "displayName": "No XAdES", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_l_requestedxadeslevelforsignaturegenerationdropid_1", + "displayName": "XAdES-BES", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_l_requestedxadeslevelforsignaturegenerationdropid_2", + "displayName": "XAdES-T", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_l_requestedxadeslevelforsignaturegenerationdropid_3", + "displayName": "XAdES-C", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_l_requestedxadeslevelforsignaturegenerationdropid_4", + "displayName": "XAdES-X", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requestedxadeslevelforsignaturegeneration_l_requestedxadeslevelforsignaturegenerationdropid_5", + "displayName": "XAdES-X-L", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requireocspatsignaturegenerationtime", + "displayName": "Require OCSP at signature generation time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requireocspatsignaturegenerationtime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_requireocspatsignaturegenerationtime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturehashingalgorithm", + "displayName": "Select digital signature hashing algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturehashingalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturehashingalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturehashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturehashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturehashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturehashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturehashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha512", + "displayName": "SHA512", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvaliddsabits", + "displayName": "Configure invalid DSA public key size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvaliddsabits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvaliddsabits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvaliddsabits_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvaliddsabits_l_selectdigitalsignaturehashingalgorithmdropid_0", + "displayName": "0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvaliddsabits_l_selectdigitalsignaturehashingalgorithmdropid_512", + "displayName": "512", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvaliddsabits_l_selectdigitalsignaturehashingalgorithmdropid_768", + "displayName": "768", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvaliddsabits_l_selectdigitalsignaturehashingalgorithmdropid_1024", + "displayName": "1024", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidhashingalgorithm", + "displayName": "Configure invalid hashing algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidhashingalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidhashingalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_md5", + "displayName": "MD5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits", + "displayName": "Configure invalid RSA public key size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_l_selectdigitalsignaturehashingalgorithmdropid_0", + "displayName": "0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_l_selectdigitalsignaturehashingalgorithmdropid_512", + "displayName": "512", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_l_selectdigitalsignaturehashingalgorithmdropid_768", + "displayName": "768", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_l_selectdigitalsignaturehashingalgorithmdropid_1024", + "displayName": "1024", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_l_selectdigitalsignaturehashingalgorithmdropid_1536", + "displayName": "1536", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureinvalidrsabits_l_selectdigitalsignaturehashingalgorithmdropid_2048", + "displayName": "2048", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacydsabits", + "displayName": "Configure legacy DSA public key size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacydsabits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacydsabits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacydsabits_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacydsabits_l_selectdigitalsignaturehashingalgorithmdropid_0", + "displayName": "0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacydsabits_l_selectdigitalsignaturehashingalgorithmdropid_512", + "displayName": "512", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacydsabits_l_selectdigitalsignaturehashingalgorithmdropid_768", + "displayName": "768", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacydsabits_l_selectdigitalsignaturehashingalgorithmdropid_1024", + "displayName": "1024", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyhashingalgorithm", + "displayName": "Configure legacy hashing algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyhashingalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyhashingalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_md5", + "displayName": "MD5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyhashingalgorithm_l_selectdigitalsignaturehashingalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits", + "displayName": "Configure legacy RSA public key size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_l_selectdigitalsignaturehashingalgorithmdropid_0", + "displayName": "0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_l_selectdigitalsignaturehashingalgorithmdropid_512", + "displayName": "512", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_l_selectdigitalsignaturehashingalgorithmdropid_768", + "displayName": "768", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_l_selectdigitalsignaturehashingalgorithmdropid_1024", + "displayName": "1024", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_l_selectdigitalsignaturehashingalgorithmdropid_1536", + "displayName": "1536", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturelegacyrsabits_l_selectdigitalsignaturehashingalgorithmdropid_2048", + "displayName": "2048", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturemindsabits", + "displayName": "Configure minimum DSA public key size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturemindsabits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturemindsabits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturemindsabits_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturemindsabits_l_selectdigitalsignaturehashingalgorithmdropid_0", + "displayName": "0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturemindsabits_l_selectdigitalsignaturehashingalgorithmdropid_512", + "displayName": "512", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturemindsabits_l_selectdigitalsignaturehashingalgorithmdropid_768", + "displayName": "768", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignaturemindsabits_l_selectdigitalsignaturehashingalgorithmdropid_1024", + "displayName": "1024", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits", + "displayName": "Configure minimum RSA public key size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_l_selectdigitalsignaturehashingalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_l_selectdigitalsignaturehashingalgorithmdropid_0", + "displayName": "0", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_l_selectdigitalsignaturehashingalgorithmdropid_512", + "displayName": "512", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_l_selectdigitalsignaturehashingalgorithmdropid_768", + "displayName": "768", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_l_selectdigitalsignaturehashingalgorithmdropid_1024", + "displayName": "1024", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_l_selectdigitalsignaturehashingalgorithmdropid_1536", + "displayName": "1536", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_l_selectdigitalsignaturehashingalgorithmdropid_2048", + "displayName": "2048", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_selectdigitalsignatureminrsabits_l_selectdigitalsignaturehashingalgorithmdropid_4096", + "displayName": "4096", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_setsignatureverificationlevel", + "displayName": "Set signature verification level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_setsignatureverificationlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_setsignatureverificationlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_setsignatureverificationlevel_l_setsignatureverificationleveldropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_setsignatureverificationlevel_l_setsignatureverificationleveldropid_0", + "displayName": "No rules", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_setsignatureverificationlevel_l_setsignatureverificationleveldropid_1", + "displayName": "Office 2007 rules", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_setsignatureverificationlevel_l_setsignatureverificationleveldropid_2", + "displayName": "Office 2010 rules", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_setsignatureverificationlevel_l_setsignatureverificationleveldropid_3", + "displayName": "Office 2013 rules", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_settimestampservertimeout", + "displayName": "Set timestamp server timeout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_settimestampservertimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_settimestampservertimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_settimestampservertimeout_l_settimestampservertimeoutspinid", + "displayName": "In seconds (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyissuerfilter", + "displayName": "Specify filtering for certificate issuers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyissuerfilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyissuerfilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyissuerfilter_l_specifyissuerfilterid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration", + "displayName": "Specify minimum XAdES level for digital signature generation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_l_specifyminimumxadeslevelfordigitalsignaturegenerationdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_l_specifyminimumxadeslevelfordigitalsignaturegenerationdropid_0", + "displayName": "No minimum level", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_l_specifyminimumxadeslevelfordigitalsignaturegenerationdropid_1", + "displayName": "XAdES-BES", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_l_specifyminimumxadeslevelfordigitalsignaturegenerationdropid_2", + "displayName": "XAdES-T", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_l_specifyminimumxadeslevelfordigitalsignaturegenerationdropid_3", + "displayName": "XAdES-C", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_l_specifyminimumxadeslevelfordigitalsignaturegenerationdropid_4", + "displayName": "XAdES-X", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifyminimumxadeslevelfordigitalsignaturegeneration_l_specifyminimumxadeslevelfordigitalsignaturegenerationdropid_5", + "displayName": "XAdES-X-L", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifytimestampservername", + "displayName": "Specify timestamp server name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifytimestampservername_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifytimestampservername_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_specifytimestampservername_l_specifytimestampservernameid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_suppressnocertdialog", + "displayName": "Display alternative certificate providers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_suppressnocertdialog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_digsig_l_suppressnocertdialog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey01", + "displayName": "Escrow Key #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey01_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey02", + "displayName": "Escrow Key #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey02_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey03", + "displayName": "Escrow Key #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey03_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey04", + "displayName": "Escrow Key #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey04_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey05", + "displayName": "Escrow Key #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey05_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey06", + "displayName": "Escrow Key #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey06_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey07", + "displayName": "Escrow Key #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey07_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey08", + "displayName": "Escrow Key #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey08_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey09", + "displayName": "Escrow Key #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey09_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey10", + "displayName": "Escrow Key #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey10_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey11", + "displayName": "Escrow Key #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey11_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey12", + "displayName": "Escrow Key #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey12_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey13", + "displayName": "Escrow Key #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey13_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey14", + "displayName": "Escrow Key #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey14_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey15", + "displayName": "Escrow Key #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey15_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey16", + "displayName": "Escrow Key #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey16_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey17", + "displayName": "Escrow Key #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey17_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey18", + "displayName": "Escrow Key #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey18_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey19", + "displayName": "Escrow Key #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey19_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey20", + "displayName": "Escrow Key #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_escrowkeycerts_l_escrowkey20_l_certhashcolon", + "displayName": "Certificate Hash: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_allowmixofpolicyanduserlocations", + "displayName": "Allow mix of policy and user locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_allowmixofpolicyanduserlocations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_allowmixofpolicyanduserlocations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_minsigsupportos", + "displayName": "Set the minimum operating system for verifying agile VBA signatures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_minsigsupportos_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_minsigsupportos_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_minsigsupportos_l_minsigsupportosdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_minsigsupportos_l_minsigsupportosdropid_0", + "displayName": "Windows XP", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_minsigsupportos_l_minsigsupportosdropid_1", + "displayName": "Windows Vista", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_minsigsupportos_l_minsigsupportosdropid_2", + "displayName": "Windows 7", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_minsigsupportos_l_minsigsupportosdropid_3", + "displayName": "Windows 8", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01", + "displayName": "Trusted Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01_l_allowsubfolders", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01_l_allowsubfolders_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01_l_allowsubfolders_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01_l_datecolon", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01_l_descriptioncolon", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc01_l_pathcolon", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02", + "displayName": "Trusted Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02_l_allowsubfolders245", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02_l_allowsubfolders245_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02_l_allowsubfolders245_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02_l_datecolon243", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02_l_descriptioncolon244", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc02_l_pathcolon242", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03", + "displayName": "Trusted Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03_l_allowsubfolders249", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03_l_allowsubfolders249_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03_l_allowsubfolders249_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03_l_datecolon247", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03_l_descriptioncolon248", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc03_l_pathcolon246", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04", + "displayName": "Trusted Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04_l_allowsubfolders253", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04_l_allowsubfolders253_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04_l_allowsubfolders253_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04_l_datecolon251", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04_l_descriptioncolon252", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc04_l_pathcolon250", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05", + "displayName": "Trusted Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05_l_allowsubfolders257", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05_l_allowsubfolders257_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05_l_allowsubfolders257_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05_l_datecolon255", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05_l_descriptioncolon256", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc05_l_pathcolon254", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06", + "displayName": "Trusted Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06_l_allowsubfolders261", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06_l_allowsubfolders261_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06_l_allowsubfolders261_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06_l_datecolon259", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06_l_descriptioncolon260", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc06_l_pathcolon258", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07", + "displayName": "Trusted Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07_l_allowsubfolders265", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07_l_allowsubfolders265_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07_l_allowsubfolders265_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07_l_datecolon263", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07_l_descriptioncolon264", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc07_l_pathcolon262", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08", + "displayName": "Trusted Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08_l_allowsubfolders269", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08_l_allowsubfolders269_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08_l_allowsubfolders269_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08_l_datecolon267", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08_l_descriptioncolon268", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc08_l_pathcolon266", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09", + "displayName": "Trusted Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09_l_allowsubfolders273", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09_l_allowsubfolders273_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09_l_allowsubfolders273_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09_l_datecolon271", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09_l_descriptioncolon272", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc09_l_pathcolon270", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10", + "displayName": "Trusted Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10_l_allowsubfolders277", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10_l_allowsubfolders277_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10_l_allowsubfolders277_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10_l_datecolon275", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10_l_descriptioncolon276", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc10_l_pathcolon274", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11", + "displayName": "Trusted Location #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11_l_allowsubfolders281", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11_l_allowsubfolders281_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11_l_allowsubfolders281_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11_l_datecolon279", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11_l_descriptioncolon280", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc11_l_pathcolon278", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12", + "displayName": "Trusted Location #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12_l_allowsubfolders285", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12_l_allowsubfolders285_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12_l_allowsubfolders285_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12_l_datecolon283", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12_l_descriptioncolon284", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc12_l_pathcolon282", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13", + "displayName": "Trusted Location #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13_l_allowsubfolders289", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13_l_allowsubfolders289_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13_l_allowsubfolders289_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13_l_datecolon287", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13_l_descriptioncolon288", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc13_l_pathcolon286", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14", + "displayName": "Trusted Location #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14_l_allowsubfolders293", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14_l_allowsubfolders293_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14_l_allowsubfolders293_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14_l_datecolon291", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14_l_descriptioncolon292", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc14_l_pathcolon290", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15", + "displayName": "Trusted Location #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15_l_allowsubfolders297", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15_l_allowsubfolders297_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15_l_allowsubfolders297_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15_l_datecolon295", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15_l_descriptioncolon296", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc15_l_pathcolon294", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16", + "displayName": "Trusted Location #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16_l_allowsubfolders301", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16_l_allowsubfolders301_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16_l_allowsubfolders301_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16_l_datecolon299", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16_l_descriptioncolon300", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc16_l_pathcolon298", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17", + "displayName": "Trusted Location #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17_l_allowsubfolders305", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17_l_allowsubfolders305_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17_l_allowsubfolders305_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17_l_datecolon303", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17_l_descriptioncolon304", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc17_l_pathcolon302", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18", + "displayName": "Trusted Location #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18_l_allowsubfolders309", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18_l_allowsubfolders309_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18_l_allowsubfolders309_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18_l_datecolon307", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18_l_descriptioncolon308", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc18_l_pathcolon306", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19", + "displayName": "Trusted Location #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19_l_allowsubfolders313", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19_l_allowsubfolders313_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19_l_allowsubfolders313_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19_l_datecolon311", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19_l_descriptioncolon312", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc19_l_pathcolon310", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20", + "displayName": "Trusted Location #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20_l_allowsubfolders317", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20_l_allowsubfolders317_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20_l_allowsubfolders317_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20_l_datecolon315", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20_l_descriptioncolon316", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustedloc20_l_pathcolon314", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustlegacysignature", + "displayName": "Trust legacy VBA signatures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustlegacysignature_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_trustlegacysignature_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc01", + "displayName": "Unsafe Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc01_l_allowsubfolders01", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc01_l_allowsubfolders01_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc01_l_allowsubfolders01_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc01_l_pathcolon01", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc02", + "displayName": "Unsafe Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc02_l_allowsubfolders02", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc02_l_allowsubfolders02_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc02_l_allowsubfolders02_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc02_l_pathcolon02", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc03", + "displayName": "Unsafe Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc03_l_allowsubfolders03", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc03_l_allowsubfolders03_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc03_l_allowsubfolders03_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc03_l_pathcolon03", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc04", + "displayName": "Unsafe Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc04_l_allowsubfolders04", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc04_l_allowsubfolders04_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc04_l_allowsubfolders04_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc04_l_pathcolon04", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc05", + "displayName": "Unsafe Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc05_l_allowsubfolders05", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc05_l_allowsubfolders05_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc05_l_allowsubfolders05_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc05_l_pathcolon05", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc06", + "displayName": "Unsafe Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc06_l_allowsubfolders06", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc06_l_allowsubfolders06_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc06_l_allowsubfolders06_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc06_l_pathcolon06", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc07", + "displayName": "Unsafe Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc07_l_allowsubfolders07", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc07_l_allowsubfolders07_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc07_l_allowsubfolders07_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc07_l_pathcolon07", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc08", + "displayName": "Unsafe Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc08_l_allowsubfolders08", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc08_l_allowsubfolders08_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc08_l_allowsubfolders08_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc08_l_pathcolon08", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc09", + "displayName": "Unsafe Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc09_l_allowsubfolders09", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc09_l_allowsubfolders09_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc09_l_allowsubfolders09_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc09_l_pathcolon09", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc10", + "displayName": "Unsafe Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc10_l_allowsubfolders10", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc10_l_allowsubfolders10_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc10_l_allowsubfolders10_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc10_l_pathcolon10", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc11", + "displayName": "Unsafe Location #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc11_l_allowsubfolders11", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc11_l_allowsubfolders11_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc11_l_allowsubfolders11_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc11_l_pathcolon11", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc12", + "displayName": "Unsafe Location #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc12_l_allowsubfolders12", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc12_l_allowsubfolders12_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc12_l_allowsubfolders12_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc12_l_pathcolon12", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc13", + "displayName": "Unsafe Location #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc13_l_allowsubfolders13", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc13_l_allowsubfolders13_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc13_l_allowsubfolders13_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc13_l_pathcolon13", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc14", + "displayName": "Unsafe Location #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc14_l_allowsubfolders14", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc14_l_allowsubfolders14_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc14_l_allowsubfolders14_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc14_l_pathcolon14", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc15", + "displayName": "Unsafe Location #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc15_l_allowsubfolders15", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc15_l_allowsubfolders15_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc15_l_allowsubfolders15_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc15_l_pathcolon15", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc16", + "displayName": "Unsafe Location #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc16_l_allowsubfolders16", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc16_l_allowsubfolders16_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc16_l_allowsubfolders16_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc16_l_pathcolon16", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc17", + "displayName": "Unsafe Location #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc17_l_allowsubfolders17", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc17_l_allowsubfolders17_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc17_l_allowsubfolders17_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc17_l_pathcolon17", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc18", + "displayName": "Unsafe Location #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc18_l_allowsubfolders18", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc18_l_allowsubfolders18_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc18_l_allowsubfolders18_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc18_l_pathcolon18", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc19", + "displayName": "Unsafe Location #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc19_l_allowsubfolders19", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc19_l_allowsubfolders19_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc19_l_allowsubfolders19_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc19_l_pathcolon19", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc20", + "displayName": "Unsafe Location #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc20_l_allowsubfolders20", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc20_l_allowsubfolders20_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc20_l_allowsubfolders20_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_protectedview_l_unsafeloc20_l_pathcolon20", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_allowunsecureapps", + "displayName": "Allow Unsecure web add-ins and Catalogs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_allowunsecureapps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_allowunsecureapps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_defaultfilesharecatalog", + "displayName": "Default Shared Folder Location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_defaultfilesharecatalog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_defaultfilesharecatalog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_defaultfilesharecatalog_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_defaultspcatalog", + "displayName": "Default SharePoint Catalog Location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_defaultspcatalog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_defaultspcatalog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_defaultspcatalog_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_disableallcatalogs", + "displayName": "Block Web Add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_disableallcatalogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_disableallcatalogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_disableofficestore", + "displayName": "Block the Office Store (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_disableofficestore_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_disableofficestore_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog01", + "displayName": "Trusted Catalog Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog01_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog02", + "displayName": "Trusted Catalog Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog02_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog03", + "displayName": "Trusted Catalog Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog03_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog04", + "displayName": "Trusted Catalog Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog04_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog05", + "displayName": "Trusted Catalog Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog05_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog06", + "displayName": "Trusted Catalog Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog06_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog07", + "displayName": "Trusted Catalog Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog07_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog08", + "displayName": "Trusted Catalog Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog08_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog09", + "displayName": "Trusted Catalog Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog09_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog10", + "displayName": "Trusted Catalog Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_trustedcatalogs_l_trustedcatalog10_l_url", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_adattributecontaingpersonalsiteurl", + "displayName": "AD attribute containing Personal Site URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_adattributecontaingpersonalsiteurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_adattributecontaingpersonalsiteurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_adattributecontaingpersonalsiteurl_l_empty424", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_allowfilesynchronizationviasoaponlyondomainnetworks", + "displayName": "Allow file synchronization via SOAP over HTTP only on domain networks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_allowfilesynchronizationviasoaponlyondomainnetworks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_allowfilesynchronizationviasoaponlyondomainnetworks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_catalogrefreshperiod", + "displayName": "Catalog Refresh Period (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_catalogrefreshperiod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_catalogrefreshperiod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_catalogrefreshperiod_l_empty601", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_disabletheofficeclientfrompolling", + "displayName": "Disable the Office client from polling the SharePoint Server for published links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_disabletheofficeclientfrompolling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_disabletheofficeclientfrompolling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_disabletheuserfromsettingthepersonalsiteurl", + "displayName": "Disable the user from setting the Personal Site URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_disabletheuserfromsettingthepersonalsiteurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_disabletheuserfromsettingthepersonalsiteurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_foldernameforpublishedlinks", + "displayName": "Folder name for Published Links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_foldernameforpublishedlinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_foldernameforpublishedlinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_foldernameforpublishedlinks_l_empty427", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_frequencyforpollingtheservertodownload", + "displayName": "Frequency for polling the server to download published links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_frequencyforpollingtheservertodownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_frequencyforpollingtheservertodownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_frequencyforpollingtheservertodownload_l_empty426", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_lengthadattributecontainingpersonalsiteurl", + "displayName": "Length AD Attribute containing Personal Site URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_lengthadattributecontainingpersonalsiteurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_lengthadattributecontainingpersonalsiteurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_lengthadattributecontainingpersonalsiteurl_l_empty425", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_turnonfilesynchronizationviasoapoverhttp", + "displayName": "Turn on file synchronization via SOAP over HTTP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_turnonfilesynchronizationviasoapoverhttp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings_l_turnonfilesynchronizationviasoapoverhttp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_enablecolleagueimportoutlookaddintowork", + "displayName": "Enable Colleague Import Outlook Add-in to work with Microsoft SharePoint Server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_enablecolleagueimportoutlookaddintowork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_enablecolleagueimportoutlookaddintowork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofdaystoscanfromtodaytodetermine", + "displayName": "Maximum number of days to scan from today to determine the user's colleagues for recommendation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofdaystoscanfromtodaytodetermine_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofdaystoscanfromtodaytodetermine_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofdaystoscanfromtodaytodetermine_l_empty429", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofitemstoscanfromtoday", + "displayName": "Maximum number of items to scan from today to determine the user's colleagues for recommendation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofitemstoscanfromtoday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofitemstoscanfromtoday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofitemstoscanfromtoday_l_empty428", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofreceipientsinanoutlookitem", + "displayName": "Maximum number of recipients in an Outlook item to scan to determine the user's colleagues for recommendation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofreceipientsinanoutlookitem_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofreceipientsinanoutlookitem_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofreceipientsinanoutlookitem_l_empty430", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows", + "displayName": "Maximum number of rows fetched per request while populating a lookup in the SharePoint list control (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows_l_empty433", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows_l_empty433_0", + "displayName": "Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows_l_empty433_1", + "displayName": "1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows_l_empty433_100", + "displayName": "100", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows_l_empty433_450", + "displayName": "450", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_maximumnumberofrows_l_empty433_5000", + "displayName": "5000", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_minimumtimebeforestartingcolleague", + "displayName": "Minimum time before starting Colleague recommendation scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_minimumtimebeforestartingcolleague_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_minimumtimebeforestartingcolleague_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_minimumtimebeforestartingcolleague_l_empty431", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_minimumtimetowaitbeforerescanning", + "displayName": "Minimum time to wait before rescanning the Outlook mailbox for new colleague recommendations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_minimumtimetowaitbeforerescanning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_minimumtimetowaitbeforerescanning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_serversettings~l_sharepointserver_l_minimumtimetowaitbeforerescanning_l_empty432", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services_l_disableofficeuserroamingsettings", + "displayName": "Disable Roaming Office User Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services_l_disableofficeuserroamingsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services_l_disableofficeuserroamingsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services~l_fax_l_disablefaxoverinternetfeature", + "displayName": "Disable Internet Fax feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services~l_fax_l_disablefaxoverinternetfeature_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services~l_fax_l_disablefaxoverinternetfeature_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services~l_fax_l_disallowcustomcoversheet", + "displayName": "Disallow custom cover sheet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services~l_fax_l_disallowcustomcoversheet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_services~l_fax_l_disallowcustomcoversheet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_enterprisetemplatespath", + "displayName": "Enterprise templates path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_enterprisetemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_enterprisetemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_enterprisetemplatespath_l_enterprisetemplatespath329", + "displayName": "Enterprise templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_setuserpathforthelabelpagesizeupdatefiles", + "displayName": "Set User path for the label page size update files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_setuserpathforthelabelpagesizeupdatefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_setuserpathforthelabelpagesizeupdatefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_setuserpathforthelabelpagesizeupdatefiles_l_setuserpathforthelabelpagesizeupdatefilesid", + "displayName": "User path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_setworkgrouppathforlabelpagesizeupdatefiles", + "displayName": "Set Workgroup path for label page size update files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_setworkgrouppathforlabelpagesizeupdatefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_setworkgrouppathforlabelpagesizeupdatefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_setworkgrouppathforlabelpagesizeupdatefiles_l_setworkgrouppathforlabelpagesizeupdatefilesid", + "displayName": "Workgroup path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_sharedthemespath", + "displayName": "Shared themes path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_sharedthemespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_sharedthemespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_sharedthemespath_l_sharedthemespath330", + "displayName": "Shared themes path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_userqueriespath", + "displayName": "User queries path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_userqueriespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_userqueriespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_userqueriespath_l_userqueriespath331", + "displayName": "User queries path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_usertemplatespath", + "displayName": "User templates path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_usertemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_usertemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_usertemplatespath_l_usertemplatespath328", + "displayName": "User templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_webquerydialoghomepage", + "displayName": "Web Query dialog box home page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_webquerydialoghomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_webquerydialoghomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_webquerydialoghomepage_l_webquerydialoghomepage333", + "displayName": "Web Query dialog box home page (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_workgroupbuildingblockspath", + "displayName": "Workgroup building blocks path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_workgroupbuildingblockspath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_workgroupbuildingblockspath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_workgroupbuildingblockspath_l_path2", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_workgrouptemplatespath", + "displayName": "Workgroup templates path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_workgrouptemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_workgrouptemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_sharedpaths_l_workgrouptemplatespath_l_workgrouptemplatespath329", + "displayName": "Workgroup templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_ekufiltering", + "displayName": "EKU filtering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_ekufiltering_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_ekufiltering_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_ekufiltering_l_empty412", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_legacyformatsignatires", + "displayName": "Legacy format signatures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_legacyformatsignatires_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_legacyformatsignatires_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_setdefaultimagedirctory", + "displayName": "Set default image directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_setdefaultimagedirctory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_setdefaultimagedirctory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_setdefaultimagedirctory_l_setdefaultimagedirctorypart", + "displayName": "Last-used signature image directory: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressexternalsigningservicesmenuitems", + "displayName": "Suppress external signature services menu item (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressexternalsigningservicesmenuitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressexternalsigningservicesmenuitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressofficesigningproviders", + "displayName": "Suppress Office Signing Providers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressofficesigningproviders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressofficesigningproviders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressofficesigningproviders_l_empty413", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressofficesigningproviders_l_empty413_0", + "displayName": "Enable Western and East Asian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressofficesigningproviders_l_empty413_1", + "displayName": "Suppress default Western", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressofficesigningproviders_l_empty413_2", + "displayName": "Suppress default East Asian", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_signing_l_supressofficesigningproviders_l_empty413_3", + "displayName": "Suppress both Western and East Asian", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_smartdocumentswordexcel_l_completelydisablethesmartdocumentsfeatureinwordandexcel", + "displayName": "Completely disable the Smart Documents feature in Word and Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_smartdocumentswordexcel_l_completelydisablethesmartdocumentsfeatureinwordandexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_smartdocumentswordexcel_l_completelydisablethesmartdocumentsfeatureinwordandexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_smartdocumentswordexcel_l_disablesmartdocumentsuseofmanifests", + "displayName": "Disable Smart Document's use of manifests (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_smartdocumentswordexcel_l_disablesmartdocumentsuseofmanifests_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_smartdocumentswordexcel_l_disablesmartdocumentsuseofmanifests_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_subscriptionactivation_l_autoorgidgetkey", + "displayName": "Automatically activate Office with federated organization credentials (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_subscriptionactivation_l_autoorgidgetkey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_subscriptionactivation_l_autoorgidgetkey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_subscriptionactivation_l_hidemanageaccountlink", + "displayName": "Do not show \"Manage Account\" link for subscription licenses. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_subscriptionactivation_l_hidemanageaccountlink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_subscriptionactivation_l_hidemanageaccountlink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_enablelogging", + "displayName": "Turn on telemetry data collection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_enablelogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_enablelogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeinventoryagentfilemetadataobfuscation", + "displayName": "Turn on privacy settings in Office Telemetry Agent (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeinventoryagentfilemetadataobfuscation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeinventoryagentfilemetadataobfuscation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeinventoryagentupload", + "displayName": "Turn on data uploading for Office Telemetry Agent (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeinventoryagentupload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeinventoryagentupload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcommonfileshare", + "displayName": "Specify the UNC path to store Office telemetry data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcommonfileshare_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcommonfileshare_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcommonfileshare_l_officeosmcommonfilesharefileshare", + "displayName": "UNC path to store Office telemetry data: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcustomtags", + "displayName": "Specify custom tags for Office telemetry data (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcustomtags_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcustomtags_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcustomtags_l_officeosmcustomtagstag1", + "displayName": "Tag 1: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcustomtags_l_officeosmcustomtagstag2", + "displayName": "Tag 2: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcustomtags_l_officeosmcustomtagstag3", + "displayName": "Tag 3: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmcustomtags_l_officeosmcustomtagstag4", + "displayName": "Tag 4: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications", + "displayName": "Office applications to exclude from Office Telemetry Agent reporting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsaccess", + "displayName": "Access-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsaccess_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsaccess_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsexcel", + "displayName": "Excel-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsexcel_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsexcel_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsonenote", + "displayName": "OneNote-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsonenote_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsonenote_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsoutlook", + "displayName": "Outlook-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsoutlook_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsoutlook_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationspowerpoint", + "displayName": "PowerPoint-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationspowerpoint_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationspowerpoint_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsproject", + "displayName": "Project-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsproject_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsproject_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationspublisher", + "displayName": "Publisher-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationspublisher_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationspublisher_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsvisio", + "displayName": "Visio-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsvisio_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsvisio_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsword", + "displayName": "Word-related solutions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsword_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedhostapplications_l_officeosmpreventedhostapplicationsword_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes", + "displayName": "Office solutions to exclude from Office Telemetry Agent reporting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesagave", + "displayName": "Web Add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesagave_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesagave_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesappaddins", + "displayName": "Application-specific add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesappaddins_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesappaddins_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypescomaddins", + "displayName": "COM add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypescomaddins_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypescomaddins_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesdocumentfiles", + "displayName": "Office document files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesdocumentfiles_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypesdocumentfiles_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypestemplatefiles", + "displayName": "Office template files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypestemplatefiles_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_telemetrydashboard_l_officeosmpreventedsolutiontypes_l_officeosmpreventedsolutiontypestemplatefiles_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_capitalizefirstletterofsentence", + "displayName": "Capitalize first letter of sentence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_capitalizefirstletterofsentence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_capitalizefirstletterofsentence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_capitalizenamesofdays", + "displayName": "Capitalize names of days (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_capitalizenamesofdays_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_capitalizenamesofdays_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_correctaccidentaluseofcapslockkey", + "displayName": "Correct accidental use of cAPS LOCK key (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_correctaccidentaluseofcapslockkey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_correctaccidentaluseofcapslockkey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_correcttwoinitialcapitals", + "displayName": "Correct TWo INitial CApitals (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_correcttwoinitialcapitals_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_correcttwoinitialcapitals_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_replacetextasyoutype", + "displayName": "Replace text as you type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_replacetextasyoutype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_replacetextasyoutype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_showautocorrectoptionsbuttons", + "displayName": "Show AutoCorrect Options buttons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_showautocorrectoptionsbuttons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess_l_showautocorrectoptionsbuttons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_checkfornewactionsurl", + "displayName": "Check for new actions URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_checkfornewactionsurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_checkfornewactionsurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_checkfornewactionsurl_l_checkfornewactionsurl231", + "displayName": "Check for new actions URL (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_enableadditionalactionsinexcel", + "displayName": "Enable additional actions in Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_enableadditionalactionsinexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_enableadditionalactionsinexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_moreactionsurl", + "displayName": "More actions URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_moreactionsurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_moreactionsurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsautocorrectoptionsexcelpowerpointandaccess~l_additionalactions_l_moreactionsurl_l_moreactionsurleditid", + "displayName": "More Actions URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_conversionservices_l_conversionservicesoptions", + "displayName": "Conversion Service Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_conversionservices_l_conversionservicesoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_conversionservices_l_conversionservicesoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_conversionservices_l_conversionservicesoptions_l_conversionservicesoptions236", + "displayName": "Conversion service options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_conversionservices_l_conversionservicesoptions_l_conversionservicesoptions236_0", + "displayName": "Do not allow to use Microsoft Conversion Service", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_conversionservices_l_conversionservicesoptions_l_conversionservicesoptions236_2", + "displayName": "Allow to use Microsoft Conversion Service", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_onlinecontentoptions", + "displayName": "Online Content Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_onlinecontentoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_onlinecontentoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_onlinecontentoptions_l_onlinecontentoptions236", + "displayName": "Online content options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_onlinecontentoptions_l_onlinecontentoptions236_0", + "displayName": "Do not allow Office to connect to the Internet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_onlinecontentoptions_l_onlinecontentoptions236_2", + "displayName": "Allow Office to connect to the Internet", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_serviceleveloptions", + "displayName": "Service Level Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_serviceleveloptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_serviceleveloptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_serviceleveloptions_l_serviceleveloptionsdropid", + "displayName": "Service Level Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_serviceleveloptions_l_serviceleveloptionsdropid_0", + "displayName": "Office services only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_serviceleveloptions_l_serviceleveloptionsdropid_1", + "displayName": "Microsoft services only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_onlinecontent_l_serviceleveloptions_l_serviceleveloptionsdropid_2", + "displayName": "All services", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_powerpointdesigner_l_powerpointdesigneroptions", + "displayName": "PowerPoint Designer Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_powerpointdesigner_l_powerpointdesigneroptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_powerpointdesigner_l_powerpointdesigneroptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_powerpointdesigner_l_powerpointdesigneroptions_l_powerpointdesigneroptionsid", + "displayName": "PowerPoint Designer options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_powerpointdesigner_l_powerpointdesigneroptions_l_powerpointdesigneroptionsid_0", + "displayName": "Disable PowerPoint Designer", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralserviceoptions~l_powerpointdesigner_l_powerpointdesigneroptions_l_powerpointdesigneroptionsid_73187", + "displayName": "Enable PowerPoint Designer", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disablehyperlinkstowebtemplatesinfilenewandtaskpanes", + "displayName": "Disable web templates in File | New and on the Office Start screen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disablehyperlinkstowebtemplatesinfilenewandtaskpanes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disablehyperlinkstowebtemplatesinfilenewandtaskpanes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disableofficetemplates", + "displayName": "Hide all Office-provided templates on the Office Start screen and in File | New (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disableofficetemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disableofficetemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disabletargetedmessaging", + "displayName": "Hide dynamic lifecycle messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disabletargetedmessaging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions_l_disabletargetedmessaging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_allowpngasanoutputformat", + "displayName": "Allow PNG as an output format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_allowpngasanoutputformat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_allowpngasanoutputformat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_relyonvmlfordisplayinggraphicsinbrowsers", + "displayName": "Rely on VML for displaying graphics in browsers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_relyonvmlfordisplayinggraphicsinbrowsers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_relyonvmlfordisplayinggraphicsinbrowsers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor", + "displayName": "Target monitor (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_pixelsperinch", + "displayName": "Pixels per inch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_pixelsperinch_72", + "displayName": "72", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_pixelsperinch_96", + "displayName": "96", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_pixelsperinch_120", + "displayName": "120", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize", + "displayName": "Screen size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_544x376", + "displayName": "544 x 376", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_640x480", + "displayName": "640 x 480", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_720x512", + "displayName": "720 x 512", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_800x600", + "displayName": "800 x 600", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_1024x768", + "displayName": "1024 x 768", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_1152x882", + "displayName": "1152 x 882", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_1152x900", + "displayName": "1152 x 900", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_1280x1024", + "displayName": "1280 x 1024", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_1600x1200", + "displayName": "1600 x 1200", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_1800x1440", + "displayName": "1800 x 1440", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_browsers_l_targetmonitor_l_screensize_1920x1200", + "displayName": "1920 x 1200", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding", + "displayName": "Default or specific encoding (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_alwayssavewebpagesinthedefaultencoding", + "displayName": "Always save Web pages in the default encoding. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_alwayssavewebpagesinthedefaultencoding_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_alwayssavewebpagesinthedefaultencoding_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas", + "displayName": "Save this document as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1256", + "displayName": "Arabic Alphabet (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_28594", + "displayName": "Baltic Alphabet (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1257", + "displayName": "Baltic Alphabet (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_852", + "displayName": "Central European (DOS)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_28592", + "displayName": "Central European Alphabet (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1250", + "displayName": "Central European Alphabet (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_936", + "displayName": "Chinese Simplified (GB2312)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_52936", + "displayName": "Chinese Simplified (HZ)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_950", + "displayName": "Chinese Traditional (Big 5)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_866", + "displayName": "Cyrillic Alphabet (DOS)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_28595", + "displayName": "Cyrillic Alphabet (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_20866", + "displayName": "Cyrillic Alphabet (KOI8-R)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1251", + "displayName": "Cyrillic Alphabet (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_28597", + "displayName": "Greek Alphabet (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1253", + "displayName": "Greek Alphabet (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1255", + "displayName": "Hebrew Alphabet (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_51932", + "displayName": "Japanese (EUC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_50220", + "displayName": "Japanese (JIS)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_50222", + "displayName": "Japanese (JIS-Allow 1 byte Kana - SO/SI)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_50221", + "displayName": "Japanese (JIS-Allow 1 byte Kana)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_932", + "displayName": "Japanese (Shift-JIS)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_949", + "displayName": "Korean", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_28593", + "displayName": "Latin 3 Alphabet (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_874", + "displayName": "Thai (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1254", + "displayName": "Turkish Alphabet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_21866", + "displayName": "Ukrainian Alphabet (KOI8-RU)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1200", + "displayName": "Universal Alphabet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1201", + "displayName": "Universal Alphabet (Big-Endian)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_65001", + "displayName": "Universal Alphabet (UTF-8)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1258", + "displayName": "Vietnamese Alphabet (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_28598", + "displayName": "Visual Hebrew (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_encoding_l_defaultorspecificencoding_l_savethisdocumentas_1252", + "displayName": "Western Alphabet (Windows)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_checkifofficeisthedefaulteditorforwebpagescreatedinoffice", + "displayName": "Check if Office is the default editor for Web pages created in Office (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_checkifofficeisthedefaulteditorforwebpagescreatedinoffice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_checkifofficeisthedefaulteditorforwebpagescreatedinoffice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_openofficedocumentdirectlyinofficeapplication", + "displayName": "Open Office document directly in Office application (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_openofficedocumentdirectlyinofficeapplication_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_openofficedocumentdirectlyinofficeapplication_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_openofficedocumentsasreadwritewhilebrowsing", + "displayName": "Open Office documents as read/write while browsing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_openofficedocumentsasreadwritewhilebrowsing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_openofficedocumentsasreadwritewhilebrowsing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_organizesupportingfilesinafolder", + "displayName": "Organize supporting files in a folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_organizesupportingfilesinafolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_organizesupportingfilesinafolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_updatelinksonsave", + "displayName": "Update links on save (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_updatelinksonsave_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_updatelinksonsave_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_uselongfilenameswheneverpossible", + "displayName": "Use long file names whenever possible (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_uselongfilenameswheneverpossible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_files_l_uselongfilenameswheneverpossible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting", + "displayName": "Rely on CSS for font formatting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting_l_checktoenforcecssonunchecktoenforcecssoff", + "displayName": "Enforce CSS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting_l_checktoenforcecssonunchecktoenforcecssoff_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting_l_checktoenforcecssonunchecktoenforcecssoff_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting_l_usethecsssettingforwordasanemaileditor", + "displayName": "CSS setting for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting_l_usethecsssettingforwordasanemaileditor_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsgeneralweboptions~l_general_l_relyoncssforfontformatting_l_usethecsssettingforwordasanemaileditor_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_allowaccenteduppercaseinfrench", + "displayName": "Allow accented uppercase in French (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_allowaccenteduppercaseinfrench_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_allowaccenteduppercaseinfrench_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_arabicmodes", + "displayName": "Arabic modes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_arabicmodes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_arabicmodes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_arabicmodes_l_empty239", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_arabicmodes_l_empty239_0", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_arabicmodes_l_empty239_1", + "displayName": "Strict initial alef hamza", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_arabicmodes_l_empty239_2", + "displayName": "Strict final yaa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_arabicmodes_l_empty239_3", + "displayName": "Both strict", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_combineauxverbadj", + "displayName": "Combine aux verb/adj. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_combineauxverbadj_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_combineauxverbadj_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_flagrepeatedwords", + "displayName": "Flag Repeated Words (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_flagrepeatedwords_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_flagrepeatedwords_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_hebrewmode", + "displayName": "Hebrew mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_hebrewmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_hebrewmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_hebrewmode_l_empty238", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_hebrewmode_l_empty238_0", + "displayName": "Full", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_hebrewmode_l_empty238_1", + "displayName": "Partial", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_hebrewmode_l_empty238_2", + "displayName": "Mixed", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_hebrewmode_l_empty238_3", + "displayName": "Mixed authorized", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignoreinternetandfileaddresses", + "displayName": "Ignore Internet and file addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignoreinternetandfileaddresses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignoreinternetandfileaddresses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignorewordsinuppercase", + "displayName": "Ignore words in UPPERCASE (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignorewordsinuppercase_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignorewordsinuppercase_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignorewordswithnumbers", + "displayName": "Ignore words with numbers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignorewordswithnumbers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_ignorewordswithnumbers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_processcompoundnouns", + "displayName": "Process compound nouns (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_processcompoundnouns_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_processcompoundnouns_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_suggestfrommaindictionaryonly", + "displayName": "Suggest from main dictionary only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_suggestfrommaindictionaryonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_suggestfrommaindictionaryonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_useautochangelist", + "displayName": "Use auto-change list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_useautochangelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_useautochangelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_usegermanpostreformruleswhenrunningspellcheck", + "displayName": "German: Use post-reform rules (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_usegermanpostreformruleswhenrunningspellcheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling_l_usegermanpostreformruleswhenrunningspellcheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling~l_proofingdatacollection_l_improveproofingtools", + "displayName": "Improve Proofing Tools (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling~l_proofingdatacollection_l_improveproofingtools_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_toolsoptionsspelling~l_proofingdatacollection_l_improveproofingtools_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_allowwebarchivestobesavedinanyhtmlencoding", + "displayName": "Allow Web Archives to be saved in any HTML encoding (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_allowwebarchivestobesavedinanyhtmlencoding_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_allowwebarchivestobesavedinanyhtmlencoding_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_defaultformatforpublish", + "displayName": "Default format for 'Publish' (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_defaultformatforpublish_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_defaultformatforpublish_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_defaultformatforpublish_l_defaultformatforpublish405", + "displayName": "Default format for 'Publish' (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_defaultformatforpublish_l_defaultformatforpublish405_2", + "displayName": "Web Archive (*.mht)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_defaultformatforpublish_l_defaultformatforpublish405_1", + "displayName": "Web Page (*.htm)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_defaultformatforpublish_l_defaultformatforpublish405_0", + "displayName": "Default", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointsaveanadditionalversionofthepresentationforolderbr", + "displayName": "PowerPoint: Save an additional version of the presentation for older browsers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointsaveanadditionalversionofthepresentationforolderbr_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointsaveanadditionalversionofthepresentationforolderbr_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointwebpageformatcompatibility", + "displayName": "PowerPoint: web page format compatibility (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointwebpageformatcompatibility_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointwebpageformatcompatibility_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointwebpageformatcompatibility_l_powerpointwebpageformatcompatibility406", + "displayName": "PowerPoint: web page format compatibility (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointwebpageformatcompatibility_l_powerpointwebpageformatcompatibility406_2", + "displayName": "All browsers", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointwebpageformatcompatibility_l_powerpointwebpageformatcompatibility406_1", + "displayName": "Windows Internet Explorer 4.0 or later", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_powerpointwebpageformatcompatibility_l_powerpointwebpageformatcompatibility406_0", + "displayName": "Based on installed browsers", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_savenewwebpagesaswebarchives", + "displayName": "Save new Web pages as Web archives (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_savenewwebpagesaswebarchives_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_savenewwebpagesaswebarchives_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_webarchiveencoding", + "displayName": "Web Archive encoding (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_webarchiveencoding_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_webarchiveencoding_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_webarchiveencoding_l_webarchiveencoding402", + "displayName": "Web Archive encoding (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_webarchiveencoding_l_webarchiveencoding402_2", + "displayName": "Use 8 bit content-transfer-encoding", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_webarchiveencoding_l_webarchiveencoding402_1", + "displayName": "Use 8 bit only for encoding text parts", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_webarchives_l_webarchiveencoding_l_webarchiveencoding402_0", + "displayName": "Use RFC-approved encoding", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationexcel", + "displayName": "Don’t show the What’s New information for Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationonenote", + "displayName": "Don’t show the What’s New information for OneNote (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationonenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationonenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationoutlook", + "displayName": "Don’t show the What’s New information for Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationpowerpoint", + "displayName": "Don’t show the What’s New information for PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationpowerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationpowerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationvisio", + "displayName": "Don’t show the What’s New information for Visio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationvisio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationvisio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationword", + "displayName": "Don’t show the What’s New information for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v2~policy~l_microsoftofficesystem~l_whatsnew_l_dontshowwhatsnewinformationword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v3.1~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableroamingmruforonpremservers", + "displayName": "Turn off roaming of on-premises file names and metadata (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v3.1~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableroamingmruforonpremservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3.1~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableroamingmruforonpremservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_collaborationsettings_l_documentchat", + "displayName": "Allow co-authors to chat within a document (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_collaborationsettings_l_documentchat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_collaborationsettings_l_documentchat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_globaloptions~l_customize_l_defaultuithemeuser", + "displayName": "Default Office theme (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_globaloptions~l_customize_l_defaultuithemeuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_globaloptions~l_customize_l_defaultuithemeuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_globaloptions~l_customize_l_defaultuithemeuser_l_defaultuithemeenum", + "displayName": "Theme: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_globaloptions~l_customize_l_defaultuithemeuser_l_defaultuithemeenum_0", + "displayName": "Colorful", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_globaloptions~l_customize_l_defaultuithemeuser_l_defaultuithemeenum_3", + "displayName": "Dark Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_globaloptions~l_customize_l_defaultuithemeuser_l_defaultuithemeenum_4", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_globaloptions~l_customize_l_defaultuithemeuser_l_defaultuithemeenum_5", + "displayName": "White", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableroamingmruforonpremservers", + "displayName": "Turn off roaming of on-premises file names and metadata (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableroamingmruforonpremservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_miscellaneous437_l_disableroamingmruforonpremservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_miscellaneous437_l_officeinsideruserexperience", + "displayName": "Show the option for Office Insider (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_miscellaneous437_l_officeinsideruserexperience_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_miscellaneous437_l_officeinsideruserexperience_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_securitysettings_l_forceruntimeavscan", + "displayName": "Force Runtime AV Scan (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_securitysettings_l_forceruntimeavscan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_securitysettings_l_forceruntimeavscan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_securitysettings_l_useofficeforlabelling", + "displayName": "Use the Sensitivity feature in Office to apply and view sensitivity labels (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_securitysettings_l_useofficeforlabelling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v3~policy~l_microsoftofficesystem~l_securitysettings_l_useofficeforlabelling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v5~policy~l_microsoftofficesystem~l_securitysettings_l_authenticationfbabehavior", + "displayName": "Control how Office handles form-based sign-in prompts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v5~policy~l_microsoftofficesystem~l_securitysettings_l_authenticationfbabehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v5~policy~l_microsoftofficesystem~l_securitysettings_l_authenticationfbabehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v5~policy~l_microsoftofficesystem~l_securitysettings_l_authenticationfbabehavior_l_authenticationfbabehaviorenum", + "displayName": "Behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v5~policy~l_microsoftofficesystem~l_securitysettings_l_authenticationfbabehavior_l_authenticationfbabehaviorenum_1", + "displayName": "Block all prompts", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v5~policy~l_microsoftofficesystem~l_securitysettings_l_authenticationfbabehavior_l_authenticationfbabehaviorenum_2", + "displayName": "Ask the user what to do for each new host", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v5~policy~l_microsoftofficesystem~l_securitysettings_l_authenticationfbabehavior_l_authenticationfbabehaviorenum_3", + "displayName": "Show prompts only from allowed hosts", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v5~policy~l_microsoftofficesystem~l_securitysettings_l_authenticationfbabehavior_l_authenticationfbaenabledhostsid", + "displayName": "Specify hosts allowed to show form-based sign-in prompts to users: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v6~policy~l_microsoftofficesystem~l_securitysettings_l_allowvbaintranetrefs", + "displayName": "Allow VBA to load typelib references by path from untrusted intranet locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v6~policy~l_microsoftofficesystem~l_securitysettings_l_allowvbaintranetrefs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v6~policy~l_microsoftofficesystem~l_securitysettings_l_allowvbaintranetrefs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v6~policy~l_microsoftofficesystem~l_securitysettings_l_disablestrictvbarefssecuritypolicy", + "displayName": "Disable additional security checks on VBA library references that may refer to unsafe locations on the local machine (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v6~policy~l_microsoftofficesystem~l_securitysettings_l_disablestrictvbarefssecuritypolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v6~policy~l_microsoftofficesystem~l_securitysettings_l_disablestrictvbarefssecuritypolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_miscellaneous437_l_personalizationhomeuseprogram", + "displayName": "Show in-product notifications for the Microsoft Home Use Program (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_miscellaneous437_l_personalizationhomeuseprogram_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_miscellaneous437_l_personalizationhomeuseprogram_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_emailcollection", + "displayName": "Allow Microsoft to follow up on feedback submitted by users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_emailcollection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_emailcollection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendsurvey", + "displayName": "Allow users to receive and respond to in-product surveys from Microsoft (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendsurvey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_sendsurvey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings_l_model3dblockedextensions", + "displayName": "Disable 3D Model File Formats List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings_l_model3dblockedextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings_l_model3dblockedextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings_l_model3dblockedextensions_l_model3dblocklist", + "displayName": "List of file extensions to block: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffcameraandmicrophoneinapplicationguard", + "displayName": "Turn off camera and microphone access for Office apps using Application Guard. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffcameraandmicrophoneinapplicationguard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffcameraandmicrophoneinapplicationguard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffclipboardaccessinapplicationguard", + "displayName": "Don't allow copy and paste from Office documents opened in Application Guard. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffclipboardaccessinapplicationguard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffclipboardaccessinapplicationguard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffhardwareaccelerationinapplicationguard", + "displayName": "Disable hardware acceleration for Office in Application Guard. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffhardwareaccelerationinapplicationguard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffhardwareaccelerationinapplicationguard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffofficeinapplicationguard", + "displayName": "Don't use Application Guard with Office. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffofficeinapplicationguard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffofficeinapplicationguard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard", + "displayName": "Restrict printing from Office of documents opened in Application Guard. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnofflocalprintinginapplicationguard", + "displayName": "Disable Local printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnofflocalprintinginapplicationguard_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnofflocalprintinginapplicationguard_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffnetworkprintinginapplicationguard", + "displayName": "Disable Network printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffnetworkprintinginapplicationguard_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffnetworkprintinginapplicationguard_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffpdfprintinginapplicationguard", + "displayName": "Disable PDF printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffpdfprintinginapplicationguard_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffpdfprintinginapplicationguard_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffxpsprintinginapplicationguard", + "displayName": "Disable XPS printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffxpsprintinginapplicationguard_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffprintsettingsinapplicationguard_l_turnoffxpsprintinginapplicationguard_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnofftrustpromotionfordocumentsinapplicationguard", + "displayName": "Prevent users from removing Application Guard protection on files. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnofftrustpromotionfordocumentsinapplicationguard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v7~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnofftrustpromotionfordocumentsinapplicationguard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_logcollection", + "displayName": "Allow users to include log files and content samples when they submit feedback to Microsoft (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_logcollection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_privacy~l_trustcenter_l_logcollection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_onlytrustvbasignaturev3", + "displayName": "Only trust VBA macros that use V3 signatures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_onlytrustvbasignaturev3_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241_l_onlytrustvbasignaturev3_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_configureprecreateinapplicationguard", + "displayName": "Configure Application Guard container precreation. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_configureprecreateinapplicationguard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_configureprecreateinapplicationguard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v8~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_configureprecreateinapplicationguard_l_setappguardprewarmwindowvalue", + "displayName": "Pre-Create Window (days): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser", + "displayName": "Show the option for the Office Update Channel experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_insiderfast", + "displayName": "Beta Channel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_insiderfast_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_insiderfast_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_insiderslow", + "displayName": "Current Channel (Preview) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_insiderslow_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_insiderslow_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_mec", + "displayName": "Monthly Enterprise Channel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_mec_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_mec_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_production", + "displayName": "Current Channel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_production_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_production_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_sae", + "displayName": "Semi-Annual Enterprise Channel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_sae_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_sae_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_saepreview", + "displayName": "Semi-Annual Enterprise Channel (Preview) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_saepreview_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_miscellaneous437_l_updatechannelselectoruser_l_uc_saepreview_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffblockingofunsupportedfiletypesinapplicationguard", + "displayName": "Turn off protection of unsupported file types in Application Guard for Office. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffblockingofunsupportedfiletypesinapplicationguard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_office16v9~policy~l_microsoftofficesystem~l_securitysettings~l_trustcenter241~l_applicationguard_l_turnoffblockingofunsupportedfiletypesinapplicationguard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites", + "displayName": "Configure team site libraries to sync automatically (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_automountteamsiteslistbox", + "displayName": "Libraries: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_automountteamsiteslistbox_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_automountteamsites_automountteamsiteslistbox_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_defaultrootdir", + "displayName": "Set the default location for the OneDrive folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_defaultrootdir_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_defaultrootdir_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_defaultrootdir_defaultrootdirlist", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_defaultrootdir_defaultrootdirlist_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_defaultrootdir_defaultrootdirlist_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablecustomroot", + "displayName": "Prevent users from changing the location of their OneDrive folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablecustomroot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablecustomroot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablecustomroot_disablecustomrootlist", + "displayName": "Change location setting: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablecustomroot_disablecustomrootlist_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablecustomroot_disablecustomrootlist_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablefretutorial", + "displayName": "Disable the tutorial that appears at the end of OneDrive Setup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablefretutorial_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablefretutorial_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepauseonbatterysaver", + "displayName": "Continue syncing when devices have battery saver mode turned on (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepauseonbatterysaver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepauseonbatterysaver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepauseonmeterednetwork", + "displayName": "Continue syncing on metered networks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepauseonmeterednetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepauseonmeterednetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepersonalsync", + "displayName": "Prevent users from syncing personal OneDrive accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepersonalsync_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_disablepersonalsync_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_downloadbandwidthlimit", + "displayName": "Limit the sync app download speed to a fixed rate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_downloadbandwidthlimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_downloadbandwidthlimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_downloadbandwidthlimit_downloadratevalue", + "displayName": "Bandwidth: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_enableallocsiclients", + "displayName": "Coauthor and share in Office desktop apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_enableallocsiclients_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_enableallocsiclients_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_enableholdthefile", + "displayName": "Allow users to choose how to handle Office file sync conflicts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_enableholdthefile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_enableholdthefile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_uploadbandwidthlimit", + "displayName": "Limit the sync app upload speed to a fixed rate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_uploadbandwidthlimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_uploadbandwidthlimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv2~policy~onedrivengsc_uploadbandwidthlimit_uploadratevalue", + "displayName": "Bandwidth: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_kfmforcewindowsdisplaylanguage", + "displayName": "Always use the user's Windows display language when provisioning known folders in OneDrive (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_kfmforcewindowsdisplaylanguage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv4~policy~onedrivengsc_kfmforcewindowsdisplaylanguage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_disablefreanimation", + "displayName": "Disable animation that appears during OneDrive Setup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_disablefreanimation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onedrivengscv6~policy~onedrivengsc_disablefreanimation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_disableinstalledonenoteaddins", + "displayName": "Disable installed OneNote Add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_disableinstalledonenoteaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_disableinstalledonenoteaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_disableonenotecomapi", + "displayName": "Disable OneNote COM API (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_disableonenotecomapi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_disableonenotecomapi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_addins_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook", + "displayName": "Choose default codec to be used for Video notebook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec", + "displayName": "Choose the Windows Media Video 8 codec: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for color pocket pcs (150 kbps)", + "displayName": "Color Pocket PCs (150 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for dial-up modems or single-channel isdn (28.8 to 56 kbps)", + "displayName": "Dial-up Modems or Single-channel ISDN (28.8 to 56 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for lan, cable modem, or xdsl (100 to 768 kbps)", + "displayName": "LAN, Cable Modem, or xDSL (100 to 768 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for dial-up modems or lan (28.8 to 100 kbps)", + "displayName": "Dial-up Modems or LAN (28.8 to 100 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for dial-up modems (28.8 kbps)", + "displayName": "Dial-up Modems (28.8 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for dial-up modems (56 kbps)", + "displayName": "Dial-up Modems (56 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for local area network (100 kbps)", + "displayName": "Local Area Network (100 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for local area network (256 kbps)", + "displayName": "Local Area Network (256 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for local area network (384 kbps)", + "displayName": "Local Area Network (384 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for broadband (ntsc, 700 kbps)", + "displayName": "Broadband (NTSC, 700 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for broadband (ntsc, 1400 kbps)", + "displayName": "Broadband (NTSC, 1400 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for broadband (pal, 384 kbps)", + "displayName": "Broadband (PAL, 384 Kbps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_choosedefaultcodectobeusedforvideonotebook_l_choosethewindowsmediavideo8codec_windows media video 8 for broadband (pal, 700 kbps)", + "displayName": "Broadband (PAL, 700 Kbps)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_disableaudosearch", + "displayName": "Disable audio search (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_disableaudosearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_disableaudosearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_disablelinkedaudiofeature", + "displayName": "Disable Linked Audio feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_disablelinkedaudiofeature_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_disablelinkedaudiofeature_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_rewindfromstartofparagraphbythefollowingnumberofseconds", + "displayName": "Rewind from start of paragraph by the following number of seconds (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_rewindfromstartofparagraphbythefollowingnumberofseconds_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_rewindfromstartofparagraphbythefollowingnumberofseconds_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_rewindfromstartofparagraphbythefollowingnumberofseconds_l_rewindfromstartofparagraphbysec", + "displayName": "Rewind from start of paragraph by: (sec) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifynumberofbitstosamplewhenrecording", + "displayName": "Specify number of bits to sample when recording (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifynumberofbitstosamplewhenrecording_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifynumberofbitstosamplewhenrecording_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifynumberofbitstosamplewhenrecording_l_bits", + "displayName": "Bits: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifynumberofchannelstorecord", + "displayName": "Specify number of channels to record (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifynumberofchannelstorecord_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifynumberofchannelstorecord_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifynumberofchannelstorecord_l_channels12", + "displayName": "Channels (1-2): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifyratetosampleaudiobitssecond", + "displayName": "Specify rate to sample audio (bits/second) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifyratetosampleaudiobitssecond_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifyratetosampleaudiobitssecond_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_audioandvideo_l_specifyratetosampleaudiobitssecond_l_bitssecond", + "displayName": "Bits/Second: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook", + "displayName": "Automatically back up my notebook... (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin", + "displayName": "Automatically back up at this interval (min): (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_1", + "displayName": "1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_2", + "displayName": "2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_3", + "displayName": "3", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_4", + "displayName": "4", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_5", + "displayName": "5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_10", + "displayName": "10", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_15", + "displayName": "15", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_30", + "displayName": "30", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_60", + "displayName": "60", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_120", + "displayName": "120", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_180", + "displayName": "180", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_240", + "displayName": "240", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_300", + "displayName": "300", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_360", + "displayName": "360", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_480", + "displayName": "480", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_720", + "displayName": "720", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_960", + "displayName": "960", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_1440", + "displayName": "1440", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_2880", + "displayName": "2880", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_4320", + "displayName": "4320", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_5760", + "displayName": "5760", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_7200", + "displayName": "7200", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_8640", + "displayName": "8640", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_10080", + "displayName": "10080", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_20160", + "displayName": "20160", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_30240", + "displayName": "30240", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_40320", + "displayName": "40320", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_50400", + "displayName": "50400", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_automaticallybackupatthisintervalmin_60480", + "displayName": "60480", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_checktoenableautomaticbackup", + "displayName": "Check to enable automatic backup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_checktoenableautomaticbackup_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_automaticallybackupmynotebook_l_checktoenableautomaticbackup_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_numberofbackupcopiestokeep", + "displayName": "Number of backup copies to keep (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_numberofbackupcopiestokeep_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_numberofbackupcopiestokeep_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_backup_l_numberofbackupcopiestokeep_l_numberofbackupcopiestokeep2", + "displayName": "Number of backup copies to keep (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_navigationbarappearsontheright", + "displayName": "Navigation bar appears on the right (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_navigationbarappearsontheright_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_navigationbarappearsontheright_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_pagetabsappearontheleft", + "displayName": "Page tabs appear on the left (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_pagetabsappearontheleft_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_pagetabsappearontheleft_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_pagetabsappearontheleft_l_specifylocationofthepagetabcontrol", + "displayName": "Specify location of the page tab control: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_pagetabsappearontheleft_l_specifylocationofthepagetabcontrol_0", + "displayName": "Right", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_pagetabsappearontheleft_l_specifylocationofthepagetabcontrol_1", + "displayName": "Left", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_shownotecontainers", + "displayName": "Show Note Containers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_shownotecontainers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_shownotecontainers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_verticalscrollbarappearsonleft", + "displayName": "Vertical scroll bar appears on left (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_verticalscrollbarappearsonleft_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_display_l_verticalscrollbarappearsonleft_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autobulletrecognition", + "displayName": "Auto Bullet Recognition (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autobulletrecognition_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autobulletrecognition_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autokeyboardswitching", + "displayName": "Auto Keyboard Switching (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autokeyboardswitching_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autokeyboardswitching_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autonumberingrecognition", + "displayName": "Auto Numbering Recognition (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autonumberingrecognition_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_autonumberingrecognition_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_defaultfontname", + "displayName": "Default Font Name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_defaultfontname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_defaultfontname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_defaultfontname_l_font", + "displayName": "Font: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_defaultfontsize", + "displayName": "Default Font Size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_defaultfontsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_defaultfontsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_defaultfontsize_l_fontsize", + "displayName": "Font Size: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_includelinktosourcewhenpastingfromtheinternet", + "displayName": "Include link to source when pasting from the Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_includelinktosourcewhenpastingfromtheinternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_includelinktosourcewhenpastingfromtheinternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_showpasteoptionsbuttons", + "displayName": "Show Paste Options buttons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_showpasteoptionsbuttons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_showpasteoptionsbuttons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_turnoffautocalculator", + "displayName": "Turn off auto calculator (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_turnoffautocalculator_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_turnoffautocalculator_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_turnofflinkcreationwith", + "displayName": "Turn off link creation with [[ ]] (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_turnofflinkcreationwith_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_turnofflinkcreationwith_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_addsignaturetoonenoteemailmessages", + "displayName": "Add signature to OneNote email messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_addsignaturetoonenoteemailmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_addsignaturetoonenoteemailmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_allowonenoteemailattachments", + "displayName": "Allow OneNote e-mail attachments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_allowonenoteemailattachments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_allowonenoteemailattachments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_attachembeddedfilestotheemail", + "displayName": "Attach embedded files to the email message as separate files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_attachembeddedfilestotheemail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_attachembeddedfilestotheemail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_usethissignatureforonenoteemail", + "displayName": "Use this signature for OneNote email (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_usethissignatureforonenoteemail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_usethissignatureforonenoteemail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_email_l_usethissignatureforonenoteemail_l_entersignaturetouseforonenoteemail", + "displayName": "Enter signature to use for OneNote e-mail (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_noteflags_l_copyitemswhenmovingthem", + "displayName": "Copy items when moving them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_noteflags_l_copyitemswhenmovingthem_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_noteflags_l_copyitemswhenmovingthem_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_noteflags_l_showdimmedtaggednotesinthetagssummarytaskpane", + "displayName": "Show dimmed tagged notes in the Tags Summary task pane (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_noteflags_l_showdimmedtaggednotesinthetagssummarytaskpane_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_noteflags_l_showdimmedtaggednotesinthetagssummarytaskpane_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_addonenoteicontonotificationarea", + "displayName": "Add OneNote icon to notification area (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_addonenoteicontonotificationarea_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_addonenoteicontonotificationarea_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote", + "displayName": "Default unit of measurement used in OneNote (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote_l_specifydefaultunitofmeasurement", + "displayName": "Specify default unit of measurement: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote_l_specifydefaultunitofmeasurement_0", + "displayName": "Inch", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote_l_specifydefaultunitofmeasurement_1", + "displayName": "Centimeter", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote_l_specifydefaultunitofmeasurement_2", + "displayName": "Millimeter", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote_l_specifydefaultunitofmeasurement_3", + "displayName": "Point", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_defaultunitofmeasurementusedinonenote_l_specifydefaultunitofmeasurement_4", + "displayName": "Pica", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableembeddedfiles", + "displayName": "Disable embedded files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableembeddedfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableembeddedfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableocr", + "displayName": "Disable OCR (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableocr_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableocr_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableonenotescreenclippingnotifications", + "displayName": "Disable OneNote screen clipping notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableonenotescreenclippingnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableonenotescreenclippingnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableonenotescreenclippings", + "displayName": "Disable OneNote Screen Clippings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableonenotescreenclippings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disableonenotescreenclippings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_embeddedfilesblockedextensions", + "displayName": "Embedded Files Blocked Extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_embeddedfilesblockedextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_embeddedfilesblockedextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_embeddedfilesblockedextensions_l_empty12", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_loadanotebookonfirstboot", + "displayName": "Load a notebook on first boot (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_loadanotebookonfirstboot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_loadanotebookonfirstboot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_loadanotebookonfirstboot_l_empty13", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_notebookpresence", + "displayName": "Notebook Presence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_notebookpresence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_notebookpresence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_numberofdaysbeforewarningthatserveris", + "displayName": "Number of days before warning that server is inaccessible (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_numberofdaysbeforewarningthatserveris_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_numberofdaysbeforewarningthatserveris_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_numberofdaysbeforewarningthatserveris_l_empty14", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_setuncintervaltopollforchangesonfileservers", + "displayName": "Set UNC interval to poll for changes on file servers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_setuncintervaltopollforchangesonfileservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_setuncintervaltopollforchangesonfileservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_setuncintervaltopollforchangesonfileservers_l_setuncintervaltopollforchangesonfileserversspinid", + "displayName": "Interval to poll the server (seconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointsyncinterval", + "displayName": "SharePoint sync interval for notebooks stored on SharePoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointsyncinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointsyncinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointsyncinterval_l_empty15", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_specifyembeddedfilesizelimit", + "displayName": "Embedded File Size Limit (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_specifyembeddedfilesizelimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_specifyembeddedfilesizelimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_specifyembeddedfilesizelimit_l_embeddedfilesizelimit", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_turnoffonenoteautolinkednotetaking", + "displayName": "Turn off OneNote auto-linked note taking (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_turnoffonenoteautolinkednotetaking_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_turnoffonenoteautolinkednotetaking_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_disablepasswordprotectedsections", + "displayName": "Disable password protected sections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_disablepasswordprotectedsections_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_disablepasswordprotectedsections_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_disallowsaddonsaccesstopass", + "displayName": "Disallows add-ons access to password protected sections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_disallowsaddonsaccesstopass_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_disallowsaddonsaccesstopass_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime", + "displayName": "Lock password protected sections after user hasn't worked on them for a time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_checktolocksections", + "displayName": "Check to lock sections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_checktolocksections_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_checktolocksections_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections", + "displayName": "Time interval (minutes) to lock password protected sections: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_1", + "displayName": "1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_5", + "displayName": "5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_10", + "displayName": "10", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_15", + "displayName": "15", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_30", + "displayName": "30", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_60", + "displayName": "60", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_120", + "displayName": "120", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_240", + "displayName": "240", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_480", + "displayName": "480", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_720", + "displayName": "720", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsafteruserhasntworkedonthemforatime_l_timeintervalminutestolockpasswordprotectedsections_1440", + "displayName": "1440", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsassoonasinavigateawayfromthem", + "displayName": "Lock password protected sections as soon as I navigate away from them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsassoonasinavigateawayfromthem_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_password_l_lockpasswordprotectedsectionsassoonasinavigateawayfromthem_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_automaticallyswitchbetweenpenandselectiontool", + "displayName": "Automatically switch between Pen and Selection Tool (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_automaticallyswitchbetweenpenandselectiontool_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_automaticallyswitchbetweenpenandselectiontool_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_createallnewpageswithrulelines", + "displayName": "Create all new pages with rule lines (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_createallnewpageswithrulelines_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_createallnewpageswithrulelines_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_disablescratchout", + "displayName": "Disable scratch out (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_disablescratchout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_disablescratchout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_showtabletpcinputpanelononenotepages", + "displayName": "Show Tablet PC Input Panel on OneNote pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_showtabletpcinputpanelononenotepages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_showtabletpcinputpanelononenotepages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_usepenpressuresensitivity", + "displayName": "Use pen pressure sensitivity (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_usepenpressuresensitivity_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_pen_l_usepenpressuresensitivity_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_enableabilitytooptimizeonenotefiles", + "displayName": "Enable ability to optimize OneNote files... (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_enableabilitytooptimizeonenotefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_enableabilitytooptimizeonenotefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_enableabilitytooptimizeonenotefiles_l_checktoenableabilitytooptimizeonenotefiles", + "displayName": "Check to enable ability to optimize OneNote files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_enableabilitytooptimizeonenotefiles_l_checktoenableabilitytooptimizeonenotefiles_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_enableabilitytooptimizeonenotefiles_l_checktoenableabilitytooptimizeonenotefiles_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_enableabilitytooptimizeonenotefiles_l_optimizeonenotefilesatthisintervalmin", + "displayName": "Optimize OneNote files at this interval (min): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_locationofbackupfolder", + "displayName": "Location of Backup Folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_locationofbackupfolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_locationofbackupfolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_locationofbackupfolder_l_backupfolder", + "displayName": "Backup Folder: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_locationofunfilednotessection", + "displayName": "Location of unfiled notes section (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_locationofunfilednotessection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_locationofunfilednotessection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_locationofunfilednotessection_l_opensidenotesinthissection", + "displayName": "Open Side Notes in this section: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_notebookroot", + "displayName": "Notebook Root (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_notebookroot_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_notebookroot_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_notebookroot_l_empty1", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_percentageofunuseddiskspacetoallowinsections", + "displayName": "Percentage of unused disk space to allow in sections (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_percentageofunuseddiskspacetoallowinsections_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_percentageofunuseddiskspacetoallowinsections_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_save_l_percentageofunuseddiskspacetoallowinsections_l_enterpercentage", + "displayName": "Enter Percentage: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_configurecngcipherchainingmode", + "displayName": "Configure CNG cipher chaining mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecbc", + "displayName": "Cipher Block Chaining (CBC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecfb", + "displayName": "Cipher Feedback (CFB)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngcipheralgorithm", + "displayName": "Set CNG cipher algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngcipheralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngcipheralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngcipheralgorithm_l_setcngcipheralgorithmid", + "displayName": "CNG cipher algorithm: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngcipherkeylength", + "displayName": "Set CNG cipher key length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngcipherkeylength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngcipherkeylength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngcipherkeylength_l_setcngcipherkeylengthspinid", + "displayName": "Cipher key length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngpasswordspincount", + "displayName": "Set CNG password spin count (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngpasswordspincount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngpasswordspincount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setcngpasswordspincount_l_setcngpasswordspincountspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setparametersforcngcontext", + "displayName": "Set parameters for CNG context (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setparametersforcngcontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setparametersforcngcontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_setparametersforcngcontext_l_setparametersforcngcontextid", + "displayName": "Parameters (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycnghashalgorithm", + "displayName": "Specify CNG hash algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycnghashalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycnghashalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha512", + "displayName": "SHA512", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm", + "displayName": "Specify CNG random number generator algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_l_specifycngrandomnumbergeneratoralgorithmid", + "displayName": "Random number generator: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycngsaltlength", + "displayName": "Specify CNG salt length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycngsaltlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycngsaltlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifycngsaltlength_l_specifycngsaltlengthspinid", + "displayName": "Number of bytes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifyencryptioncompatibility", + "displayName": "Specify encryption compatibility (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_0", + "displayName": "Use legacy format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_1", + "displayName": "Use next generation format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_2", + "displayName": "All files save with next generation format", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_sendtoonenote_l_disableoutlooksendemailtoonenoteoption", + "displayName": "Disable Outlook send email to OneNote option (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_sendtoonenote_l_disableoutlooksendemailtoonenoteoption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_sendtoonenote_l_disableoutlooksendemailtoonenoteoption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_spelling_l_onenotespellingoptions", + "displayName": "OneNote Spelling Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_spelling_l_onenotespellingoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_spelling_l_onenotespellingoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_spelling_l_onenotespellingoptions_l_empty11", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_spelling_l_onenotespellingoptions_l_empty11_0", + "displayName": "no spell checking", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_spelling_l_onenotespellingoptions_l_empty11_1", + "displayName": "check spelling as you type", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_spelling_l_onenotespellingoptions_l_empty11_2", + "displayName": "hide spelling errors", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_spelling_l_onenotespellingoptions_l_empty11_3", + "displayName": "check spelling but hide errors", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysbacktokeepinversionhistory", + "displayName": "Days back to keep in version history (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysbacktokeepinversionhistory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysbacktokeepinversionhistory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysbacktokeepinversionhistory_l_daysbacktokeepinversionhistoryspinid", + "displayName": "Days back to keep versions (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysbacktokeepitemsinrecyclebin", + "displayName": "Days back to keep items in recycle bin (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysbacktokeepitemsinrecyclebin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysbacktokeepitemsinrecyclebin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysbacktokeepitemsinrecyclebin_l_daysbacktokeepitemsinrecyclebinspinid", + "displayName": "Days back to keep items in recycle bin (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysofallversions", + "displayName": "Days all Version History items are \"safe\" from pruning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysofallversions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysofallversions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysofallversions_l_daysofallversionsspinid", + "displayName": "Days back (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysofhourlyversionsnottopruneafterdaysback", + "displayName": "Days of hourly versions not to prune after Days Back (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysofhourlyversionsnottopruneafterdaysback_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysofhourlyversionsnottopruneafterdaysback_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_daysofhourlyversionsnottopruneafterdaysback_l_daysofhourlyversionsnottopruneafterdaysbackspinid", + "displayName": "Days back (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_donotpruneversionsovertime", + "displayName": "Do not prune versions over time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_donotpruneversionsovertime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_donotpruneversionsovertime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_maximumnumberofonceperdayversionhistoryitemskept", + "displayName": "Maximum number of once-per-day version history items kept (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_maximumnumberofonceperdayversionhistoryitemskept_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_maximumnumberofonceperdayversionhistoryitemskept_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_maximumnumberofonceperdayversionhistoryitemskept_l_maximumnumberofonceperdayversionhistoryitemskeptspinid", + "displayName": "Max number of versions (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_turnoffversionsandnotebookrecyclebininsharednotebooks", + "displayName": "Turn off Versions and Notebook Recycle Bin in shared notebooks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_turnoffversionsandnotebookrecyclebininsharednotebooks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v2~policy~l_microsoftofficeonenote~l_onenoteoptions~l_versionsandrecylebin_l_turnoffversionsandnotebookrecyclebininsharednotebooks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointbackgroundsyncintervalmultiplier", + "displayName": "Multiplier for background sync interval for notebooks stored on SharePoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointbackgroundsyncintervalmultiplier_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointbackgroundsyncintervalmultiplier_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointbackgroundsyncintervalmultiplier_l_empty16", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointlivesyncintervalmultiplier", + "displayName": "Multiplier for foreground sync interval for the currently viewed section stored on SharePoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointlivesyncintervalmultiplier_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointlivesyncintervalmultiplier_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointlivesyncintervalmultiplier_l_empty17", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointpresenceintervalmultiplier", + "displayName": "Multiplier for Presence sync interval for notebooks stored on SharePoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointpresenceintervalmultiplier_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointpresenceintervalmultiplier_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v3~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_sharepointpresenceintervalmultiplier_l_empty18", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v4~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disablesupportdiagnostics", + "displayName": "Turn off support diagnostics in OneNote (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v4~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disablesupportdiagnostics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v4~policy~l_microsoftofficeonenote~l_onenoteoptions~l_other_l_disablesupportdiagnostics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_onent16v5~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_onenotetextprediction", + "displayName": "OneNote text prediction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_onent16v5~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_onenotetextprediction_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_onent16v5~policy~l_microsoftofficeonenote~l_onenoteoptions~l_editing_l_onenotetextprediction_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablepreviewplace", + "displayName": "Disable Preview Place. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablepreviewplace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablepreviewplace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v10~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disablecalendarsearchagendaview", + "displayName": "Do not allow Calendar search agenda view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v10~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disablecalendarsearchagendaview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v10~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disablecalendarsearchagendaview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_specifymaxcertlengthallowedtostamp", + "displayName": "Maximum Size Limit for certificate in Reply to Encrypted Emails cases. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_specifymaxcertlengthallowedtostamp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_specifymaxcertlengthallowedtostamp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_specifymaxcertlengthallowedtostamp_l_specifymaxcertlengthallowedtostampspinid", + "displayName": "In bytes: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_specifywaitonsendtimeoutfordlpevaluation", + "displayName": "Specify wait time to evaluate sensitive content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_specifywaitonsendtimeoutfordlpevaluation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_specifywaitonsendtimeoutfordlpevaluation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_specifywaitonsendtimeoutfordlpevaluation_l_specifywaitonsendtimeoutfordlpevaluationspinid", + "displayName": "In seconds: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hidenewoutlooktoggle", + "displayName": "Hide the “Try the new Outlook” toggle in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hidenewoutlooktoggle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v11~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hidenewoutlooktoggle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v12~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablesimplemapisendwithoutoutlook", + "displayName": "Running Outlook for Simple MAPI Mail Sending (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v12~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablesimplemapisendwithoutoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v12~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablesimplemapisendwithoutoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v13~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_showoutlookloopcomponentsforsupportedapps", + "displayName": "Show Outlook Loop components for supported apps. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v13~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_showoutlookloopcomponentsforsupportedapps_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v13~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_showoutlookloopcomponentsforsupportedapps_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v13~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_showoutlookloopcomponentsforsupportedapps_l_showoutlookloopcomponentsid", + "displayName": "Show Outlook Loop components for supported apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v13~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_showoutlookloopcomponentsforsupportedapps_l_showoutlookloopcomponentsid_1", + "displayName": "Always show automatically.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v13~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_showoutlookloopcomponentsforsupportedapps_l_showoutlookloopcomponentsid_2", + "displayName": "Only show automatically within tenant.", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v13~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_showoutlookloopcomponentsforsupportedapps_l_showoutlookloopcomponentsid_3", + "displayName": "Don’t show automatically.", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablecomtowebaddinupgrade", + "displayName": "Disable web add-in installation on migration to new Outlook for Windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablecomtowebaddinupgrade_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablecomtowebaddinupgrade_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_donewoutlookautomigration", + "displayName": "Admin-Controlled Migration to New Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_donewoutlookautomigration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_donewoutlookautomigration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_newoutlookautomigrationretryintervals", + "displayName": "Number of days \"New Outlook auto migration\" should be paused after user untoggling back to Outlook Desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_newoutlookautomigrationretryintervals_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_newoutlookautomigrationretryintervals_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v14~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_newoutlookautomigrationretryintervals_l_newoutlookautomigrationretryintervalsid", + "displayName": "New Outlook Auto Migration Retry Interval: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_mailtipsbardisplayoption", + "displayName": "MailTips bar display options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_mailtipsbardisplayoption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_mailtipsbardisplayoption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_mailtipsbardisplayoption_l_mailtipsbardisplayoptions", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_mailtipsbardisplayoption_l_mailtipsbardisplayoptions_0", + "displayName": "Display automatically when MailTips apply", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_mailtipsbardisplayoption_l_mailtipsbardisplayoptions_1", + "displayName": "Display at all times", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_mailtipsbardisplayoption_l_mailtipsbardisplayoptions_2", + "displayName": "Never display MailTips", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_smimedisabledataupload", + "displayName": "Block processing of S/MIME encrypted messages by certain connected experiences (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_smimedisabledataupload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v15~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_smimedisabledataupload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2.updates.4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventcopyingormovingitemsbetweenaccounts", + "displayName": "Prevent copying or moving items between accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2.updates.4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventcopyingormovingitemsbetweenaccounts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2.updates.4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventcopyingormovingitemsbetweenaccounts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2.updates.4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventcopyingormovingitemsbetweenaccounts_l_preventcopyingormovingitemsbetweenaccountsid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_customizableerrormessages_l_listoferrormessagestocustomize", + "displayName": "List of error messages to customize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_customizableerrormessages_l_listoferrormessagestocustomize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_customizableerrormessages_l_listoferrormessagestocustomize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize37", + "displayName": "List of error messages to customize (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize37_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize37_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_custom_l_disablecommandbar38", + "displayName": "Disable command bar buttons and menu items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_custom_l_disablecommandbar38_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_custom_l_disablecommandbar38_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_custom_l_disablecommandbar38_l_enteracommandbaridtodisable", + "displayName": "Enter a command bar ID to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys39", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys39_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys39_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys39_l_enterakeyandmodifiertodisable", + "displayName": "Enter a key and modifier to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_predefined_l_hidequickstepsgallery", + "displayName": "Disable Quick Steps Gallery (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_predefined_l_hidequickstepsgallery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_predefined_l_hidequickstepsgallery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage", + "displayName": "Calendar Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_l_showassociatedwebpage42", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_l_showassociatedwebpage42_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_l_showassociatedwebpage42_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage44", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage44_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage44_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_calendarfolderhomepage_l_urladdressofassociatedwebpage43", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage", + "displayName": "Contacts Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_l_showassociatedwebpage45", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_l_showassociatedwebpage45_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_l_showassociatedwebpage45_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage47", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage47_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage47_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_contactsfolderhomepage_l_urladdressofassociatedwebpage46", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage", + "displayName": "Deleted Items Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_l_showassociatedwebpage48", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_l_showassociatedwebpage48_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_l_showassociatedwebpage48_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage50", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage50_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage50_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_deleteditemsfolderhomepage_l_urladdressofassociatedwebpage49", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_disablefolderhomepages", + "displayName": "Do not allow Home Page URL to be set in folder Properties (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_disablefolderhomepages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_disablefolderhomepages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage", + "displayName": "Drafts Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_l_showassociatedwebpage51", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_l_showassociatedwebpage51_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_l_showassociatedwebpage51_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage53", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage53_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage53_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_draftsfolderhomepage_l_urladdressofassociatedwebpage52", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage", + "displayName": "Inbox Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_l_showassociatedwebpage40", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_l_showassociatedwebpage40_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_l_showassociatedwebpage40_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_inboxfolderhomepage_l_urladdressofassociatedwebpage41", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage", + "displayName": "Journal Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_l_showassociatedwebpage54", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_l_showassociatedwebpage54_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_l_showassociatedwebpage54_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage56", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage56_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage56_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_journalfolderhomepage_l_urladdressofassociatedwebpage55", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage", + "displayName": "Notes Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_l_showassociatedwebpage57", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_l_showassociatedwebpage57_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_l_showassociatedwebpage57_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage59", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage59_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage59_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_notesfolderhomepage_l_urladdressofassociatedwebpage58", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage", + "displayName": "Outbox Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_l_showassociatedwebpage60", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_l_showassociatedwebpage60_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_l_showassociatedwebpage60_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage62", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage62_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage62_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_outboxfolderhomepage_l_urladdressofassociatedwebpage61", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage", + "displayName": "RSS Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_l_showassociatedwebpage", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_l_showassociatedwebpage_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_l_showassociatedwebpage_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_l_turnoffinternetexplorersecuritychecks", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_l_turnoffinternetexplorersecuritychecks_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_l_turnoffinternetexplorersecuritychecks_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_rssfolderhomepage_l_urladdressofassociatedwebpage", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage", + "displayName": "Sent Items Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_l_showassociatedwebpage63", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_l_showassociatedwebpage63_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_l_showassociatedwebpage63_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage65", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage65_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage65_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_sentitemsfolderhomepage_l_urladdressofassociatedwebpage64", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage", + "displayName": "Tasks Folder Home Page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_l_showassociatedwebpage66", + "displayName": "Show associated web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_l_showassociatedwebpage66_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_l_showassociatedwebpage66_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage68", + "displayName": "Turn off Windows Internet Explorer security checks for this web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage68_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_l_turnoffinternetexplorersecuritychecksforthiswebpage68_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_folderhomepagesforoutlookspecialfolders_l_tasksfolderhomepage_l_urladdressofassociatedwebpage67", + "displayName": "URL address of associated web page: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_disableformregions", + "displayName": "Configure form regions permissions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_disableformregions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_disableformregions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_disableformregions_l_disableformregionspart", + "displayName": "Configure form regions permissions: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_disableformregions_l_disableformregionspart_0", + "displayName": "All form regions are allowed to run", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_disableformregions_l_disableformregionspart_1", + "displayName": "Allow only those registered in HKLM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_disableformregions_l_disableformregionspart_2", + "displayName": "No form regions are allowed to run", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_lockedformregions", + "displayName": "Locked form regions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_lockedformregions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_lockedformregions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_lockedformregions_l_empty76", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_lockedformregions_l_empty76_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_formregionsettings_l_lockedformregions_l_empty76_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_infopathintegration_l_disableinfopathpropertiespromotioninoutlook", + "displayName": "Do not promote InfoPath forms properties into Outlook properties (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_infopathintegration_l_disableinfopathpropertiespromotioninoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_infopathintegration_l_disableinfopathpropertiespromotioninoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_defaultserversanddataformeetingworkspaces", + "displayName": "Default servers and data for Meeting Workspaces (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_defaultserversanddataformeetingworkspaces_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_defaultserversanddataformeetingworkspaces_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_defaultserversanddataformeetingworkspaces_l_defaultserver", + "displayName": "Default server: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_disableuserentriestoserverlist", + "displayName": "Disable user entries to server list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_disableuserentriestoserverlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_disableuserentriestoserverlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_disableuserentriestoserverlist_l_checktodisableusersfromaddingentriestoserverlist", + "displayName": "Check to disable users from adding entries to server list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_disableuserentriestoserverlist_l_checktodisableusersfromaddingentriestoserverlist_1", + "displayName": "Publish default, allow others", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_meetingworkspace_l_disableuserentriestoserverlist_l_checktodisableusersfromaddingentriestoserverlist_2", + "displayName": "Publish default, disallow others", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changelimitmimebody", + "displayName": "Change the limit for the number of MIME body parts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changelimitmimebody_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changelimitmimebody_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changelimitmimebody_l_empty75", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changelimitrecipients", + "displayName": "Change the limit for the number of recipients (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changelimitrecipients_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changelimitrecipients_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changelimitrecipients_l_empty73", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitforthenumberof", + "displayName": "Change the limit for the number of nested embedded messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitforthenumberof_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitforthenumberof_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitforthenumberof_l_empty71", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitfriendlyname", + "displayName": "Change the limit for the number of characters in Friendly Name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitfriendlyname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitfriendlyname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitfriendlyname_l_empty72", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitmimeheaders", + "displayName": "Change the limit for the number of MIME headers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitmimeheaders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitmimeheaders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_mimitomapiconversion_l_changethelimitmimeheaders_l_empty74", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_addnewcategories", + "displayName": "Add new categories (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_addnewcategories_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_addnewcategories_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_addnewcategories_l_enternewcategoriessemicolondelimited", + "displayName": "Enter new categories (comma or semicolon delimited) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_allowcryptoautosave", + "displayName": "Extend Outlook Autosave to include encrypted e-mail messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_allowcryptoautosave_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_allowcryptoautosave_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disableaddinlogging", + "displayName": "Disable Windows event logging for Outlook add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disableaddinlogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disableaddinlogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disabledistributionlistexpansion", + "displayName": "Do not expand Contact Groups (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disabledistributionlistexpansion_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disabledistributionlistexpansion_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablevlvbrowsingonldapservers", + "displayName": "Disable VLV Browsing on LDAP servers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablevlvbrowsingonldapservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablevlvbrowsingonldapservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablewindowsfriendlylogonmailquery", + "displayName": "Do not show unread message count on Windows Welcome screen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablewindowsfriendlylogonmailquery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_disablewindowsfriendlylogonmailquery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_donotdownloadpermissionlicenseforirmemailduring", + "displayName": "Do not download rights permission license information for IRM e-mail during Exchange folder sync (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_donotdownloadpermissionlicenseforirmemailduring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_donotdownloadpermissionlicenseforirmemailduring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges", + "displayName": "Managing Categories during e-mail exchanges (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges_l_acceptcategoriesassignedtoincomingmailbythesender", + "displayName": "Accept Categories assigned to incoming mail by the sender (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges_l_acceptcategoriesassignedtoincomingmailbythesender_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges_l_acceptcategoriesassignedtoincomingmailbythesender_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges_l_whenreplyingtoandforwardingmailincludepersonalcategories", + "displayName": "When replying to and forwarding mail, include personal categories (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges_l_whenreplyingtoandforwardingmailincludepersonalcategories_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_managingcategoriesduringe_mailexchanges_l_whenreplyingtoandforwardingmailincludepersonalcategories_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventmapiservicesfrombeingadded", + "displayName": "Prevent MAPI services from being added (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventmapiservicesfrombeingadded_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventmapiservicesfrombeingadded_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventmapiservicesfrombeingadded_l_preventmapiservicesfrombeingaddedpart", + "displayName": "Enter MAPI services to disable (semi-colon delimited) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes", + "displayName": "Prevent users from adding e-mail account types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingeasemailaccounts", + "displayName": "Prevent users from adding Exchange ActiveSync e-mail accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingeasemailaccounts_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingeasemailaccounts_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingexchangeemailaccounts", + "displayName": "Prevent users from adding Exchange e-mail accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingexchangeemailaccounts_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingexchangeemailaccounts_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingimapemailaccounts", + "displayName": "Prevent users from adding IMAP e-mail accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingimapemailaccounts_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingimapemailaccounts_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingothertypesofemailaccounts", + "displayName": "Prevent users from adding other types of e-mail accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingothertypesofemailaccounts_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingothertypesofemailaccounts_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingpop3emailaccounts", + "displayName": "Prevent users from adding POP3 e-mail accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingpop3emailaccounts_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfromaddingemailaccounttypes_l_preventusersfromaddingpop3emailaccounts_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfrommakingchangestooutlookprofiles", + "displayName": "Prevent users from making changes to Outlook profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfrommakingchangestooutlookprofiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_preventusersfrommakingchangestooutlookprofiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_specifydelaybeforesendingpeoplesearchrequest", + "displayName": "Specify delay before sending people search request (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_specifydelaybeforesendingpeoplesearchrequest_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_specifydelaybeforesendingpeoplesearchrequest_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_specifydelaybeforesendingpeoplesearchrequest_l_specifydelaybeforesendingpeoplesearchrequestspinid", + "displayName": "in milliseconds (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_specifyoutlookpeoplesearchtimeout", + "displayName": "Set the time-out interval for Outlook people search (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_specifyoutlookpeoplesearchtimeout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_specifyoutlookpeoplesearchtimeout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_specifyoutlookpeoplesearchtimeout_l_specifyoutlookpeoplesearchtimeoutspinid", + "displayName": "in milliseconds (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_workflowtasksinoutlook", + "displayName": "Do not display \"Open this task\" button for workflow tasks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_workflowtasksinoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous_l_workflowtasksinoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_defaultlocationforostfiles", + "displayName": "Default location for OST files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_defaultlocationforostfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_defaultlocationforostfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_defaultlocationforostfiles_l_defaultlocationforostfilespart", + "displayName": "Default location for OST files (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_defaultlocationforpstfiles", + "displayName": "Default location for PST files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_defaultlocationforpstfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_defaultlocationforpstfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_defaultlocationforpstfiles_l_defaultlocationforpstfiles79", + "displayName": "Default location for PST files (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_donotsendmeetingforwardnotifications", + "displayName": "Do not send meeting forward notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_donotsendmeetingforwardnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_donotsendmeetingforwardnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_largepstabsolutemaximumsize", + "displayName": "Large PST: Absolute maximum size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_largepstabsolutemaximumsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_largepstabsolutemaximumsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_largepstabsolutemaximumsize_l_enterabsolutemaximumsizeforpstinmegabytes2", + "displayName": "(0 - 4,294,967,295 MB) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_largepstsizetodisableaddingnewcontent", + "displayName": "Large PST: Size to disable adding new content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_largepstsizetodisableaddingnewcontent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_largepstsizetodisableaddingnewcontent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_largepstsizetodisableaddingnewcontent_l_entersizetodisableaddingnewcontenttopstinmegabytes2", + "displayName": "(0 - 4,294,967,295 MB) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_legacypstabsolutemaximumsize", + "displayName": "Legacy PST: Absolute maximum size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_legacypstabsolutemaximumsize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_legacypstabsolutemaximumsize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_legacypstabsolutemaximumsize_l_enterabsolutemaximumsizeforpstinbytes2", + "displayName": "(0 - 2,075,149,312 bytes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_legacypstsizetodisableaddingnewcontent", + "displayName": "Legacy PST: Size to disable adding new content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_legacypstsizetodisableaddingnewcontent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_legacypstsizetodisableaddingnewcontent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_legacypstsizetodisableaddingnewcontent_l_entersizetodisableaddingnewcontenttopstinbytes2", + "displayName": "(0 - 2,075,149,312 Bytes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_permanentlyremovealldeleteditems", + "displayName": "Permanently remove all deleted content from PST and OST files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_permanentlyremovealldeleteditems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_permanentlyremovealldeleteditems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preferredpstmodeunicodeansi", + "displayName": "Preferred PST Mode (Unicode/ANSI) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preferredpstmodeunicodeansi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preferredpstmodeunicodeansi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preferredpstmodeunicodeansi_l_chooseadefaultformatfornewpsts", + "displayName": "Choose a default format for new PSTs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preferredpstmodeunicodeansi_l_chooseadefaultformatfornewpsts_0", + "displayName": "Prefer Unicode PST", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preferredpstmodeunicodeansi_l_chooseadefaultformatfornewpsts_1", + "displayName": "Prefer ANSI PST", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preferredpstmodeunicodeansi_l_chooseadefaultformatfornewpsts_2", + "displayName": "Enforce Unicode PST", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preferredpstmodeunicodeansi_l_chooseadefaultformatfornewpsts_3", + "displayName": "Enforce ANSI PST", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingnewcontentto", + "displayName": "Prevent users from adding new content to existing PST files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingnewcontentto_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingnewcontentto_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingpsts", + "displayName": "Prevent users from adding PSTs to Outlook profiles and/or prevent using Sharing-Exclusive PSTs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingpsts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingpsts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingpsts_l_empty78", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingpsts_l_empty78_0", + "displayName": "(default) PSTs can be added", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingpsts_l_empty78_1", + "displayName": "No PSTs can be added", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_preventusersfromaddingpsts_l_empty78_2", + "displayName": "Only Sharing-Exclusive PSTs can be added", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_pstnullfreeondelete", + "displayName": "PST Null Data on Delete (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_pstnullfreeondelete_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_pstnullfreeondelete_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_upgradeonlythedefaultstore", + "displayName": "Upgrade only the default store (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_upgradeonlythedefaultstore_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_pstsettings_l_upgradeonlythedefaultstore_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehavior", + "displayName": "Configure fast shutdown behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehavior_l_configurefastshutdownbehaviordropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehavior_l_configurefastshutdownbehaviordropid_0", + "displayName": "MAPI provider does not support", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehavior_l_configurefastshutdownbehaviordropid_1", + "displayName": "All MAPI providers support", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehavior_l_configurefastshutdownbehaviordropid_2", + "displayName": "Never", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehaviorforaddins", + "displayName": "Configure fast shutdown behavior for add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehaviorforaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_configurefastshutdownbehaviorforaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_preventshutdownifexternalreferencesexist", + "displayName": "Prevent shutdown if external references exist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_preventshutdownifexternalreferencesexist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_miscellaneous~l_shutdown_l_preventshutdownifexternalreferencesexist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions_l_internetandnetworkpathsintohyperlinks", + "displayName": "Internet and network paths into hyperlinks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions_l_internetandnetworkpathsintohyperlinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions_l_internetandnetworkpathsintohyperlinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_cacheothersmail", + "displayName": "Disable shared mail folder caching (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_cacheothersmail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_cacheothersmail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_locationofitemsdeletedbydelegates", + "displayName": "Store deleted items in owner's mailbox instead of delegate's mailbox (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_locationofitemsdeletedbydelegates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_locationofitemsdeletedbydelegates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_disablereadingpanecompose", + "displayName": "Disable Reading Pane Compose (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_disablereadingpanecompose_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_disablereadingpanecompose_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_forceselectionofaccountbeforesending", + "displayName": "Force selection of account before sending (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_forceselectionofaccountbeforesending_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_forceselectionofaccountbeforesending_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_outlookprotectionrules", + "displayName": "Outlook Protection Rules (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_outlookprotectionrules_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mail~l_composemessages_l_outlookprotectionrules_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat_l_disablesignatures", + "displayName": "Do not allow signatures for e-mail messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat_l_disablesignatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat_l_disablesignatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_autoselectencodingforoutgoingmessages", + "displayName": "Auto-select encoding for outgoing messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_autoselectencodingforoutgoingmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_autoselectencodingforoutgoingmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_disableinternationalizeddomainnamesidninoutlook", + "displayName": "Disable Internationalized Domain Names (IDN) in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_disableinternationalizeddomainnamesidninoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_disableinternationalizeddomainnamesidninoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages", + "displayName": "Encoding for outgoing messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages", + "displayName": "Use this encoding for outgoing messages: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28596", + "displayName": "Arabic (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1256", + "displayName": "Arabic (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28594", + "displayName": "Baltic (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1257", + "displayName": "Baltic (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28592", + "displayName": "Central European (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1250", + "displayName": "Central European (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_54936", + "displayName": "Chinese Simplified (GB18030)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_936", + "displayName": "Chinese Simplified (GB2312)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_52936", + "displayName": "Chinese Simplified (HZ)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_950", + "displayName": "Chinese Traditional (Big5)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28595", + "displayName": "Cyrillic (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_20866", + "displayName": "Cyrillic (KOI8-R)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_21866", + "displayName": "Cyrillic (KOI8-U)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1251", + "displayName": "Cyrillic (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28597", + "displayName": "Greek (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1253", + "displayName": "Greek (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_38598", + "displayName": "Hebrew (ISO-Logical)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1255", + "displayName": "Hebrew (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_51932", + "displayName": "Japanese (EUC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_50220", + "displayName": "Japanese (JIS)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_50221", + "displayName": "Japanese (JIS-Allow 1 byte Kana)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_932", + "displayName": "Japanese (Shift-JIS)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_949", + "displayName": "Korean", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_51949", + "displayName": "Korean (EUC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28593", + "displayName": "Latin 3 (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28605", + "displayName": "Latin 9(ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_874", + "displayName": "Thai (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28599", + "displayName": "Turkish (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1254", + "displayName": "Turkish (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_65000", + "displayName": "Unicode (UTF-7)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_65001", + "displayName": "Unicode (UTF-8)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_20127", + "displayName": "US-ASCII", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_50000", + "displayName": "User Defined", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1258", + "displayName": "Vietnamese (Windows)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_28591", + "displayName": "Western European (ISO)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_encodingforoutgoingmessages_l_usethisencodingforoutgoingmessages_1252", + "displayName": "Western European (Windows)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags", + "displayName": "English message headers and flags (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags_l_useenglishformessageflags", + "displayName": "Use English for message flags (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags_l_useenglishformessageflags_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags_l_useenglishformessageflags_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags_l_useenglishformessageheadersonrepliesorforwards", + "displayName": "Use English for message headers on replies or forwards (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags_l_useenglishformessageheadersonrepliesorforwards_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_englishmessageheadersandflags_l_useenglishformessageheadersonrepliesorforwards_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_euroencodingforoutgoingmessages", + "displayName": "Euro encoding for outgoing messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_euroencodingforoutgoingmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_euroencodingforoutgoingmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_euroencodingforoutgoingmessages_l_whenpreferredencodingdoesnotsupporteuro2", + "displayName": "Auto-select should: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_euroencodingforoutgoingmessages_l_whenpreferredencodingdoesnotsupporteuro2_0", + "displayName": "Send messages as UTF 8", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internationaloptions_l_euroencodingforoutgoingmessages_l_whenpreferredencodingdoesnotsupporteuro2_1", + "displayName": "ignore euro", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_outlookrichtextoptions", + "displayName": "Outlook Rich Text options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_outlookrichtextoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_outlookrichtextoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_outlookrichtextoptions_l_whensendingoutlookrichtextmessagestointernetrecipients2", + "displayName": "Use this format: (User)", + "options": { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_outlookrichtextoptions_l_whensendingoutlookrichtextmessagestointernetrecipients2_1", + "displayName": "Convert to Plain Text format", + "description": null + } + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_plaintextoptions", + "displayName": "Plain text options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_plaintextoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_plaintextoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_plaintextoptions_l_automaticallywraptextatxcharacters", + "displayName": "Automatically wrap text at characters. (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_plaintextoptions_l_encodeattachmentsinuuencodeformatwhensending1", + "displayName": "Encode attachments in UUENCODE format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_plaintextoptions_l_encodeattachmentsinuuencodeformatwhensending1_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting_l_plaintextoptions_l_encodeattachmentsinuuencodeformatwhensending1_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting~l_messageformat_l_messageformateditor", + "displayName": "Set message format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting~l_messageformat_l_messageformateditor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting~l_messageformat_l_messageformateditor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting~l_messageformat_l_messageformateditor_l_usethefollowingformateditorforemailmessages", + "displayName": "Use the following format for e-mail messages: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting~l_messageformat_l_messageformateditor_l_usethefollowingformateditorforemailmessages_131072", + "displayName": "HTML", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting~l_messageformat_l_messageformateditor_l_usethefollowingformateditorforemailmessages_196608", + "displayName": "Rich Text", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_internetformatting~l_messageformat_l_messageformateditor_l_usethefollowingformateditorforemailmessages_65536", + "displayName": "Plain Text", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_stationeryandfonts_l_stationeryfonts", + "displayName": "Stationery Fonts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_stationeryandfonts_l_stationeryfonts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_stationeryandfonts_l_stationeryfonts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_stationeryandfonts_l_stationeryfonts_l_stationeryfontoptions", + "displayName": "Stationery font options: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_stationeryandfonts_l_stationeryfonts_l_stationeryfontoptions_0", + "displayName": "Use theme's font", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_stationeryandfonts_l_stationeryfonts_l_stationeryfontoptions_1", + "displayName": "Use user's font on replies and forwards", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailformat~l_stationeryandfonts_l_stationeryfonts_l_stationeryfontoptions_2", + "displayName": "Always use user's fonts", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailsetup_l_mailaccountoptions", + "displayName": "Mail account options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailsetup_l_mailaccountoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_mailsetup_l_mailaccountoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_optionscustomizeribbon_l_displaydevelopertab", + "displayName": "Display Developer tab in the Ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_optionscustomizeribbon_l_displaydevelopertab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_optionscustomizeribbon_l_displaydevelopertab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_allowselectionfloaties", + "displayName": "Show Mini Toolbar on selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_allowselectionfloaties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_allowselectionfloaties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableonlinemodeauthdiagnostics", + "displayName": "Disable online mode for Get Diagnostics. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableonlinemodeauthdiagnostics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableonlinemodeauthdiagnostics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablepreviewplace", + "displayName": "Disable Preview Place. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablepreviewplace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablepreviewplace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablereadingpane", + "displayName": "Do not display the reading pane (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablereadingpane_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablereadingpane_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_donotdownloadphotosfromtheactivedirectory", + "displayName": "Do not download photos from the Active Directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_donotdownloadphotosfromtheactivedirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_donotdownloadphotosfromtheactivedirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_emptydeleteditemsfolder", + "displayName": "Empty the Deleted Items folder when Outlook closes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_emptydeleteditemsfolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_emptydeleteditemsfolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hideappsstorebuttoninhometabribbon", + "displayName": "Hide the Office Store button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hideappsstorebuttoninhometabribbon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hideappsstorebuttoninhometabribbon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hidephotolink", + "displayName": "Hide photo link (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hidephotolink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_hidephotolink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_makeoutlookthedefaultprogramforemailcontactsandcalendar", + "displayName": "Make Outlook the default program for E-mail, Contacts, and Calendar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_makeoutlookthedefaultprogramforemailcontactsandcalendar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_makeoutlookthedefaultprogramforemailcontactsandcalendar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane", + "displayName": "Reading Pane (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_markitemasreadwhenselectionchanges", + "displayName": "Mark item as read when selection changes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_markitemasreadwhenselectionchanges_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_markitemasreadwhenselectionchanges_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_markmessagesasreadinreadingwindow", + "displayName": "Mark messages as read in reading window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_markmessagesasreadinreadingwindow_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_markmessagesasreadinreadingwindow_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_singlekeyreadingusingspacebar", + "displayName": "Single key reading using spacebar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_singlekeyreadingusingspacebar_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_singlekeyreadingusingspacebar_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_readingpane_l_waitxxxsecondsbeforemarkingitemsasread", + "displayName": "Wait xxx seconds before marking items as read: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_sortfoldersalphabetically", + "displayName": "Sort folders alphabetically (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_sortfoldersalphabetically_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_sortfoldersalphabetically_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disablefolderhomepagesforfoldersinnondefaultstores", + "displayName": "Do not allow folders in non-default stores to be set as folder home pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disablefolderhomepagesforfoldersinnondefaultstores_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disablefolderhomepagesforfoldersinnondefaultstores_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscripts", + "displayName": "Do not allow Outlook object model scripts to run for shared folders (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscripts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscripts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscripts_v2", + "displayName": "Do not allow Outlook object model scripts to run for shared folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscripts_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscripts_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscriptsforpublicfolders", + "displayName": "Do not allow Outlook object model scripts to run for public folders (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscriptsforpublicfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscriptsforpublicfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscriptsforpublicfolders_v2", + "displayName": "Do not allow Outlook object model scripts to run for public folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscriptsforpublicfolders_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_disableoutlookobjectmodelscriptsforpublicfolders_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_enablemailloggingtroubleshooting", + "displayName": "Enable mail logging (troubleshooting) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_enablemailloggingtroubleshooting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_enablemailloggingtroubleshooting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_minimizeoutlooktothesystemtray", + "displayName": "Minimize Outlook to the system tray (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_minimizeoutlooktothesystemtray_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_minimizeoutlooktothesystemtray_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_moreoptions", + "displayName": "Warn before permanently deleting items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_moreoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_moreoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_msgunicodeformatwhendraggingtofilesystem", + "displayName": "Use Unicode format when dragging e-mail message to file system (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_msgunicodeformatwhendraggingtofilesystem_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_msgunicodeformatwhendraggingtofilesystem_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_msgunicodeformatwhendraggingtofilesystem_v2", + "displayName": "Use Unicode format when dragging e-mail message to file system (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_msgunicodeformatwhendraggingtofilesystem_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_msgunicodeformatwhendraggingtofilesystem_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_preventsavingsyncconflicts", + "displayName": "Prevent saving sync conflicts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_preventsavingsyncconflicts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_preventsavingsyncconflicts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_savecalendarconflicts", + "displayName": "Save calendar sync conflicts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_savecalendarconflicts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_savecalendarconflicts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_saverssconflicts", + "displayName": "Save RSS conflicts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_saverssconflicts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_saverssconflicts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_turnonloggingforallconflicts", + "displayName": "Turn on logging for all conflicts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_turnonloggingforallconflicts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_turnonloggingforallconflicts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_turnonloggingforallconflicts_l_turnonloggingforallconflictsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_turnonloggingforallconflicts_l_turnonloggingforallconflictsdropid_0", + "displayName": "No conflicts are logged (default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_turnonloggingforallconflicts_l_turnonloggingforallconflictsdropid_1", + "displayName": "All conflicts logged", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced_l_turnonloggingforallconflicts_l_turnonloggingforallconflictsdropid_2", + "displayName": "Unresolved conflicts logged only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders", + "displayName": "Reminders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders_l_displaythereminder", + "displayName": "Display the reminder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders_l_displaythereminder_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders_l_displaythereminder_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders_l_playremindersound", + "displayName": "Play reminder sound (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders_l_playremindersound_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_advanced~l_reminderoptions_l_reminders_l_playremindersound_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_archiveignorelastmodifiedtime", + "displayName": "Change the criteria that Outlook uses to archive different item types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_archiveignorelastmodifiedtime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_archiveignorelastmodifiedtime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings", + "displayName": "AutoArchive Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_archiveordeleteolditems", + "displayName": "Archive or delete old items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_archiveordeleteolditems_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_archiveordeleteolditems_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_cleanoutitemsolderthan", + "displayName": "Clean out items older than (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_deleteexpireditemsemailfoldersonly", + "displayName": "Delete expired items (e-mail folders only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_deleteexpireditemsemailfoldersonly_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_deleteexpireditemsemailfoldersonly_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_empty19", + "displayName": "\r\nDuring AutoArchive:\r\n", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_empty19_0", + "displayName": "Months", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_empty19_1", + "displayName": "Weeks", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_empty19_2", + "displayName": "Days", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_permanentlydeleteolditems", + "displayName": "Permanently delete old items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_permanentlydeleteolditems_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_permanentlydeleteolditems_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_promptbeforeautoarchiveruns", + "displayName": "Prompt before AutoArchive runs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_promptbeforeautoarchiveruns_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_promptbeforeautoarchiveruns_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_runautoarchiveeveryxdays", + "displayName": "Run AutoArchive every days (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_showarchivefolderinfolderlist", + "displayName": "Show archive folder in folder list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_showarchivefolderinfolderlist_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_showarchivefolderinfolderlist_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_turnonautoarchive", + "displayName": "Turn on AutoArchive (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_turnonautoarchive_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_autoarchivesettings_l_turnonautoarchive_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_disablefilearchive", + "displayName": "Disable File|Archive (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_disablefilearchive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other~l_autoarchive_l_disablefilearchive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice", + "displayName": "Polling Out-of-office Web service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_300000", + "displayName": "5 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_600000", + "displayName": "10 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_900000", + "displayName": "15 minutes (default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_1200000", + "displayName": "20 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_1500000", + "displayName": "25 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_1800000", + "displayName": "30 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_2100000", + "displayName": "35 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_2400000", + "displayName": "40 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_2700000", + "displayName": "45 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_3000000", + "displayName": "50 minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_3600000", + "displayName": "1 hour", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_7200000", + "displayName": "2 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_14400000", + "displayName": "4 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_28800000", + "displayName": "8 hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_outofofficeassistant_l_pollingoofwebsrvice_l_empty21_86400000", + "displayName": "24 hours", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_allowattendeestoproposenewtimesformeetingsyouorganize", + "displayName": "Allow attendees to propose new times for meetings you organize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_allowattendeestoproposenewtimesformeetingsyouorganize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_allowattendeestoproposenewtimesformeetingsyouorganize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_calendaritemdefaults", + "displayName": "Calendar item defaults (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_calendaritemdefaults_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_calendaritemdefaults_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_calendaritemdefaults_l_showremindersxminutesbeforetheeventstarts", + "displayName": "Show reminders minutes before the event starts: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_calendarweeknumbers", + "displayName": "Calendar week numbers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_calendarweeknumbers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_calendarweeknumbers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_controlcalendarsharing", + "displayName": "Control Calendar Sharing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_controlcalendarsharing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_controlcalendarsharing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_controlcalendarsharing_l_controlcalendarsharing5", + "displayName": "Control Calendar Sharing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_controlcalendarsharing_l_controlcalendarsharing5_32768", + "displayName": "Prevent Calendar Sharing", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_controlcalendarsharing_l_controlcalendarsharing5_16384", + "displayName": "Allow calendar sharing with 'Availability Only' detail level", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_controlcalendarsharing_l_controlcalendarsharing5_8192", + "displayName": "Allow calendar sharing with 'Availability Only' and 'Limited Details' detail level", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disablemeetingregeneration", + "displayName": "Do not regenerate meetings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disablemeetingregeneration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disablemeetingregeneration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disableweather", + "displayName": "Disable Weather Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disableweather_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_disableweather_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_enableendearly", + "displayName": "End appointments and meetings early (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_enableendearly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_enableendearly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_enablemeetingdownleveltext", + "displayName": "Enable down-level meeting text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_enablemeetingdownleveltext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_enablemeetingdownleveltext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_endearlylong", + "displayName": "Reduce the end time of long appointments and meetings by a specified number of minutes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_endearlylong_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_endearlylong_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_endearlylong_l_endearlylongspinid", + "displayName": "Minutes to reduce meetings by: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_endearlyshort", + "displayName": "Reduce the end time of short appointments and meetings by a specified number of minutes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_endearlyshort_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_endearlyshort_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_endearlyshort_l_endearlyshortspinid", + "displayName": "Minutes to reduce meetings by: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek", + "displayName": "First day of the week (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_l_choosethefirstdayoftheweek", + "displayName": "Choose the first day of the week: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_l_choosethefirstdayoftheweek_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_l_choosethefirstdayoftheweek_1", + "displayName": "Monday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_l_choosethefirstdayoftheweek_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_l_choosethefirstdayoftheweek_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_l_choosethefirstdayoftheweek_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_l_choosethefirstdayoftheweek_5", + "displayName": "Friday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstdayoftheweek_l_choosethefirstdayoftheweek_6", + "displayName": "Saturday", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstweekofyear", + "displayName": "First week of year (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstweekofyear_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstweekofyear_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstweekofyear_l_choosethefirstweekoftheyear", + "displayName": "Choose the first week of the year: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstweekofyear_l_choosethefirstweekoftheyear_0", + "displayName": "Starts on Jan. 1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstweekofyear_l_choosethefirstweekoftheyear_2", + "displayName": "First full week", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_firstweekofyear_l_choosethefirstweekoftheyear_1", + "displayName": "First four-day week", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_hideluckydayswhenusingrokuyoujapanesecalendar", + "displayName": "Hide lucky days when using Rokuyou (Japanese) calendar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_hideluckydayswhenusingrokuyoujapanesecalendar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_hideluckydayswhenusingrokuyoujapanesecalendar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_hidesendlatestversionbutton", + "displayName": "Hide Send Latest Version button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_hidesendlatestversionbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_hidesendlatestversionbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_includeappointmentsonlywithinworkinghours", + "displayName": "Include appointments only within working hours (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_includeappointmentsonlywithinworkinghours_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_includeappointmentsonlywithinworkinghours_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_meetingrequestsusingicalendar", + "displayName": "Send Internet meeting requests using iCalendar format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_meetingrequestsusingicalendar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_meetingrequestsusingicalendar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_remindersoncalendaritems", + "displayName": "Do not display reminders on Calendar items by default (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_remindersoncalendaritems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_remindersoncalendaritems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_restupdatesforcalendar", + "displayName": "REST updates for calendars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_restupdatesforcalendar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_restupdatesforcalendar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_usethisresponsewhenyouproposenewmeetingtimes", + "displayName": "Use this response when you propose new meeting times (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_usethisresponsewhenyouproposenewmeetingtimes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_usethisresponsewhenyouproposenewmeetingtimes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_usethisresponsewhenyouproposenewmeetingtimes_l_usethisresponsewhenyouproposenewmeetingtimes6", + "displayName": "Use this response when you propose new meeting times (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_usethisresponsewhenyouproposenewmeetingtimes_l_usethisresponsewhenyouproposenewmeetingtimes6_2", + "displayName": "Tentative", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_usethisresponsewhenyouproposenewmeetingtimes_l_usethisresponsewhenyouproposenewmeetingtimes6_3", + "displayName": "Accept", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_usethisresponsewhenyouproposenewmeetingtimes_l_usethisresponsewhenyouproposenewmeetingtimes6_4", + "displayName": "Decline", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_weatherserviceurl", + "displayName": "Weather Service URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_weatherserviceurl_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_weatherserviceurl_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_weatherserviceurl_l_empty", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_weatherupdatefrequency", + "displayName": "Weather Bar Update Frequency (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_weatherupdatefrequency_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_weatherupdatefrequency_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_weatherupdatefrequency_l_weatherupdatefrequencyintervalspinid", + "displayName": "Update frequency (in minutes): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours", + "displayName": "Working hours (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime", + "displayName": "End Time: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1020", + "displayName": "5:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_0", + "displayName": "12:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_30", + "displayName": "12:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_60", + "displayName": "1:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_90", + "displayName": "1:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_120", + "displayName": "2:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_150", + "displayName": "2:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_180", + "displayName": "3:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_210", + "displayName": "3:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_240", + "displayName": "4:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_270", + "displayName": "4:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_300", + "displayName": "5:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_330", + "displayName": "5:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_360", + "displayName": "6:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_390", + "displayName": "6:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_420", + "displayName": "7:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_450", + "displayName": "7:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_480", + "displayName": "8:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_510", + "displayName": "8:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_540", + "displayName": "9:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_570", + "displayName": "9:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_600", + "displayName": "10:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_630", + "displayName": "10:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_660", + "displayName": "11:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_690", + "displayName": "11:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_720", + "displayName": "12:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_750", + "displayName": "12:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_780", + "displayName": "1:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_810", + "displayName": "1:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_840", + "displayName": "2:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_870", + "displayName": "2:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_900", + "displayName": "3:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_930", + "displayName": "3:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_960", + "displayName": "4:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_990", + "displayName": "4:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1050", + "displayName": "5:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1080", + "displayName": "6:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1110", + "displayName": "6:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1140", + "displayName": "7:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1170", + "displayName": "7:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1200", + "displayName": "8:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1230", + "displayName": "8:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1260", + "displayName": "9:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1290", + "displayName": "9:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1320", + "displayName": "10:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1350", + "displayName": "10:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1380", + "displayName": "11:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_endtime_1410", + "displayName": "11:30 PM", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime", + "displayName": "Start time: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_480", + "displayName": "8:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_0", + "displayName": "12:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_30", + "displayName": "12:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_60", + "displayName": "1:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_90", + "displayName": "1:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_120", + "displayName": "2:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_150", + "displayName": "2:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_180", + "displayName": "3:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_210", + "displayName": "3:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_240", + "displayName": "4:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_270", + "displayName": "4:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_300", + "displayName": "5:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_330", + "displayName": "5:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_360", + "displayName": "6:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_390", + "displayName": "6:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_420", + "displayName": "7:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_450", + "displayName": "7:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_510", + "displayName": "8:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_540", + "displayName": "9:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_570", + "displayName": "9:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_600", + "displayName": "10:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_630", + "displayName": "10:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_660", + "displayName": "11:00 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_690", + "displayName": "11:30 AM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_720", + "displayName": "12:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_750", + "displayName": "12:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_780", + "displayName": "1:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_810", + "displayName": "1:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_840", + "displayName": "2:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_870", + "displayName": "2:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_900", + "displayName": "3:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_930", + "displayName": "3:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_960", + "displayName": "4:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_990", + "displayName": "4:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1020", + "displayName": "5:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1050", + "displayName": "5:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1080", + "displayName": "6:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1110", + "displayName": "6:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1140", + "displayName": "7:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1170", + "displayName": "7:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1200", + "displayName": "8:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1230", + "displayName": "8:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1260", + "displayName": "9:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1290", + "displayName": "9:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1320", + "displayName": "10:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1350", + "displayName": "10:30 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1380", + "displayName": "11:00 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workinghours_l_starttime_1410", + "displayName": "11:30 PM", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek", + "displayName": "Work week (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek", + "displayName": "Length of work week: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek_124", + "displayName": "Monday to Friday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek_120", + "displayName": "Monday to Thursday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek_60", + "displayName": "Tuesday to Friday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek_126", + "displayName": "Monday to Saturday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek_30", + "displayName": "Wednesday to Saturday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek_142", + "displayName": "Thursday to Sunday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek_252", + "displayName": "Sunday to Friday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_workweek_l_lengthofworkweek_254", + "displayName": "All seven days", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_internetfreebusyoptions", + "displayName": "Internet Free/Busy Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_internetfreebusyoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_internetfreebusyoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_internetfreebusyoptions_l_publishatthisurl", + "displayName": "Publish at this URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_internetfreebusyoptions_l_publishfreebusyinformation", + "displayName": "Publish free/busy information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_internetfreebusyoptions_l_publishfreebusyinformation_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_internetfreebusyoptions_l_publishfreebusyinformation_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_internetfreebusyoptions_l_searchatthisurl", + "displayName": "Search at this URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_options9", + "displayName": "Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_options9_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_options9_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_options9_l_freebusyupdatedontheservereveryxxxseconds", + "displayName": "Free/Busy updated on the server every xxx seconds: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_options9_l_monthsoffreebusyinformationpublished", + "displayName": "Months of Free/Busy information published: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_options9_l_preventusersfromchangingmonthsoffreebusyinformation1", + "displayName": "Prevent users from changing Months of Free/Busy information being published (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_options9_l_preventusersfromchangingmonthsoffreebusyinformation1_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_freebusyoptions_l_options9_l_preventusersfromchangingmonthsoffreebusyinformation1_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_accesstopublishedcalendars", + "displayName": "Access to published calendars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_accesstopublishedcalendars_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_accesstopublishedcalendars_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_pathtodavserver", + "displayName": "Path to DAV server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_pathtodavserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_pathtodavserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_pathtodavserver_l_empty", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_preventpublishingtoadavserver", + "displayName": "Prevent publishing to a DAV server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_preventpublishingtoadavserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_preventpublishingtoadavserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_preventpublishingtoofficeonline", + "displayName": "Prevent publishing to Office.com (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_preventpublishingtoofficeonline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_preventpublishingtoofficeonline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_publishinterval", + "displayName": "Publish interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_publishinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_publishinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictlevelofcalendardetails", + "displayName": "Restrict level of calendar details users can publish (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictlevelofcalendardetails_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictlevelofcalendardetails_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictlevelofcalendardetails_l_empty4", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictlevelofcalendardetails_l_empty4_0", + "displayName": "All options are available", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictlevelofcalendardetails_l_empty4_8192", + "displayName": "Disables 'Full details'", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictlevelofcalendardetails_l_empty4_16384", + "displayName": "Disables 'Full details' and 'Limited details'", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictuploadmethod", + "displayName": "Restrict upload method (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictuploadmethod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_microsoftofficeonlinesharing_l_restrictuploadmethod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner", + "displayName": "Meeting Planner (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner_l_showcalendardetailsinthegrid", + "displayName": "Show calendar details in the grid (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner_l_showcalendardetailsinthegrid_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner_l_showcalendardetailsinthegrid_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner_l_showpopupcalendardetails", + "displayName": "Show popup calendar details (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner_l_showpopupcalendardetails_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_planneroptions_l_meetingplanner_l_showpopupcalendardetails_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_recurrenceoptions_l_defaultrecurrenceduration", + "displayName": "Specify total number of days in a recurring meeting or appointment (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_recurrenceoptions_l_defaultrecurrenceduration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_recurrenceoptions_l_defaultrecurrenceduration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_recurrenceoptions_l_defaultrecurrenceduration_l_defaultrecurrencedurationspinid", + "displayName": "End recurrence after x days (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_recurrenceoptions_l_disablenoenddate", + "displayName": "Disable the \"No end date\" option for recurring items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_recurrenceoptions_l_disablenoenddate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_recurrenceoptions_l_disablenoenddate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_donotallowhorizontalcalendarview", + "displayName": "Do not allow horizontal calendar view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_donotallowhorizontalcalendarview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_donotallowhorizontalcalendarview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventmydepartmentcalendarfromappearing", + "displayName": "Prevent My Department Calendar from appearing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventmydepartmentcalendarfromappearing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventmydepartmentcalendarfromappearing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventotherdepartmentcalendarfromappearing", + "displayName": "Prevent Other Department Calendar from appearing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventotherdepartmentcalendarfromappearing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventotherdepartmentcalendarfromappearing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventreportinglinegroupcalendarfromappearing", + "displayName": "Prevent Reporting Line Group Calendar from appearing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventreportinglinegroupcalendarfromappearing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_preventreportinglinegroupcalendarfromappearing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffautoswitchingfromhorizontaltovertical", + "displayName": "Turn off auto-switching from horizontal to vertical layout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffautoswitchingfromhorizontaltovertical_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffautoswitchingfromhorizontaltovertical_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffautoswitchingfromverticaltohorizontallayout", + "displayName": "Turn off auto-switching from vertical to horizontal layout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffautoswitchingfromverticaltohorizontallayout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffautoswitchingfromverticaltohorizontallayout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnofflegacygroupcalendarmigration", + "displayName": "Turn off Legacy Group Calendar migration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnofflegacygroupcalendarmigration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnofflegacygroupcalendarmigration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffsharingrecommendation", + "displayName": "Turn off sharing recommendation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffsharingrecommendation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions~l_scheduleview_l_turnoffsharingrecommendation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_determineorderofsourcesforphotos", + "displayName": "Determine order of sources for photos (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_determineorderofsourcesforphotos_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_determineorderofsourcesforphotos_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts", + "displayName": "Select the default setting for how to file new contacts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_additionalcontactsindex", + "displayName": "Additional Contacts Index: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_additionalcontactsindex_2", + "displayName": "Arabic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_additionalcontactsindex_7", + "displayName": "Cyrillic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_additionalcontactsindex_15", + "displayName": "Greek", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_additionalcontactsindex_16", + "displayName": "Hebrew", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_additionalcontactsindex_28", + "displayName": "Thai", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_additionalcontactsindex_30", + "displayName": "Vietnamese", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_checkforduplicatecontacts", + "displayName": "Check for duplicate contacts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_checkforduplicatecontacts_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_checkforduplicatecontacts_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfileasorder", + "displayName": "Default File As order: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfileasorder_32791", + "displayName": "Last First", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfileasorder_32823", + "displayName": "First Last", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfileasorder_14870", + "displayName": "Company", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfileasorder_32793", + "displayName": "Last, First (Company)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfileasorder_32792", + "displayName": "Company (Last, First)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfullnameorder", + "displayName": "Default Full Name order: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfullnameorder_e", + "displayName": "First (Middle) Last", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfullnameorder_h", + "displayName": "Last First", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_defaultfullnameorder_s", + "displayName": "First Last1 Last2", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_showanadditionalcontactsindex", + "displayName": "Show an additional Contacts Index (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_showanadditionalcontactsindex_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_selectthedefaultsettingforhowtofilenewcontacts_l_showanadditionalcontactsindex_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_showcontactslinkingcontrolsonallforms", + "displayName": "Show Contacts linking controls on all Forms (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_showcontactslinkingcontrolsonallforms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_contactoptions_l_showcontactslinkingcontrolsonallforms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_changectrlentershortcutbehavior", + "displayName": "Change CTRL+ENTER shortcut behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_changectrlentershortcutbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_changectrlentershortcutbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_changectrlentershortcutbehavior_l_changectrlentershortcutbehaviorid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_changectrlentershortcutbehavior_l_changectrlentershortcutbehaviorid_0", + "displayName": "CTRL+Enter is not a shortcut for sending a message", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_changectrlentershortcutbehavior_l_changectrlentershortcutbehaviorid_1", + "displayName": "CTRL+Enter is a shortcut for sending a message", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_changectrlentershortcutbehavior_l_changectrlentershortcutbehaviorid_2", + "displayName": "CTRL+Enter displays a prompt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_checkforgottenattachments", + "displayName": "Attachment Reminder Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_checkforgottenattachments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_checkforgottenattachments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_configurecrossfoldercontentinconversationview", + "displayName": "Configure Cross Folder Content in conversation view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_configurecrossfoldercontentinconversationview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_configurecrossfoldercontentinconversationview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_configurecrossfoldercontentinconversationview_l_configurecrossfoldercontentinconversationviewdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_configurecrossfoldercontentinconversationview_l_configurecrossfoldercontentinconversationviewdropid_0", + "displayName": "On and cross-store (default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_configurecrossfoldercontentinconversationview_l_configurecrossfoldercontentinconversationviewdropid_1", + "displayName": "Off", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_configurecrossfoldercontentinconversationview_l_configurecrossfoldercontentinconversationviewdropid_2", + "displayName": "On and current", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_configurecrossfoldercontentinconversationview_l_configurecrossfoldercontentinconversationviewdropid_3", + "displayName": "On and local", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_disableattachmentpreviewing", + "displayName": "Do not allow attachment previewing in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_disableattachmentpreviewing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_disableattachmentpreviewing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_disablemailtips", + "displayName": "Disable Mail Tips (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_disablemailtips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_disablemailtips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_displaysenderpicture", + "displayName": "Display Sender Picture (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_displaysenderpicture_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_displaysenderpicture_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_donotuseconversationalarrangementinviews", + "displayName": "Do not use Conversation arrangement in Views (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_donotuseconversationalarrangementinviews_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_donotuseconversationalarrangementinviews_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling", + "displayName": "Message handling (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_aftermovingordeletinganopenitem0", + "displayName": "After moving or deleting an open item: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_aftermovingordeletinganopenitem0_0", + "displayName": "Open the next item", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_aftermovingordeletinganopenitem0_1", + "displayName": "Return to the current folder", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_aftermovingordeletinganopenitem0_2", + "displayName": "Open the previous item", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_automaticallycleanupplaintextmessages", + "displayName": "Automatically clean up plain text messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_automaticallycleanupplaintextmessages_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_automaticallycleanupplaintextmessages_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_autosaveunsenteveryxxminutes0noautosave", + "displayName": "Autosave unsent every xx minutes (0=No AutoSave): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_closeoriginalmessagewhenreplyorforward", + "displayName": "Close original message when reply or forward (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_closeoriginalmessagewhenreplyorforward_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_closeoriginalmessagewhenreplyorforward_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_savecopiesofmessagesinsentitemsfolder", + "displayName": "Save copies of messages in Sent Items folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_savecopiesofmessagesinsentitemsfolder_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_messagehandling_l_savecopiesofmessagesinsentitemsfolder_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards", + "displayName": "On replies and forwards (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_allowuserscommentstobemarked", + "displayName": "Allow user's comments to be marked (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_allowuserscommentstobemarked_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_allowuserscommentstobemarked_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_prefixeachlinewith", + "displayName": "Prefix each line with: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenforwardingamessage", + "displayName": "When forwarding a message: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenforwardingamessage_1", + "displayName": "Attach orginal message", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenforwardingamessage_2", + "displayName": "Include original message text", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenforwardingamessage_3", + "displayName": "Include and indent org. message text", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenforwardingamessage_1000", + "displayName": "Prefix each line of the org. message", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenreplyingtoamessage", + "displayName": "When replying to a message: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenreplyingtoamessage_0", + "displayName": "Do not include orginal message", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenreplyingtoamessage_1", + "displayName": "Attach orginal message", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenreplyingtoamessage_2", + "displayName": "Include original message text", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenreplyingtoamessage_3", + "displayName": "Include and indent org. message text", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_onrepliesandforwards_l_whenreplyingtoamessage_1000", + "displayName": "Prefix each line of the org. message", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_reademailasplaintext", + "displayName": "Read e-mail as plain text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_reademailasplaintext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_reademailasplaintext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_readsignedemailasplaintext", + "displayName": "Read signed e-mail as plain text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_readsignedemailasplaintext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions_l_readsignedemailasplaintext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_disableautopreview", + "displayName": "Disable AutoPreview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_disableautopreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_disableautopreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages", + "displayName": "More save messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages_l_infoldersotherthantheinboxsavereplieswithoriginalmessage", + "displayName": "In folders other than the Inbox, save replies with original message (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages_l_infoldersotherthantheinboxsavereplieswithoriginalmessage_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages_l_infoldersotherthantheinboxsavereplieswithoriginalmessage_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages_l_saveforwardedmessages", + "displayName": "Save forwarded messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages_l_saveforwardedmessages_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_moresavemessages_l_saveforwardedmessages_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_savemessages", + "displayName": "Save Messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_savemessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_savemessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_savemessages_l_saveunsentitemsinthisfolder", + "displayName": "Save unsent items in this folder: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_savemessages_l_saveunsentitemsinthisfolder_4", + "displayName": "Outbox", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_savemessages_l_saveunsentitemsinthisfolder_5", + "displayName": "Sent Items", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_savemessages_l_saveunsentitemsinthisfolder_6", + "displayName": "Inbox", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_savemessages_l_saveunsentitemsinthisfolder_16", + "displayName": "Drafts", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive", + "displayName": "When new items arrive (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_brieflychangethemousecursor", + "displayName": "Briefly change the mouse cursor (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_brieflychangethemousecursor_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_brieflychangethemousecursor_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_playasound", + "displayName": "Play a sound (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_playasound_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_playasound_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_showanenvelopeiconinthesystemtray", + "displayName": "Show an envelope icon in the system tray (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_showanenvelopeiconinthesystemtray_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whennewitemsarrive_l_showanenvelopeiconinthesystemtray_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage", + "displayName": "When sending a message (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_addpropertiestoattachmentstoenablereplywithchanges", + "displayName": "Add properties to attachments to enable Reply with Changes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_addpropertiestoattachmentstoenablereplywithchanges_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_addpropertiestoattachmentstoenablereplywithchanges_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_allowcommasasaddressseparator", + "displayName": "Allow commas as address separator (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_allowcommasasaddressseparator_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_allowcommasasaddressseparator_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_automaticnamechecking", + "displayName": "Automatic name checking (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_automaticnamechecking_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_automaticnamechecking_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_deletemeetingrequestfrominboxwhenresponding", + "displayName": "Delete meeting request from Inbox when responding (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_deletemeetingrequestfrominboxwhenresponding_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_deletemeetingrequestfrominboxwhenresponding_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_messagesexpireafterdays", + "displayName": "Messages expire after (days): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setimportance", + "displayName": "Set importance: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setimportance_2", + "displayName": "High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setimportance_1", + "displayName": "Normal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setimportance_0", + "displayName": "Low", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setsensitivity", + "displayName": "Set sensitivity: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setsensitivity_0", + "displayName": "Normal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setsensitivity_1", + "displayName": "Personal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setsensitivity_2", + "displayName": "Private", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_setsensitivity_3", + "displayName": "Confidential", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_suggestnameswhilecompletingtoccandbccfields", + "displayName": "Suggest names while completing To, Cc, and Bcc fields (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_suggestnameswhilecompletingtoccandbccfields_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions_l_whensendingamessage_l_suggestnameswhilecompletingtoccandbccfields_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_newmaildesktopalert", + "displayName": "Do not display New Mail alert for users (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_newmaildesktopalert_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_newmaildesktopalert_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydefaultlocationofdesktopalert", + "displayName": "Specify default location of Desktop Alert (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydefaultlocationofdesktopalert_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydefaultlocationofdesktopalert_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydefaultlocationofdesktopalert_l_corner03", + "displayName": "Corner (0-3) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydefaultlocationofdesktopalert_l_xoffsetdefault44", + "displayName": "XOffset (default 44): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydefaultlocationofdesktopalert_l_yoffsetdefault42", + "displayName": "YOffset (default 42): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationofdesktopalertbeforefadeinmillisec", + "displayName": "Specify duration of Desktop Alert before fade (in milliseconds) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationofdesktopalertbeforefadeinmillisec_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationofdesktopalertbeforefadeinmillisec_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationofdesktopalertbeforefadeinmillisec_l_millisecdefault4000", + "displayName": "Millisec (Default 4000): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationofdesktopalertonmouseoverinmillisec", + "displayName": "Specify duration of Desktop Alert on mouse over (in milliseconds) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationofdesktopalertonmouseoverinmillisec_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationofdesktopalertonmouseoverinmillisec_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationofdesktopalertonmouseoverinmillisec_l_millisec1", + "displayName": "Millisec: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationoffadeininmillisec", + "displayName": "Specify duration of fade in (in milliseconds) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationoffadeininmillisec_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationoffadeininmillisec_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationoffadeininmillisec_l_millisec", + "displayName": "Millisec: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationoffadeoutinmillisec", + "displayName": "Specify duration of fade out (in milliseconds) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationoffadeoutinmillisec_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationoffadeoutinmillisec_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifydurationoffadeoutinmillisec_l_millisec2", + "displayName": "Millisec: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifyopacityatstartoffadein", + "displayName": "Specify opacity at start of fade in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifyopacityatstartoffadein_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifyopacityatstartoffadein_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifyopacityatstartoffadein_l_specifyopacityatstartoffadein3", + "displayName": "Specify opacity at start of fade in (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifyopacityofdesktopalert", + "displayName": "Specify opacity of Desktop Alert (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifyopacityofdesktopalert_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifyopacityofdesktopalert_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_advancedemailoptions~l_desktopalert_l_specifyopacityofdesktopalert_l_opacityalphalevel", + "displayName": "Opacity (Alpha Level): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options", + "displayName": "Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_deleteblankvotingandmeetingresponsesafterprocessing", + "displayName": "Delete blank voting and meeting responses after processing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_deleteblankvotingandmeetingresponsesafterprocessing_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_deleteblankvotingandmeetingresponsesafterprocessing_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_processreceiptsonarrival", + "displayName": "Process receipts on arrival (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_processreceiptsonarrival_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_processreceiptsonarrival_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_processrequestsandresponsesonarrival", + "displayName": "Process requests and responses on arrival (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_processrequestsandresponsesonarrival_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_processrequestsandresponsesonarrival_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_requestareadreceiptforallmessagesausersends", + "displayName": "Request a read receipt for all messages a user sends (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_requestareadreceiptforallmessagesausersends_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_requestareadreceiptforallmessagesausersends_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_requestdeliveryrcptforallmsgsausersendsexchangeonly", + "displayName": "Request delivery rcpt for all msgs a user sends (Exchange only) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_requestdeliveryrcptforallmsgsausersendsexchangeonly_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_requestdeliveryrcptforallmsgsausersendsexchangeonly_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_whenoutlookisaskedtorespondtoareadreceiptrequest", + "displayName": "When Outlook is asked to respond to a read receipt request: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_whenoutlookisaskedtorespondtoareadreceiptrequest_0", + "displayName": "Always send a response", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_whenoutlookisaskedtorespondtoareadreceiptrequest_1", + "displayName": "Never send a response", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_options_l_whenoutlookisaskedtorespondtoareadreceiptrequest_2", + "displayName": "Ask before sending a response", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_turnoffsendandtrack", + "displayName": "Turn off Send and Track feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_turnoffsendandtrack_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_emailoptions~l_trackingoptions_l_turnoffsendandtrack_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_addpeopleiemailtothesafesenderslist", + "displayName": "Add e-mail recipients to users' Safe Senders Lists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_addpeopleiemailtothesafesenderslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_addpeopleiemailtothesafesenderslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_hidejunkmailui", + "displayName": "Hide Junk Mail UI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_hidejunkmailui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_hidejunkmailui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkmailimportlist", + "displayName": "Trigger to apply junk email list settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkmailimportlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkmailimportlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_overwriteorappendjunkmailimportlist", + "displayName": "Overwrite or Append Junk Mail Import List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_overwriteorappendjunkmailimportlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_overwriteorappendjunkmailimportlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_permanentlydeletejunkemail", + "displayName": "Permanently delete Junk E-mail (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_permanentlydeletejunkemail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_permanentlydeletejunkemail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtoblockedsenderslist", + "displayName": "Specify path to Blocked Senders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtoblockedsenderslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtoblockedsenderslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtoblockedsenderslist_l_specifyfullpathandfilenametoblockedsenderslist", + "displayName": "Specify full path and filename to Blocked Senders list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtosaferecipientslist", + "displayName": "Specify path to Safe Recipients list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtosaferecipientslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtosaferecipientslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtosaferecipientslist_l_specifyfullpathandfilenametosaferecipientslist", + "displayName": "Specify full path and filename to Safe Recipients list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtosafesenderslist", + "displayName": "Specify path to Safe Senders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtosafesenderslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtosafesenderslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_specifypathtosafesenderslist_l_specifyfullpathandfilenametosafesenderslist", + "displayName": "Specify full path and filename to Safe Senders list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_spoofyemails", + "displayName": "Hide warnings about suspicious domain names in e-mail addresses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_spoofyemails_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_spoofyemails_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_trustemailfromcontacts", + "displayName": "Trust e-mail from contacts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_trustemailfromcontacts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_trustemailfromcontacts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disablehithighlighting", + "displayName": "Do not display hit highlights in search results (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disablehithighlighting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disablehithighlighting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disablehybridsearch", + "displayName": "Disable Hybrid Searching (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disablehybridsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disablehybridsearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disableinstallationprompts", + "displayName": "Prevent installation prompts when Windows Desktop Search component is not present (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disableinstallationprompts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_disableinstallationprompts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_donotincludetheonlinearchiveinallmailitemsearch", + "displayName": "Do not include the Online Archive in All Mail Item search (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_donotincludetheonlinearchiveinallmailitemsearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_donotincludetheonlinearchiveinallmailitemsearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor", + "displayName": "Change color used to highlight search matches (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon", + "displayName": "Background Color: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_000000", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_12632256", + "displayName": "Silver", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_8421504", + "displayName": "Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_16777215", + "displayName": "White", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_65535", + "displayName": "Aqua", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_16711808", + "displayName": "Fuchsia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_8453888", + "displayName": "Lime", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_16776960", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_8421376", + "displayName": "Olive", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_8388736", + "displayName": "Purple", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_32768", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_16711680", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_8388608", + "displayName": "Maroon", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_128", + "displayName": "Navy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_32896", + "displayName": "Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_hithighlightingcolor_l_backgroundcolorcolon_255", + "displayName": "Blue", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_preventclearsignedmessageandattachmentindexing", + "displayName": "Prevent clear signed message and attachment indexing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_preventclearsignedmessageandattachmentindexing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_preventclearsignedmessageandattachmentindexing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_setdefaultsearchscope", + "displayName": "Set default search scope (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_setdefaultsearchscope_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_setdefaultsearchscope_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_setdefaultsearchscope_l_setdefaultsearchscopedropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_setdefaultsearchscope_l_setdefaultsearchscopedropid_0", + "displayName": "Default behavior (see explanation)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_setdefaultsearchscope_l_setdefaultsearchscopedropid_1", + "displayName": "\"All Mailboxes\" on all folders", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_setdefaultsearchscope_l_setdefaultsearchscopedropid_2", + "displayName": "\"Current Folder\" on all folders", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_setdefaultsearchscope_l_setdefaultsearchscopedropid_3", + "displayName": "\"Current Mailbox\" on all folders", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_turnoffautomaticsearchindexreconciliation", + "displayName": "Turn off automatic search index reconciliation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_turnoffautomaticsearchindexreconciliation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_turnoffautomaticsearchindexreconciliation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_turnoffwordwheel", + "displayName": "Do not display search results as the user types (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_turnoffwordwheel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_searchoptions_l_turnoffwordwheel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions", + "displayName": "Layout Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_l_setglobaltextdirection", + "displayName": "Set global text direction: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_l_setglobaltextdirection_0", + "displayName": "Context-based", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_l_setglobaltextdirection_1", + "displayName": "Left to right", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_l_setglobaltextdirection_2", + "displayName": "Right-to-left", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_l_setlayoutdirection", + "displayName": "Set layout direction: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_l_setlayoutdirection_0", + "displayName": "Left to Right", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_righttoleft_l_layoutoptions_l_setlayoutdirection_1", + "displayName": "Right to Left", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general", + "displayName": "General (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general_l_alwayscheckspellingbeforesending", + "displayName": "Always check spelling before sending (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general_l_alwayscheckspellingbeforesending_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general_l_alwayscheckspellingbeforesending_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general_l_ignoreoriginalmessagetextinreplyorforward", + "displayName": "Ignore original message text in reply or forward (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general_l_ignoreoriginalmessagetextinreplyorforward_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlookoptions~l_spelling_l_general_l_ignoreoriginalmessagetextinreplyorforward_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blockglobaladdresslistsynchronization", + "displayName": "Block Global Address List synchronization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blockglobaladdresslistsynchronization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blockglobaladdresslistsynchronization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blocknetworkactivitysynchronization", + "displayName": "Block network activity synchronization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blocknetworkactivitysynchronization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blocknetworkactivitysynchronization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blocksocialnetworkcontactsynchronization", + "displayName": "Block social network contact synchronization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blocksocialnetworkcontactsynchronization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blocksocialnetworkcontactsynchronization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blockspecificsocialnetworkproviders", + "displayName": "Block specific social network providers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blockspecificsocialnetworkproviders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blockspecificsocialnetworkproviders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_blockspecificsocialnetworkproviders_l_blockspecificsocialnetworkprovidersid", + "displayName": "Separate ProgIDs with semi-colons (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotallowondemandactivitysynchronization", + "displayName": "Do not allow on-demand activity synchronization (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotallowondemandactivitysynchronization_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotallowondemandactivitysynchronization_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotdownloadphotosfromactivedirectory", + "displayName": "Do not download photos from Active Directory (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotdownloadphotosfromactivedirectory_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotdownloadphotosfromactivedirectory_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotshowsocialnetworkinfobars", + "displayName": "Do not show social network info-bars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotshowsocialnetworkinfobars_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_donotshowsocialnetworkinfobars_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_preventsocialnetworkconnectivity", + "displayName": "Disable Office connections to social networks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_preventsocialnetworkconnectivity_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_preventsocialnetworkconnectivity_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_setgalcontactsynchronizationinterval", + "displayName": "Set GAL contact synchronization interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_setgalcontactsynchronizationinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_setgalcontactsynchronizationinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_setgalcontactsynchronizationinterval_l_setgalcontactsynchronizationintervalspinid", + "displayName": "Synchronization interval (in minutes): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_specifyactivityfeedsynchronizationinterval", + "displayName": "Specify activity feed synchronization interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_specifyactivityfeedsynchronizationinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_specifyactivityfeedsynchronizationinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_specifyactivityfeedsynchronizationinterval_l_specifyactivityfeedsynchronizationintervalspinid", + "displayName": "Synchronization interval (in minutes): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_specifylistofsocialnetworkproviderstoload", + "displayName": "Specify list of social network providers to load (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_specifylistofsocialnetworkproviderstoload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_specifylistofsocialnetworkproviderstoload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_specifylistofsocialnetworkproviderstoload_l_specifylistofsocialnetworkproviderstoloadid", + "displayName": "Separate ProgIDs with semi-colons (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_turnoffoutlooksocialconnector", + "displayName": "Turn off Outlook Social Connector (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_turnoffoutlooksocialconnector_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooksocialconnector_l_turnoffoutlooksocialconnector_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooktodaysettings_l_outlooktodayavailability", + "displayName": "Outlook Today availability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooktodaysettings_l_outlooktodayavailability_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooktodaysettings_l_outlooktodayavailability_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooktodaysettings_l_urlforcustomoutlooktoday", + "displayName": "URL for custom Outlook Today (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooktodaysettings_l_urlforcustomoutlooktoday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooktodaysettings_l_urlforcustomoutlooktoday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_outlooktodaysettings_l_urlforcustomoutlooktoday_l_entertheurlofoutlooktodayswebpagemax129chars", + "displayName": "Enter the URL of Outlook Today's web page (max 129 chars): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_keepsearchfoldersinexchangeonline", + "displayName": "Keep Search Folders in Exchange online (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_keepsearchfoldersinexchangeonline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_keepsearchfoldersinexchangeonline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_keepsearchfoldersinexchangeonline_l_specifydaystokeepfoldersaliveinexchangeonlinemode", + "displayName": "Specify days to keep folders alive in Exchange online mode: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_keepsearchfoldersoffline", + "displayName": "Keep Search Folders offline (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_keepsearchfoldersoffline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_keepsearchfoldersoffline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_keepsearchfoldersoffline_l_specifydaystokeepfoldersaliveinofflineorcachedmode", + "displayName": "Specify days to keep folders alive in offline or cached mode: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_maximumnumberofonlinesearchfolderspermailbox", + "displayName": "Maximum Number of Online Search Folders per mailbox (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_maximumnumberofonlinesearchfolderspermailbox_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_maximumnumberofonlinesearchfolderspermailbox_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_searchfolders_l_maximumnumberofonlinesearchfolderspermailbox_l_specifymaximumnumberofsearchfolders2", + "displayName": "Maximum number of Search Folders: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms", + "displayName": "Allow Active X One Off Forms (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_l_empty29", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_l_empty29_0", + "displayName": "Load only Outlook Controls", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_l_empty29_1", + "displayName": "Allows only Safe Controls", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_l_empty29_2", + "displayName": "Allows all ActiveX Controls", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_v2", + "displayName": "Allow Active X One Off Forms (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_v2_l_empty29", + "displayName": "\r\nSets which ActiveX controls to allow.\r\n", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_v2_l_empty29_0", + "displayName": "Load only Outlook Controls", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_v2_l_empty29_1", + "displayName": "Allows only Safe Controls", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_allowactivexoneoffforms_v2_l_empty29_2", + "displayName": "Allows all ActiveX Controls", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_configureaddintrustlevel", + "displayName": "Configure Add-In Trust Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_configureaddintrustlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_configureaddintrustlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_configureaddintrustlevel_l_empty28", + "displayName": "\r\nSelect Add-In Trust Level:\r\n", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_configureaddintrustlevel_l_empty28_0", + "displayName": "Trust all, or use Exchange settings if present", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_configureaddintrustlevel_l_empty28_1", + "displayName": "Trust all loaded and installed COM addins", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_configureaddintrustlevel_l_empty28_2", + "displayName": "Do NOT trust loaded and installed COM addins", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_disablerememberpasswordcheckboxforinternetemailsettingsdialo", + "displayName": "Disable 'Remember password' for Internet e-mail accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_disablerememberpasswordcheckboxforinternetemailsettingsdialo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_disablerememberpasswordcheckboxforinternetemailsettingsdialo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_donotautomaticallysignreplies", + "displayName": "Do not automatically sign replies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_donotautomaticallysignreplies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_donotautomaticallysignreplies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_preventusersfromcustomizingattachmentsecuritysettings", + "displayName": "Prevent users from customizing attachment security settings (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_preventusersfromcustomizingattachmentsecuritysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_preventusersfromcustomizingattachmentsecuritysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_preventusersfromcustomizingattachmentsecuritysettings_v2", + "displayName": "Prevent users from customizing attachment security settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_preventusersfromcustomizingattachmentsecuritysettings_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_preventusersfromcustomizingattachmentsecuritysettings_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_promptusertochoosesecuritysettingsifdefaultsettingsfail", + "displayName": "Prompt user to choose security settings if default settings fail (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_promptusertochoosesecuritysettingsifdefaultsettingsfail_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_promptusertochoosesecuritysettingsifdefaultsettingsfail_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_turnoffcontactexport", + "displayName": "Turn off contact export (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_turnoffcontactexport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_turnoffcontactexport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_useprotectedviewforattachmentsreceivedfrominternalsenders", + "displayName": "Use Protected View for attachments received from internal senders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_useprotectedviewforattachmentsreceivedfrominternalsenders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security_l_useprotectedviewforattachmentsreceivedfrominternalsenders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockexternalcontent", + "displayName": "Display pictures and external content in HTML e-mail (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockexternalcontent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockexternalcontent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockinternet", + "displayName": "Include Internet in Safe Zones for Automatic Picture Download (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockinternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockinternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockinternet_v2", + "displayName": "Include Internet in Safe Zones for Automatic Picture Download (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockinternet_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockinternet_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockintranet", + "displayName": "Include Intranet in Safe Zones for Automatic Picture Download (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockintranet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blockintranet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blocktrustedzones", + "displayName": "Block Trusted Zones (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blocktrustedzones_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_blocktrustedzones_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_permitdownloadofcontentfromsafesenderandrecipientlists", + "displayName": "Automatically download content for e-mail from people in Safe Senders and Safe Recipients Lists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_permitdownloadofcontentfromsafesenderandrecipientlists_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_permitdownloadofcontentfromsafesenderandrecipientlists_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_permitdownloadofcontentfromsafezones", + "displayName": "Do not permit download of content from safe zones (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_permitdownloadofcontentfromsafezones_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_automaticpicturedownloadsettings_l_permitdownloadofcontentfromsafezones_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_disablecontinuebuttononallencryptionwarningdialogs", + "displayName": "Do not provide Continue option on Encryption warning dialog boxes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_disablecontinuebuttononallencryptionwarningdialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_disablecontinuebuttononallencryptionwarningdialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_disablepublishtogalbutton", + "displayName": "Do not display 'Publish to GAL' button (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_disablepublishtogalbutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_disablepublishtogalbutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_donotcheckemailaddressagainstaddressofcertificatesbeingusing", + "displayName": "Do not check e-mail address against address of certificates being used (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_donotcheckemailaddressagainstaddressofcertificatesbeingusing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_donotcheckemailaddressagainstaddressofcertificatesbeingusing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_enableaiacertevaluation", + "displayName": "Enable Retrieval of Remote Certificate Authority Information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_enableaiacertevaluation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_enableaiacertevaluation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_enablecryptographyicons", + "displayName": "Enable Cryptography Icons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_enablecryptographyicons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_enablecryptographyicons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_encryptallemailmessages", + "displayName": "Encrypt all e-mail messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_encryptallemailmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_encryptallemailmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_ensureallsmimesignedmessageshavealabel", + "displayName": "Ensure all S/MIME signed messages have a label (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_ensureallsmimesignedmessageshavealabel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_ensureallsmimesignedmessageshavealabel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_fortezzacertificatepolicies", + "displayName": "Fortezza certificate policies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_fortezzacertificatepolicies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_fortezzacertificatepolicies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_fortezzacertificatepolicies_l_enterlistofpoliciesthatcanbeinthepoliciesextension2", + "displayName": "List of policies to indicate that a certificate is a Fortezza certificate (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats", + "displayName": "Message Formats (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_l_supportthefollowingmessageformats", + "displayName": "Support the following message formats: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_l_supportthefollowingmessageformats_1", + "displayName": "S/MIME", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_l_supportthefollowingmessageformats_2", + "displayName": "Exchange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_l_supportthefollowingmessageformats_20", + "displayName": "Fortezza", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_l_supportthefollowingmessageformats_3", + "displayName": "S/MIME and Exchange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_l_supportthefollowingmessageformats_21", + "displayName": "S/MIME and Fortezza", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_l_supportthefollowingmessageformats_22", + "displayName": "Exchange and Fortezza", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messageformats_l_supportthefollowingmessageformats_23", + "displayName": "S/MIME, Exchange, and Fortezza", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messagewhenoutlookcannotfindthedigitalidtodecodeamessage", + "displayName": "Message when Outlook cannot find the digital ID to decode a message (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messagewhenoutlookcannotfindthedigitalidtodecodeamessage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messagewhenoutlookcannotfindthedigitalidtodecodeamessage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_messagewhenoutlookcannotfindthedigitalidtodecodeamessage_l_entererrormessagetextmax255characters", + "displayName": "Enter error message text (max 255 characters): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_minimumencryptionsettings", + "displayName": "Minimum encryption settings (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_minimumencryptionsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_minimumencryptionsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_minimumencryptionsettings_l_minimumkeysizeinbits", + "displayName": "Minimum key size (in bits): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_minimumencryptionsettings_v2", + "displayName": "Minimum encryption settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_minimumencryptionsettings_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_minimumencryptionsettings_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_minimumencryptionsettings_v2_l_minimumkeysizeinbits", + "displayName": "Minimum key size (in bits): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_outlooktnefinsmimemessages", + "displayName": "Always use TNEF formatting in S/MIME messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_outlooktnefinsmimemessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_outlooktnefinsmimemessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_repliesorforwardstosignedencryptedmessagesaresignedencrypted", + "displayName": "Replies or forwards to signed/encrypted messages are signed/encrypted (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_repliesorforwardstosignedencryptedmessagesaresignedencrypted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_repliesorforwardstosignedencryptedmessagesaresignedencrypted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requestansmimereceiptforallsmimesignedmessages", + "displayName": "Request an S/MIME receipt for all S/MIME signed messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requestansmimereceiptforallsmimesignedmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requestansmimereceiptforallsmimesignedmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requiredcertificateauthority", + "displayName": "Required Certificate Authority (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requiredcertificateauthority_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requiredcertificateauthority_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requiredcertificateauthority_l_x509issuednthatrestrictschoiceofcertifyingauthorities", + "displayName": "X.509 issue DN that restricts choice of certifying authorities: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requiresuitebalgorithmsforsmimeoperations", + "displayName": "Require SuiteB algorithms for S/MIME operations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requiresuitebalgorithmsforsmimeoperations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_requiresuitebalgorithmsforsmimeoperations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_runinfipscompliantmode", + "displayName": "Run in FIPS compliant mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_runinfipscompliantmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_runinfipscompliantmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_sendallsignedmessagesasclearsignedmessages", + "displayName": "Send all signed messages as clear signed messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_sendallsignedmessagesasclearsignedmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_sendallsignedmessagesasclearsignedmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signallemailmessages", + "displayName": "Sign all e-mail messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signallemailmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signallemailmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning", + "displayName": "Signature Warning (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_l_signaturewarning30", + "displayName": "Signature Warning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_l_signaturewarning30_0", + "displayName": "Let user decide if they want to be warned", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_l_signaturewarning30_1", + "displayName": "Always warn about invalid signatures", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_l_signaturewarning30_2", + "displayName": "Never warn about invalid signatures", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_v2", + "displayName": "Signature Warning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_v2_l_signaturewarning30", + "displayName": "Signature Warning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_v2_l_signaturewarning30_0", + "displayName": "Let user decide if they want to be warned", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_v2_l_signaturewarning30_1", + "displayName": "Always warn about invalid signatures", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_signaturewarning_v2_l_signaturewarning30_2", + "displayName": "Never warn about invalid signatures", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeinteroperabilitywithexternalclients", + "displayName": "S/MIME interoperability with external clients: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeinteroperabilitywithexternalclients_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeinteroperabilitywithexternalclients_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeinteroperabilitywithexternalclients_l_behaviorforhandlingsmimemessages", + "displayName": "Behavior for handling S/MIME messages: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeinteroperabilitywithexternalclients_l_behaviorforhandlingsmimemessages_0", + "displayName": "Handle internally", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeinteroperabilitywithexternalclients_l_behaviorforhandlingsmimemessages_1", + "displayName": "Handle externally", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeinteroperabilitywithexternalclients_l_behaviorforhandlingsmimemessages_2", + "displayName": "Handle if possible", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimereceiptrequests", + "displayName": "S/MIME receipt requests behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimereceiptrequests_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimereceiptrequests_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimereceiptrequests_l_handlemessageswithsmimereceiptrequestsinthefollowingmanner", + "displayName": "Handle messages with S/MIME receipt requests in the following manner: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimereceiptrequests_l_handlemessageswithsmimereceiptrequestsinthefollowingmanner_0", + "displayName": "Open message if receipt can't be sent", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimereceiptrequests_l_handlemessageswithsmimereceiptrequestsinthefollowingmanner_3", + "displayName": "Don't open message if receipt can't be sent", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimereceiptrequests_l_handlemessageswithsmimereceiptrequestsinthefollowingmanner_1", + "displayName": "Always prompt before sending receipt", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimereceiptrequests_l_handlemessageswithsmimereceiptrequestsinthefollowingmanner_2", + "displayName": "Never send S/MIME receipts", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeuseissuerserialnumber", + "displayName": "Use UserIssuerSerialNumber (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeuseissuerserialnumber_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_smimeuseissuerserialnumber_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_urlforsmimecertificates", + "displayName": "URL for S/MIME certificates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_urlforsmimecertificates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_urlforsmimecertificates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_urlforsmimecertificates_l_enterurl", + "displayName": "Enter URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_attachmentsecuretemporaryfolder", + "displayName": "Attachment Secure Temporary Folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_attachmentsecuretemporaryfolder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_attachmentsecuretemporaryfolder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_attachmentsecuretemporaryfolder_l_enterthesecurefolderpath", + "displayName": "Enter the Secure Folder path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingcrls", + "displayName": "Missing CRLs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingcrls_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingcrls_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingcrls_l_indicateamissingcrlasan", + "displayName": "Indicate a missing CRL as a(n): (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingcrls_l_indicateamissingcrlasan_0", + "displayName": "Warning", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingcrls_l_indicateamissingcrlasan_1", + "displayName": "Error", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingrootcertificates", + "displayName": "Missing root certificates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingrootcertificates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingrootcertificates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingrootcertificates_l_indicateamissingrootcertificateasan", + "displayName": "Indicate a missing root certificate as a(n): (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingrootcertificates_l_indicateamissingrootcertificateasan_0", + "displayName": "Neither error nor warning", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingrootcertificates_l_indicateamissingrootcertificateasan_1", + "displayName": "Warning", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_missingrootcertificates_l_indicateamissingrootcertificateasan_2", + "displayName": "Error", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_promotingerrorsaswarnings", + "displayName": "Promote Level 2 errors as errors, not warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_promotingerrorsaswarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_promotingerrorsaswarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists", + "displayName": "Retrieving CRLs (Certificate Revocation Lists) (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_l_empty31", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_l_empty31_0", + "displayName": "Use system Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_l_empty31_1", + "displayName": "When online always retreive the CRL", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_l_empty31_2", + "displayName": "Never retreive the CRL", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_v2", + "displayName": "Retrieving CRLs (Certificate Revocation Lists) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_v2_l_empty31", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_v2_l_empty31_0", + "displayName": "Use system Default", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_v2_l_empty31_1", + "displayName": "When online always retreive the CRL", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_cryptography~l_signaturestatusdialog_l_retrievingcrlscertificaterevocationlists_v2_l_empty31_2", + "displayName": "Never retreive the CRL", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings_l_outlooksecuritymode", + "displayName": "Outlook Security Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings_l_outlooksecuritymode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings_l_outlooksecuritymode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings_l_outlooksecuritymode_l_outlooksecuritypolicy", + "displayName": "Outlook Security Policy: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings_l_outlooksecuritymode_l_outlooksecuritypolicy_0", + "displayName": "Outlook Default Security", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings_l_outlooksecuritymode_l_outlooksecuritypolicy_1", + "displayName": "Use Security Form from 'Outlook Security Settings' Public Folder", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings_l_outlooksecuritymode_l_outlooksecuritypolicy_2", + "displayName": "Use Security Form from 'Outlook 10 Security Settings' Public Folder", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings_l_outlooksecuritymode_l_outlooksecuritypolicy_3", + "displayName": "Use Outlook Security Group Policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_allowuserstolowerattachments", + "displayName": "Allow users to demote attachments to Level 2 (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_allowuserstolowerattachments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_allowuserstolowerattachments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_allowuserstolowerattachments_v2", + "displayName": "Allow users to demote attachments to Level 2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_allowuserstolowerattachments_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_allowuserstolowerattachments_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1addfilepolicy", + "displayName": "Add file extensions to block as Level 1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1addfilepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1addfilepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1addfilepolicy_l_additionalextensions", + "displayName": "Additional Extensions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1attachments", + "displayName": "Display Level 1 attachments (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1attachments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1attachments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1attachments_v2", + "displayName": "Display Level 1 attachments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1attachments_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1attachments_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1removefilepolicy", + "displayName": "Remove file extensions blocked as Level 1 (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1removefilepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1removefilepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1removefilepolicy_l_removedextensions", + "displayName": "Removed Extensions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1removefilepolicy_v2", + "displayName": "Remove file extensions blocked as Level 1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1removefilepolicy_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1removefilepolicy_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level1removefilepolicy_v2_l_removedextensions", + "displayName": "Removed Extensions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2addfilepolicy", + "displayName": "Add file extensions to block as Level 2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2addfilepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2addfilepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2addfilepolicy_l_additionalextensions23", + "displayName": "Additional Extensions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2removefilepolicy", + "displayName": "Remove file extensions blocked as Level 2 (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2removefilepolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2removefilepolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2removefilepolicy_l_removedextensions25", + "displayName": "Removed Extensions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2removefilepolicy_v2", + "displayName": "Remove file extensions blocked as Level 2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2removefilepolicy_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2removefilepolicy_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_level2removefilepolicy_v2_l_removedextensions25", + "displayName": "Removed Extensions: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_nopromptlevel1close", + "displayName": "Do not prompt about Level 1 attachments when closing an item (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_nopromptlevel1close_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_nopromptlevel1close_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_nopromptlevel1send", + "displayName": "Do not prompt about Level 1 attachments when sending an item (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_nopromptlevel1send_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_nopromptlevel1send_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_showolepackageobj", + "displayName": "Display OLE package objects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_showolepackageobj_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_miscattachmentsettings_l_showolepackageobj_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_enablescriptsinoneoffforms", + "displayName": "Allow scripts in one-off Outlook forms (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_enablescriptsinoneoffforms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_enablescriptsinoneoffforms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_enablescriptsinoneoffforms_v2", + "displayName": "Allow scripts in one-off Outlook forms (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_enablescriptsinoneoffforms_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_enablescriptsinoneoffforms_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom", + "displayName": "Set Outlook object model custom actions execution prompt (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_l_onexecutecustomactionoom_setting", + "displayName": "When executing a custom action: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_l_onexecutecustomactionoom_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_l_onexecutecustomactionoom_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_l_onexecutecustomactionoom_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_l_onexecutecustomactionoom_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_v2", + "displayName": "Set Outlook object model custom actions execution prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_v2_l_onexecutecustomactionoom_setting", + "displayName": "When executing a custom action: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_v2_l_onexecutecustomactionoom_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_v2_l_onexecutecustomactionoom_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_v2_l_onexecutecustomactionoom_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_misccustomformsettings_l_onexecutecustomactionoom_v2_l_onexecutecustomactionoom_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess", + "displayName": "Configure Outlook object model prompt when reading address information (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_l_oomaddressaccess_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_l_oomaddressaccess_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_l_oomaddressaccess_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_l_oomaddressaccess_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_l_oomaddressaccess_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_v2", + "displayName": "Configure Outlook object model prompt when reading address information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_v2_l_oomaddressaccess_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_v2_l_oomaddressaccess_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_v2_l_oomaddressaccess_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_v2_l_oomaddressaccess_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressaccess_v2_l_oomaddressaccess_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook", + "displayName": "Configure Outlook object model prompt when accessing an address book (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_l_oomaddressbook_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_l_oomaddressbook_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_l_oomaddressbook_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_l_oomaddressbook_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_l_oomaddressbook_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_v2", + "displayName": "Configure Outlook object model prompt when accessing an address book (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_v2_l_oomaddressbook_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_v2_l_oomaddressbook_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_v2_l_oomaddressbook_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_v2_l_oomaddressbook_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomaddressbook_v2_l_oomaddressbook_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula", + "displayName": "Configure Outlook object model prompt When accessing the Formula property of a UserProperty object (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_l_oomformula_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_l_oomformula_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_l_oomformula_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_l_oomformula_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_l_oomformula_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_v2", + "displayName": "Configure Outlook object model prompt When accessing the Formula property of a UserProperty object (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_v2_l_oomformula_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_v2_l_oomformula_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_v2_l_oomformula_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_v2_l_oomformula_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomformula_v2_l_oomformula_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest", + "displayName": "Configure Outlook object model prompt when responding to meeting and task requests (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_l_oommeetingtaskrequest_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_l_oommeetingtaskrequest_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_l_oommeetingtaskrequest_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_l_oommeetingtaskrequest_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_l_oommeetingtaskrequest_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_v2", + "displayName": "Configure Outlook object model prompt when responding to meeting and task requests (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_v2_l_oommeetingtaskrequest_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_v2_l_oommeetingtaskrequest_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_v2_l_oommeetingtaskrequest_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_v2_l_oommeetingtaskrequest_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oommeetingtaskrequest_v2_l_oommeetingtaskrequest_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas", + "displayName": "Configure Outlook object model prompt when executing Save As (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_l_oomsaveas_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_l_oomsaveas_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_l_oomsaveas_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_l_oomsaveas_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_l_oomsaveas_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_v2", + "displayName": "Configure Outlook object model prompt when executing Save As (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_v2_l_oomsaveas_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_v2_l_oomsaveas_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_v2_l_oomsaveas_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_v2_l_oomsaveas_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsaveas_v2_l_oomsaveas_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend", + "displayName": "Configure Outlook object model prompt when sending mail (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_l_oomsend_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_l_oomsend_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_l_oomsend_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_l_oomsend_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_l_oomsend_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_v2", + "displayName": "Configure Outlook object model prompt when sending mail (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_v2_l_oomsend_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_v2_l_oomsend_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_v2_l_oomsend_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_v2_l_oomsend_setting_0", + "displayName": "Automatically Deny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_oomsend_v2_l_oomsend_setting_3", + "displayName": "Prompt user based on computer security", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapinameresolve", + "displayName": "Configure Simple MAPI name resolution prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapinameresolve_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapinameresolve_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapinameresolve_l_simplemapi_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapinameresolve_l_simplemapi_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapinameresolve_l_simplemapi_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapinameresolve_l_simplemapi_setting_0", + "displayName": "Automatically Deny", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapiopenmessage", + "displayName": "Configure Simple MAPI message opening prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapiopenmessage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapiopenmessage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapiopenmessage_l_simplemapi_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapiopenmessage_l_simplemapi_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapiopenmessage_l_simplemapi_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapiopenmessage_l_simplemapi_setting_0", + "displayName": "Automatically Deny", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapisend", + "displayName": "Configure Simple MAPI sending prompt (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapisend_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapisend_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapisend_l_simplemapi_setting", + "displayName": "Guard behavior: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapisend_l_simplemapi_setting_1", + "displayName": "Prompt User", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapisend_l_simplemapi_setting_2", + "displayName": "Automatically Approve", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings_l_simplemapisend_l_simplemapi_setting_0", + "displayName": "Automatically Deny", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings~l_trustedaddins_l_settrustedaddins", + "displayName": "Configure trusted add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings~l_trustedaddins_l_settrustedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings~l_trustedaddins_l_settrustedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings~l_trustedaddins_l_settrustedaddins_l_listoftrustedaddins", + "displayName": "List of trusted add-ins and hashes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings~l_trustedaddins_l_settrustedaddins_l_listoftrustedaddins_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_securityformsettings~l_programmaticsettings~l_trustedaddins_l_settrustedaddins_l_listoftrustedaddins_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_applymacrosecuritysettings", + "displayName": "Apply macro security settings to macros, add-ins and additional actions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_applymacrosecuritysettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_applymacrosecuritysettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_enablelinksinemailmessages", + "displayName": "Allow hyperlinks in suspected phishing e-mail messages (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_enablelinksinemailmessages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_enablelinksinemailmessages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_enablelinksinemailmessages_v2", + "displayName": "Allow hyperlinks in suspected phishing e-mail messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_enablelinksinemailmessages_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_enablelinksinemailmessages_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_onsendaddinsenabled", + "displayName": "Disable send when web extensions can’t load. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_onsendaddinsenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_onsendaddinsenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookactivationalertthreshold", + "displayName": "Specify activation disabling threshold for web extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookactivationalertthreshold_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookactivationalertthreshold_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookactivationalertthreshold_l_outlookactivationalertthresholdspinid", + "displayName": "(100 - 10000 milliseconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookactivationmanagerretrylimit", + "displayName": "Specify activation manager retry limit for web extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookactivationmanagerretrylimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookactivationmanagerretrylimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookactivationmanagerretrylimit_l_outlookactivationmanagerretrylimitspinid", + "displayName": "(1 - 5 occurrences) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookalertinterval", + "displayName": "Specify alert interval for web extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookalertinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookalertinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookalertinterval_l_outlookalertintervalspinid", + "displayName": "(5 - 600 seconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookmemoryalertthreshold", + "displayName": "Specify Outlook memory alert threshold for web extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookmemoryalertthreshold_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookmemoryalertthreshold_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookmemoryalertthreshold_l_outlookmemoryalertthresholdspinid", + "displayName": "(1 - 1500 MB) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookrestartmanagerretrylimit", + "displayName": "Specify the number of restarts attempted for a running web extension (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookrestartmanagerretrylimit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookrestartmanagerretrylimit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_outlookrestartmanagerretrylimit_l_outlookrestartmanagerretrylimitspinid", + "displayName": "(1 - 10 occurrences) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook", + "displayName": "Security setting for macros (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_l_securitylevel", + "displayName": "Security Level (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_l_securitylevel_2", + "displayName": "Always warn", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_l_securitylevel_4", + "displayName": "Never warn, disable all", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_l_securitylevel_3", + "displayName": "Warn for signed, disable unsigned", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_l_securitylevel_1", + "displayName": "No security check", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_v2", + "displayName": "Security setting for macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_v2_l_securitylevel", + "displayName": "Security Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_v2_l_securitylevel_2", + "displayName": "Always warn", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_v2_l_securitylevel_4", + "displayName": "Never warn, disable all", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_v2_l_securitylevel_3", + "displayName": "Warn for signed, disable unsigned", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_security~l_trustcenter_l_securityleveloutlook_v2_l_securitylevel_1", + "displayName": "No security check", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_preventsavingcredentialsforbasicauthenticationpolicy", + "displayName": "Prevent saving credentials for Basic Authentication policy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_preventsavingcredentialsforbasicauthenticationpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_preventsavingcredentialsforbasicauthenticationpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_specifyofflineaddressbookpath", + "displayName": "Specify Offline Address Book path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_specifyofflineaddressbookpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_specifyofflineaddressbookpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_specifyofflineaddressbookpath_l_specifyofflineaddressbookpathid", + "displayName": "Offline Address Book path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_eas_l_eassyncfrequency", + "displayName": "EAS Sync Frequency (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_eas_l_eassyncfrequency_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_eas_l_eassyncfrequency_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_eas_l_eassyncfrequency_l_eassyncfrequencyintervalspinid", + "displayName": "Synchronization interval (in minutes): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_automaticallyconfigureprofilebasedonactive", + "displayName": "Automatically configure profile based on Active Directory Primary SMTP address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_automaticallyconfigureprofilebasedonactive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_automaticallyconfigureprofilebasedonactive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_automaticallyconfigureprofilebasedonactiveonce", + "displayName": "Automatically configure only the first profile based on Active Directory primary SMTP address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_automaticallyconfigureprofilebasedonactiveonce_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_automaticallyconfigureprofilebasedonactiveonce_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_cachedexchangelowbandwidththreshold", + "displayName": "Cached Exchange low bandwidth threshold (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_cachedexchangelowbandwidththreshold_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_cachedexchangelowbandwidththreshold_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_cachedexchangelowbandwidththreshold_l_enterthebitratekbps128k128thresholdtodetectlowbandwidth2", + "displayName": "(0 - 1,000,000 kbps) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disablechangingfolderpermissions", + "displayName": "Do not allow users to change permissions on folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disablechangingfolderpermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disablechangingfolderpermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disableexchangeconsumeraccounts", + "displayName": "Prevent personal Microsoft accounts from using MAPI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disableexchangeconsumeraccounts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disableexchangeconsumeraccounts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disablerpctransportfallback", + "displayName": "Disable connection fallback between protocols (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disablerpctransportfallback_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_disablerpctransportfallback_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_donotcreatenewostonupgrade", + "displayName": "Do not create new OST file on upgrade (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_donotcreatenewostonupgrade_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_donotcreatenewostonupgrade_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface", + "displayName": "Configure Outlook Anywhere user interface options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface_l_chooseuistatewhenoscansupportfeature", + "displayName": "Choose UI State when OS can support feature: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface_l_chooseuistatewhenoscansupportfeature_0", + "displayName": "Hidden", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface_l_chooseuistatewhenoscansupportfeature_1", + "displayName": "All config UI enabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface_l_chooseuistatewhenoscansupportfeature_2", + "displayName": "Enable only On/Off control but not config UI", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface_l_chooseuistatewhenoscansupportfeature_3", + "displayName": "Enable config UI when settings are pre-deployed", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enableexchangeoverinternetuserinterface_l_chooseuistatewhenoscansupportfeature_4", + "displayName": "Disable but show all config UI", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enablerpcencryption", + "displayName": "Enable RPC encryption (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enablerpcencryption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enablerpcencryption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enablerpcencryption_v2", + "displayName": "Enable RPC encryption (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enablerpcencryption_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_enablerpcencryption_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeignoreostformat", + "displayName": "Exchange Unicode Mode - Ignore OST Format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeignoreostformat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeignoreostformat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeignoreostformat_l_choosewhetherexistingostformatdeterminesmailboxmode", + "displayName": "Choose whether existing OST format determines mailbox mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeignoreostformat_l_choosewhetherexistingostformatdeterminesmailboxmode_0", + "displayName": "OST Format determines mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeignoreostformat_l_choosewhetherexistingostformatdeterminesmailboxmode_1", + "displayName": "Create new OST if format doesn't match mode", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeignoreostformat_l_choosewhetherexistingostformatdeterminesmailboxmode_2", + "displayName": "Prompt to create new OST if format doesn't match mode", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodesilentostformatchange", + "displayName": "Exchange Unicode Mode - Silent OST format change (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodesilentostformatchange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodesilentostformatchange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeturnoffansi", + "displayName": "Exchange Unicode Mode - Turn off ANSI mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeturnoffansi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_exchangeunicodemodeturnoffansi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_foldersizedisplay", + "displayName": "Do not display Folder Size button on folder properties dialog box (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_foldersizedisplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_foldersizedisplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_ostcreation", + "displayName": "Do not allow an OST file to be created (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_ostcreation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_ostcreation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover", + "displayName": "Disable AutoDiscover (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverautodiscoversubdomain", + "displayName": "Exclude the query for the AutoDiscover domain (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverautodiscoversubdomain_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverautodiscoversubdomain_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverhttpredirect", + "displayName": "Exclude the HTTP redirect method (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverhttpredirect_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverhttpredirect_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverlkgurl", + "displayName": "Exclude the last known goode URL (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverlkgurl_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverlkgurl_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverrootdomain", + "displayName": "Exclude the root domain query based on your primary SMTP address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverrootdomain_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverrootdomain_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverscplookup", + "displayName": "Exclude the SCP object lookup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverscplookup_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoverscplookup_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoversrvrecord", + "displayName": "Exclude the SRV record query in DNS (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoversrvrecord_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookdisableautodiscover_l_outlookdisableautodiscoversrvrecord_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_personaldistributionlistsexchangeonly", + "displayName": "Do not validate personal Contact Groups when sending e-mail messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_personaldistributionlistsexchangeonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_personaldistributionlistsexchangeonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventcopyingormovingitemsbetweenaccounts", + "displayName": "Prevent copying or moving items between accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventcopyingormovingitemsbetweenaccounts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventcopyingormovingitemsbetweenaccounts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventcopyingormovingitemsbetweenaccounts_l_preventcopyingormovingitemsbetweenaccountsid", + "displayName": "SMTP address domain (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventnondefaultexchangeaccounts", + "displayName": "Prevent adding non-default Exchange accounts (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventnondefaultexchangeaccounts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preventnondefaultexchangeaccounts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags", + "displayName": "RPC/HTTP Connection Flags (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_l_selectrpchttpconnectionflags", + "displayName": "Select a combination of RPC/HTTP connection flags (see Explain tab for details): (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_l_selectrpchttpconnectionflags_0", + "displayName": "No Flags", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_l_selectrpchttpconnectionflags_47", + "displayName": "Flags: 1 + 2 + 3 + 4 + 5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_l_selectrpchttpconnectionflags_39", + "displayName": "Flags: 1 + 2 + 3 + 5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_l_selectrpchttpconnectionflags_43", + "displayName": "Flags: 1 + 2 + 4 + 5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_l_selectrpchttpconnectionflags_35", + "displayName": "Flags: 1 + 2 + 5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_l_selectrpchttpconnectionflags_41", + "displayName": "Flags: 1 + 4 + 5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpchttpconnectionflags_l_selectrpchttpconnectionflags_33", + "displayName": "Flags: 1 + 5", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyauthenticationsetting", + "displayName": "RPC Proxy Authentication Setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyauthenticationsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyauthenticationsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyauthenticationsetting_l_selectrpcproxyauthentication", + "displayName": "Authentication used to connect with the proxy server: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyauthenticationsetting_l_selectrpcproxyauthentication_1", + "displayName": "Basic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyauthenticationsetting_l_selectrpcproxyauthentication_2", + "displayName": "NTLM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyauthenticationsetting_l_selectrpcproxyauthentication_16", + "displayName": "Negotiate", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyauthenticationsetting_l_selectrpcproxyauthentication_65536", + "displayName": "Certificate", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyservername", + "displayName": "RPC Proxy Server Name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyservername_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyservername_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyservername_l_rpcproxyservernametextid", + "displayName": "Specify the proxy server name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyserverprincipalname", + "displayName": "Only connect if Proxy Server certificate has this principal name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyserverprincipalname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyserverprincipalname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_rpcproxyserverprincipalname_l_rpcproxyserverprincipalnametextid", + "displayName": "Specify the proxy server principal name (see Explain tab for details): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_setmaximumnumberofexchangeaccounts", + "displayName": "Set maximum number of Exchange accounts per profile (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_setmaximumnumberofexchangeaccounts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_setmaximumnumberofexchangeaccounts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_setmaximumnumberofexchangeaccounts_l_setmaximumnumberofexchangeaccountsspinid", + "displayName": "Number of Accounts: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_synchronizingdatainsharedfolders", + "displayName": "Synchronizing data in shared folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_synchronizingdatainsharedfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_synchronizingdatainsharedfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_synchronizingdatainsharedfolders_l_numberofdays", + "displayName": "Number of days (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbook", + "displayName": "Turn off Hierarchical Address Book (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbookdepartmentselection", + "displayName": "Turn off Hierarchical Address Book department selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbookdepartmentselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbookdepartmentselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbooksearch", + "displayName": "Turn off Hierarchical Address Book search (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbooksearch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_turnoffhierarchicaladdressbooksearch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_uselegacyoutlookauthenticationdialogs", + "displayName": "Use legacy Change Password authentication dialog boxes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_uselegacyoutlookauthenticationdialogs_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_uselegacyoutlookauthenticationdialogs_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_cachedexchangemodefilecachedexchangemode", + "displayName": "Cached Exchange Mode (File | Cached Exchange Mode) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_cachedexchangemodefilecachedexchangemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_cachedexchangemodefilecachedexchangemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_cachedexchangemodefilecachedexchangemode_l_selectcachedexchangemodefornewprofiles", + "displayName": "Select Cached Exchange Mode for new profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_cachedexchangemodefilecachedexchangemode_l_selectcachedexchangemodefornewprofiles_1", + "displayName": "Download Headers", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_cachedexchangemodefilecachedexchangemode_l_selectcachedexchangemodefornewprofiles_2", + "displayName": "Download Full Items", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_cachedexchangemodefilecachedexchangemode_l_selectcachedexchangemodefornewprofiles_3", + "displayName": "Download Headers and then Full Items", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_configurecachedexchangemode", + "displayName": "Use Cached Exchange Mode for new and existing Outlook profiles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_configurecachedexchangemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_configurecachedexchangemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadfullitemsfilecachedexchangemode", + "displayName": "Disallow Download Full Items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadfullitemsfilecachedexchangemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadfullitemsfilecachedexchangemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadheadersfilecachedexchangemode", + "displayName": "Disallow Download Headers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadheadersfilecachedexchangemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadheadersfilecachedexchangemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadheadersthenfullitemsfilecachedexchangemode", + "displayName": "Disallow Download Headers then Full Items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadheadersthenfullitemsfilecachedexchangemode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowdownloadheadersthenfullitemsfilecachedexchangemode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowonslowconnectionsonlydownloadheadersfilecachedexchan", + "displayName": "Disallow On Slow Connections Only Download Headers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowonslowconnectionsonlydownloadheadersfilecachedexchan_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_disallowonslowconnectionsonlydownloadheadersfilecachedexchan_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_downloadpublicfolderfavorites", + "displayName": "Download Public Folder Favorites (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_downloadpublicfolderfavorites_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_downloadpublicfolderfavorites_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_downloadshardnonmailfolders", + "displayName": "Download shared non-mail folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_downloadshardnonmailfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_downloadshardnonmailfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entermaximumsecondstowaittosyncchanges", + "displayName": "Enter maximum seconds to wait to sync changes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entermaximumsecondstowaittosyncchanges_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entermaximumsecondstowaittosyncchanges_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entermaximumsecondstowaittosyncchanges_l_entersecondstowaitbeforesyncdefault60sec", + "displayName": "Enter seconds to wait before sync(Default 60 sec.) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entersecondstowaittodownloadchangesfromserver", + "displayName": "Enter seconds to wait to download changes from server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entersecondstowaittodownloadchangesfromserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entersecondstowaittodownloadchangesfromserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entersecondstowaittodownloadchangesfromserver_l_entersecondstowaitbeforedownloaddefault30sec", + "displayName": "Enter seconds to wait before download(Default 30 sec.) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entersecondstowaittouploadchangestoserver", + "displayName": "Enter seconds to wait to upload changes to server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entersecondstowaittouploadchangestoserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entersecondstowaittouploadchangestoserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_entersecondstowaittouploadchangestoserver_l_entersecondstowaitbeforeuploaddefault15sec", + "displayName": "Enter seconds to wait before upload(Default 15 sec.) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_hybridmode", + "displayName": "Disable Exchange Fast Access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_hybridmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_hybridmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_incachedexchangemakesendreceivef9nulloperation", + "displayName": "Do not sync in Cached Exchange mode when users click Send/Receive or F9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_incachedexchangemakesendreceivef9nulloperation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_incachedexchangemakesendreceivef9nulloperation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_includeonlinemodegalinanr", + "displayName": "Use the Online Global Address List for Nickname Resolution (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_includeonlinemodegalinanr_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_cachedexchangemode_l_includeonlinemodegalinanr_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbookexactaliasmatching", + "displayName": "Return e-mail alias if it exactly matches the provided e-mail address when searching OAB (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbookexactaliasmatching_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbookexactaliasmatching_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbooklimitmanualoabdownloads", + "displayName": "Offline Address Book: Limit manual OAB downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbooklimitmanualoabdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbooklimitmanualoabdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbooklimitmanualoabdownloads_l_allowxxmanualoabdownloadsper13hrperiod", + "displayName": "Upper limit of number of manual OAB downloads per 13 hour period (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbooklimitnumberofincrementaloabdownloads", + "displayName": "Offline Address Book: Limit number of incremental OAB downloads (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbooklimitnumberofincrementaloabdownloads_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbooklimitnumberofincrementaloabdownloads_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbooklimitnumberofincrementaloabdownloads_l_allowxxincrementaloabdownloadsper13hrperiod", + "displayName": "Allow xx incremental OAB downloads per 13hr period (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbookpromptbeforedownloadingfulloab", + "displayName": "Offline Address Book: Prompt before Downloading Full OAB (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbookpromptbeforedownloadingfulloab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings~l_offlineaddressbook_l_offlineaddressbookpromptbeforedownloadingfulloab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_imap_l_turnonpurgewhenswitchingfolders", + "displayName": "Turn on purge when switching folders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_imap_l_turnonpurgewhenswitchingfolders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_imap_l_turnonpurgewhenswitchingfolders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_automaticallydownloadenclosures", + "displayName": "Automatically download enclosures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_automaticallydownloadenclosures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_automaticallydownloadenclosures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_defaultrssfeeds", + "displayName": "Default RSS Feeds (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_defaultrssfeeds_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_defaultrssfeeds_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_defaultrssfeeds_l_defaultrsssubscriptionspart", + "displayName": "List of default RSS Feeds (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_defaultrssfeeds_l_defaultrsssubscriptionspart_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_defaultrssfeeds_l_defaultrsssubscriptionspart_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_disableroamingofrsssubscriptions", + "displayName": "Do not roam users' RSS Feeds (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_disableroamingofrsssubscriptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_disableroamingofrsssubscriptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_downloadfulltextofarticles", + "displayName": "Download full text of articles as HTML attachments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_downloadfulltextofarticles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_downloadfulltextofarticles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_overridepublishedsyncinterval", + "displayName": "Override published sync interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_overridepublishedsyncinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_overridepublishedsyncinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_runrulesonrssitems", + "displayName": "Run rules on RSS items (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_runrulesonrssitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_runrulesonrssitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_synchronizeoutlookrssfeedswithcommonfeedlist", + "displayName": "Synchronize Outlook RSS Feeds with Common Feed List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_synchronizeoutlookrssfeedswithcommonfeedlist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_synchronizeoutlookrssfeedswithcommonfeedlist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_turnoffrssfeature", + "displayName": "Turn off RSS feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_turnoffrssfeature_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_rsssubscriptions_l_turnoffrssfeature_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_defaultsharepointlists", + "displayName": "Default SharePoint lists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_defaultsharepointlists_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_defaultsharepointlists_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_defaultsharepointlists_l_empty35", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_defaultsharepointlists_l_empty35_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_defaultsharepointlists_l_empty35_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_definecustomlabelforsharepointstore", + "displayName": "Define custom label for SharePoint store (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_definecustomlabelforsharepointstore_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_definecustomlabelforsharepointstore_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_definecustomlabelforsharepointstore_l_definecustomlabelforsharepointstorepart", + "displayName": "Enter custom label for SharePoint store: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_disableroamingofsharepointlists", + "displayName": "Do not roam users' SharePoint lists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_disableroamingofsharepointlists_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_disableroamingofsharepointlists_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_disablesharepointintegrationinoutlook", + "displayName": "Do not allow Sharepoint-Outlook integration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_disablesharepointintegrationinoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_disablesharepointintegrationinoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_logsharepointsyncrequestsandresponses", + "displayName": "Log SharePoint sync requests and responses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_logsharepointsyncrequestsandresponses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_logsharepointsyncrequestsandresponses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_modifynumberofchangeditemsincluded", + "displayName": "Modify number of changed items included in SharePoint client page download (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_modifynumberofchangeditemsincluded_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_modifynumberofchangeditemsincluded_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_modifynumberofchangeditemsincluded_l_empty34", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_overridepublishedsyncinteral36", + "displayName": "Override published sync interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_overridepublishedsyncinteral36_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_sharepointintegration_l_overridepublishedsyncinteral36_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_automaticallydownloadenclosureswebcal", + "displayName": "Automatically download attachments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_automaticallydownloadenclosureswebcal_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_automaticallydownloadenclosureswebcal_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_defaultwebcalsubscriptions", + "displayName": "Default Internet Calendar subscriptions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_defaultwebcalsubscriptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_defaultwebcalsubscriptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_defaultwebcalsubscriptions_l_empty32", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_defaultwebcalsubscriptions_l_empty32_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_defaultwebcalsubscriptions_l_empty32_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_disableroamingofinternetcalendars", + "displayName": "Disable roaming of Internet Calendars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_disableroamingofinternetcalendars_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_disableroamingofinternetcalendars_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_disablewebcalintegration", + "displayName": "Do not include Internet Calendar integration in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_disablewebcalintegration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_disablewebcalintegration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_overridepublishedsyncinteral", + "displayName": "Override published sync interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_overridepublishedsyncinteral_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v2~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_webcalsubscriptions_l_overridepublishedsyncinteral_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v3~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preferprovidedemailinautodiscoverauthprompts", + "displayName": "Prefer the provided account email in AutoDiscover auth prompts. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v3~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preferprovidedemailinautodiscoverauthprompts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v3~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_preferprovidedemailinautodiscoverauthprompts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions_l_disableguesssmart", + "displayName": "Disable GuessSmart in Outlook. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions_l_disableguesssmart_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions_l_disableguesssmart_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions_l_disableroamingsettings", + "displayName": "Disable roaming settings in Outlook. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions_l_disableroamingsettings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions_l_disableroamingsettings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableoutlookfeedbackfeatures", + "displayName": "Disable Outlook features in the Feedback tab under the File menu in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableoutlookfeedbackfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableoutlookfeedbackfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableoutlookmobilehyperlink", + "displayName": "Disable Outlook Mobile Hyperlink (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableoutlookmobilehyperlink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableoutlookmobilehyperlink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportbackstage", + "displayName": "Disable the Support tab under the File menu in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportbackstage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportbackstage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportdiagnostics", + "displayName": "Disable support diagnostics in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportdiagnostics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportdiagnostics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportticketcreationinoutlook", + "displayName": "Disable support ticket creation in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportticketcreationinoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablesupportticketcreationinoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_disableaccountsettingsdetectionservice", + "displayName": "Prevent Outlook from interacting with the account settings detection service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_disableaccountsettingsdetectionservice_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_disableaccountsettingsdetectionservice_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_disableoffice365simplifiedaccountcreation", + "displayName": "Prevent Office 365 E-mail accounts from being configured within a simplified Interface (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_disableoffice365simplifiedaccountcreation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_accountsettingsemail_l_disableoffice365simplifiedaccountcreation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_eas_l_enableeasaccountcreation", + "displayName": "Enable Exchange ActiveSync account creation in the Outlook account setup UI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_eas_l_enableeasaccountcreation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_eas_l_enableeasaccountcreation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookenableofficeconfigserviceinautodiscover", + "displayName": "Allow Outlook Autodiscover to interact with Office Config Service (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookenableofficeconfigserviceinautodiscover_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v4~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_outlookenableofficeconfigserviceinautodiscover_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableadminnotifications", + "displayName": "Disable Outlook tenant admin notifications (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableadminnotifications_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disableadminnotifications_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablecrashnotificationonrestart", + "displayName": "Disable the Outlook crash notification when Outlook restarts. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablecrashnotificationonrestart_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_disablecrashnotificationonrestart_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_allowprivatekeycheck", + "displayName": "Check for the user's private key when the user sends an encrypted email that includes the user as a recipient (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_allowprivatekeycheck_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v5~policy~l_microsoftofficeoutlook~l_security~l_cryptography_l_allowprivatekeycheck_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel", + "displayName": "Junk E-mail protection level (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_l_selectlevel", + "displayName": "Select level: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_l_selectlevel_4294967295", + "displayName": "No Protection", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_l_selectlevel_6", + "displayName": "Low (Default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_l_selectlevel_3", + "displayName": "High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_l_selectlevel_2147483648", + "displayName": "Trusted Lists Only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_v2", + "displayName": "Junk E-mail protection level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_v2_l_selectlevel", + "displayName": "Select level: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_v2_l_selectlevel_4294967295", + "displayName": "No Protection", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_v2_l_selectlevel_6", + "displayName": "Low (Default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_v2_l_selectlevel_3", + "displayName": "High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_junkemail_l_junkemailprotectionlevel_v2_l_selectlevel_2147483648", + "displayName": "Trusted Lists Only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver", + "displayName": "Authentication with Exchange Server (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_l_selecttheauthenticationwithexchangeserver", + "displayName": "Select the authentication with Exchange server. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_l_selecttheauthenticationwithexchangeserver_9", + "displayName": "Kerberos/NTLM Password Authentication", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_l_selecttheauthenticationwithexchangeserver_16", + "displayName": "Kerberos Password Authentication", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_l_selecttheauthenticationwithexchangeserver_10", + "displayName": "NTLM Password Authentication", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_l_selecttheauthenticationwithexchangeserver_2147545088", + "displayName": "Insert a smart card", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_v2", + "displayName": "Authentication with Exchange Server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_v2_l_selecttheauthenticationwithexchangeserver", + "displayName": "Select the authentication with Exchange server. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_v2_l_selecttheauthenticationwithexchangeserver_9", + "displayName": "Kerberos/NTLM Password Authentication", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_v2_l_selecttheauthenticationwithexchangeserver_16", + "displayName": "Kerberos Password Authentication", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_v2_l_selecttheauthenticationwithexchangeserver_10", + "displayName": "NTLM Password Authentication", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v6~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_authenticationwithexchangeserver_v2_l_selecttheauthenticationwithexchangeserver_2147545088", + "displayName": "Insert a smart card", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_predefined_l_disableeditdefaultuserpermissions", + "displayName": "Limit which permissions can be assigned to Default, Anonymous, or My Organization on mail folders and calendars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_predefined_l_disableeditdefaultuserpermissions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_disableitemsinuserinterface~l_predefined_l_disableeditdefaultuserpermissions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_delegatesentitemsstyle", + "displayName": "Saving messages sent from a shared mailbox to the Sent Items folder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_delegatesentitemsstyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_delegates_l_delegatesentitemsstyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_shorteneventstype", + "displayName": "Shorten appointments and meetings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_shorteneventstype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_shorteneventstype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_shorteneventstype_l_selecttheshorteneventstype", + "displayName": "Select the Shorten Events Type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_shorteneventstype_l_selecttheshorteneventstype_none", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_shorteneventstype_l_selecttheshorteneventstype_end_early", + "displayName": "End Early", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_outlookoptions~l_preferences~l_calendaroptions_l_shorteneventstype_l_selecttheshorteneventstype_start_late", + "displayName": "Start Late", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_alwaysusemsoauthforautodiscover", + "displayName": "Autodiscover is always capable of using modern authentication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_alwaysusemsoauthforautodiscover_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_alwaysusemsoauthforautodiscover_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_autodiscoverredirectservers", + "displayName": "Don’t show redirect warnings for Autodiscover for the specified HTTPS server names (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_autodiscoverredirectservers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_autodiscoverredirectservers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v7~policy~l_microsoftofficeoutlook~l_toolsaccounts~l_exchangesettings_l_autodiscoverredirectservers_l_autodiscoverredirectserverslist", + "displayName": "HTTPS server names: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v8~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_recommendoutlookextension", + "displayName": "Recommend the Microsoft Outlook Extension (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v8~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_recommendoutlookextension_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v8~policy~l_microsoftofficeoutlook~l_outlookoptions~l_other_l_recommendoutlookextension_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_miscellaneous_l_equivalentcomaddin", + "displayName": "Deactivate Outlook web add-ins whose equivalent COM or VSTO add-in is installed (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_miscellaneous_l_equivalentcomaddin_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_miscellaneous_l_equivalentcomaddin_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_miscellaneous_l_equivalentcomaddin_l_equivalentcomaddin2", + "displayName": "Outlook web add-ins to deactivate (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_miscellaneous_l_equivalentcomaddin_l_equivalentcomaddin2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_miscellaneous_l_equivalentcomaddin_l_equivalentcomaddin2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_outlookoptions_l_specifymaxgroupssupported", + "displayName": "Maximum Groups Supported (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_outlookoptions_l_specifymaxgroupssupported_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_outlookoptions_l_specifymaxgroupssupported_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_outlk16v9~policy~l_microsoftofficeoutlook~l_outlookoptions_l_specifymaxgroupssupported_l_specifymaxgroupssupportedid", + "displayName": "Groups Count: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_disableautosavewhencoauthoring", + "displayName": "Don’t automatically save changes when working in the same PowerPoint presentation as others (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_disableautosavewhencoauthoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_disableautosavewhencoauthoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_preventcoauthoring", + "displayName": "Prevent co-authoring (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_preventcoauthoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_preventcoauthoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_turnoffrevisiontracking", + "displayName": "Turn off revision tracking (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_turnoffrevisiontracking_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_collaborationsettings~l_coauthoring_l_turnoffrevisiontracking_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_customizableerrormessages_l_listoferrormessagestocustomize", + "displayName": "List of error messages to customize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_customizableerrormessages_l_listoferrormessagestocustomize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_customizableerrormessages_l_listoferrormessagestocustomize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize80", + "displayName": "List of error messages to customize (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize80_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize80_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems157", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems157_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems157_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems157_l_enteracommandbaridtodisable", + "displayName": "Enter a command bar ID to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys158", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys158_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys158_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys158_l_enterakeyandmodifiertodisable", + "displayName": "Enter a key and modifier to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultmuteaudioinrecordingpresenterview", + "displayName": "Turn off microphone recording by default when recording a slide show (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultmuteaudioinrecordingpresenterview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultmuteaudioinrecordingpresenterview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultmuteaudioinscreenrecorder", + "displayName": "Turn off audio recording for screen recording (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultmuteaudioinscreenrecorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultmuteaudioinscreenrecorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultvideooffinrecordingpresenterview", + "displayName": "Turn off camera recording by default when recording a slide show (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultvideooffinrecordingpresenterview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_defaultvideooffinrecordingpresenterview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_broadcastslideshow", + "displayName": "Slide Show tab | Start Slide Show | Broadcast Slide Show (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_broadcastslideshow_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_broadcastslideshow_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient", + "displayName": "File tab | Share | Send Using E-mail (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview", + "displayName": "File tab | Options | Customize Ribbon | All Commands | Web Page Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlinkppt", + "displayName": "Insert tab | Links | Hyperlink (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlinkppt_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlinkppt_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolslanguage", + "displayName": "Review tab | Language | Language (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolslanguage_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolslanguage_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacrosppt", + "displayName": "Developer tab | Code | Macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacrosppt_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacrosppt_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity", + "displayName": "Developer tab | Code | Macro Security (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditorppt", + "displayName": "Developer tab | Code | Visual Basic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditorppt_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditorppt_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_webaddressppt", + "displayName": "File tab | Options | Customize Ribbon | All Commands | Address (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_webaddressppt_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_webaddressppt_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditorppt", + "displayName": "Alt+F11 (Developer | Code | Visual Basic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditorppt_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditorppt_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros", + "displayName": "Alt+F8 (Developer | Code | Macros) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlf5broadcastslideshow", + "displayName": "Ctrl+F5 (Slide Show | Start Slide Show | Broadcast Slide Show) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlf5broadcastslideshow_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlf5broadcastslideshow_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindppt", + "displayName": "Ctrl+F (Home | Editing | Find) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindppt_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindppt_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkppt", + "displayName": "Ctrl+K (Insert | Links | Hyperlink) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkppt_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkppt_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_enablerecordingribbontab", + "displayName": "Turn on recording ribbon tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_enablerecordingribbontab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_enablerecordingribbontab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_hidebuiltintablestyles", + "displayName": "Hide built in table styles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_hidebuiltintablestyles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_disableitemsinuserinterface~l_predefined_l_hidebuiltintablestyles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation", + "displayName": "Check for accessibility issues while editing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation", + "displayName": "Stop checking for alt text accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsandcolumns", + "displayName": "Stop checking for blank table rows and columns (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsandcolumns_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsandcolumns_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingformediafilescaptions", + "displayName": "Stop checking for media files which might need captions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingformediafilescaptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingformediafilescaptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingformergedandsplitcells", + "displayName": "Stop checking for merged and split cells (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingformergedandsplitcells_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingformergedandsplitcells_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingmeaningfulorderofobjectsonslides", + "displayName": "Stop checking to ensure a meaningful order of objects on slides (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingmeaningfulorderofobjectsonslides_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingmeaningfulorderofobjectsonslides_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingpresentationsallowprogrammaticaccess", + "displayName": "Stop checking to ensure presentations allow programmatic access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingpresentationsallowprogrammaticaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingpresentationsallowprogrammaticaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation", + "displayName": "Stop checking for table alt text accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation", + "displayName": "Stop checking for table header accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtextcontrast", + "displayName": "Stop checking for text color contrast (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtextcontrast_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtextcontrast_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingthatslidetitlesexist", + "displayName": "Stop checking that slide titles exist (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingthatslidetitlesexist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingthatslidetitlesexist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtoensureeachslidehasauniquetitle", + "displayName": "Stop checking to ensure each slide has a unique title (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtoensureeachslidehasauniquetitle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtoensureeachslidehasauniquetitle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful", + "displayName": "Stop checking to ensure hyperlink text is meaningful (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_defaultcustomtab", + "displayName": "Show custom templates tab by default in PowerPoint on the Office Start screen and in File | New (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_defaultcustomtab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_defaultcustomtab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_disableofficestartpowerpoint", + "displayName": "Disable the Office Start screen for PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_disableofficestartpowerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_disableofficestartpowerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_disableslideupdate", + "displayName": "Disable Slide Update (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_disableslideupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_disableslideupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_personaltemplatespath", + "displayName": "Personal templates path for PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_personaltemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_personaltemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160_l_personaltemplatespath_l_personaltemplatespath", + "displayName": "Personal templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp", + "displayName": "Turn off file synchronization via SOAP over HTTP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_miscellaneous160~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_allowautoextendfordesktop", + "displayName": "Allow PowerPoint to also automatically extend the display when presenting on a desktop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_allowautoextendfordesktop_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_allowautoextendfordesktop_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_backgroundprinting", + "displayName": "Print in background (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_backgroundprinting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_backgroundprinting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_chartreftrackingenabled", + "displayName": "Allow formatting and labels to track data points (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_chartreftrackingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_chartreftrackingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_disablesettopology", + "displayName": "Do not allow PowerPoint to automatically extend the display when presenting on a laptop or tablet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_disablesettopology_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_disablesettopology_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_displayenterprisethemes", + "displayName": "Display enterprise themes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_displayenterprisethemes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_displayenterprisethemes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_displayenterprisethemes_l_displayenterprisethemesdontshowothers", + "displayName": "Only show enterprise themes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_displayenterprisethemes_l_displayenterprisethemesdontshowothers_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_displayenterprisethemes_l_displayenterprisethemesdontshowothers_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_displayenterprisethemes_l_displayenterprisethemesgallerytitle", + "displayName": "Enterprise themes category title (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_donotdisturb", + "displayName": "Set user availablity to Do not Disturb during Slide Show (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_donotdisturb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_donotdisturb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_draganddroptextediting", + "displayName": "Allow text to be dragged and dropped (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_draganddroptextediting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_draganddroptextediting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_endwithblackslide", + "displayName": "End with black slide (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_endwithblackslide_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_endwithblackslide_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_maximumnumberofundos", + "displayName": "Maximum number of undos (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_maximumnumberofundos_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_maximumnumberofundos_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_maximumnumberofundos_l_maximumnumberofundos2", + "displayName": "Maximum number of undos (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_popupmenuonrightmouseclick", + "displayName": "Show menu on right mouse click (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_popupmenuonrightmouseclick_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_popupmenuonrightmouseclick_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_printinsertedobjectsatprinterresolution", + "displayName": "Print inserted objects at printer resolution (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_printinsertedobjectsatprinterresolution_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_printinsertedobjectsatprinterresolution_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_printtruetypefontsasgraphics", + "displayName": "Print TrueType fonts as graphics (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_printtruetypefontsasgraphics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_printtruetypefontsasgraphics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_recentlyusedfilelist", + "displayName": "Number of presentations in the Recent Presentations list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_recentlyusedfilelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_recentlyusedfilelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_recentlyusedfilelist_l_sizeofrecentlyusedfilelist", + "displayName": "Size of recently used file list (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_setnumberofplacesintherecentplaceslist", + "displayName": "Number of folders in the Recent Folders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_setnumberofplacesintherecentplaceslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_setnumberofplacesintherecentplaceslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_setnumberofplacesintherecentplaceslist_l_setnumberofplacesintherecentplaceslistspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_showpopupmenubutton", + "displayName": "Show popup toolbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_showpopupmenubutton_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_showpopupmenubutton_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_usesmartcutandpaste", + "displayName": "Use smart cut and paste (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_usesmartcutandpaste_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_usesmartcutandpaste_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_verticalruler", + "displayName": "Show vertical ruler (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_verticalruler_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_verticalruler_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_whenselectingautomaticallyselectentireword", + "displayName": "When selecting, automatically select entire word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_whenselectingautomaticallyselectentireword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_whenselectingautomaticallyselectentireword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_windowsintaskbar", + "displayName": "Show all windows in the Taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_windowsintaskbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced_l_windowsintaskbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_resizegraphicstofitbrowserwindow", + "displayName": "Resize graphics to fit browser window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_resizegraphicstofitbrowserwindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_resizegraphicstofitbrowserwindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_showslideanimationwhilebrowsing", + "displayName": "Show slide animation while browsing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_showslideanimationwhilebrowsing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_showslideanimationwhilebrowsing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation", + "displayName": "Slide navigation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_addslidenavigationcontrols", + "displayName": "Add slide navigation controls (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_addslidenavigationcontrols_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_addslidenavigationcontrols_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_colors", + "displayName": "Colors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_colors_browsercolors", + "displayName": "Browser colors", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_colors_presentationschemetextcolor", + "displayName": "Presentation colors (text color)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_colors_presentationschemeaccentcolor", + "displayName": "Presentation colors (accent color)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_colors_whitetextonblack", + "displayName": "White text on black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_advanced~l_weboptions~l_general_l_slidenavigation_l_colors_blacktextonwhite", + "displayName": "Black text on white", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionscustomizeribbon_l_displaydevelopertab", + "displayName": "Display Developer tab in the Ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionscustomizeribbon_l_displaydevelopertab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionscustomizeribbon_l_displaydevelopertab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_allowselectionfloaties", + "displayName": "Show Mini Toolbar on selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_allowselectionfloaties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_allowselectionfloaties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablegallerypreviews", + "displayName": "Enable Live Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablegallerypreviews_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablegallerypreviews_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disableincrementaldownload", + "displayName": "Wait to show users a cloud-based presentation until all content is downloaded (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disableincrementaldownload_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disableincrementaldownload_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablelivesubtitles", + "displayName": "Don’t allow the use of Live Subtitles (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablelivesubtitles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablelivesubtitles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablequickstarter", + "displayName": "Turn off QuickStarter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablequickstarter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablequickstarter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablesummaryslidesectionzoom", + "displayName": "Don’t allow Summary Zoom, Slide Zoom, and Section Zoom in a PowerPoint presentation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablesummaryslidesectionzoom_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_disablesummaryslidesectionzoom_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_promptifpowerpointisnotdefault", + "displayName": "Prompt the user if PowerPoint is not the default application for its file extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_promptifpowerpointisnotdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_promptifpowerpointisnotdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_powerpointdesigner_l_powerpointdesigneroptions", + "displayName": "[Deprecated] PowerPoint Designer Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_powerpointdesigner_l_powerpointdesigneroptions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_powerpointdesigner_l_powerpointdesigneroptions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_powerpointdesigner_l_powerpointdesigneroptions_l_powerpointdesigneroptions", + "displayName": "PowerPoint Designer options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_powerpointdesigner_l_powerpointdesigneroptions_l_powerpointdesigneroptions_0", + "displayName": "Disable PowerPoint Designer", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_powerpointdesigner_l_powerpointdesigneroptions_l_powerpointdesigneroptions_73187", + "displayName": "Enable PowerPoint Designer", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing_l_checkspellingasyoutype", + "displayName": "Check spelling as you type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing_l_checkspellingasyoutype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing_l_checkspellingasyoutype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing_l_enablecontextualspellingpolicy", + "displayName": "Check grammar with spelling (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing_l_enablecontextualspellingpolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing_l_enablecontextualspellingpolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_autofitbodytexttoplaceholder", + "displayName": "AutoFit body text to placeholder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_autofitbodytexttoplaceholder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_autofitbodytexttoplaceholder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_autofittitletexttoplaceholder", + "displayName": "AutoFit title text to placeholder (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_autofittitletexttoplaceholder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_autofittitletexttoplaceholder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_replacestraightquoteswithsmartquotes", + "displayName": "Replace straight quotes with smart quotes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_replacestraightquoteswithsmartquotes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_proofing~l_autoformatasyoutype_l_replacestraightquoteswithsmartquotes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_defaultfilelocation", + "displayName": "Default file location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_defaultfilelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_defaultfilelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_defaultfilelocation_l_defaultfilelocation0", + "displayName": "Default file location (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_disablepackageforcd", + "displayName": "Disable Package For CD (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_disablepackageforcd_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_disablepackageforcd_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_keeplastautosavedversions", + "displayName": "Keep the last AutoSaved versions of files for the next session (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_keeplastautosavedversions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_keeplastautosavedversions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_saveautorecoverinfo", + "displayName": "Save AutoRecover info (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_saveautorecoverinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_saveautorecoverinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_saveautorecoverinfo_l_autorecoversavefrequencyminutes", + "displayName": "AutoRecover save frequency (minutes): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_saveautorecoverinfo_l_autorecoversavelocation", + "displayName": "AutoRecover save location (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_saveautorecoverinfo_l_enablesaveautorecoverinfo", + "displayName": "Enable save AutoRecover info (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_saveautorecoverinfo_l_enablesaveautorecoverinfo_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_saveautorecoverinfo_l_enablesaveautorecoverinfo_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas", + "displayName": "Default file format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_l_savepowerpointfilesas1", + "displayName": "Save PowerPoint files as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_l_savepowerpointfilesas1_27", + "displayName": "PowerPoint Presentation (*.pptx)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_l_savepowerpointfilesas1_28", + "displayName": "PowerPoint Macro-Enabled Presentation (*.pptm)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_l_savepowerpointfilesas1_0", + "displayName": "PowerPoint 97-2003 Presentation (*.ppt)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_savepowerpointfilesas_l_savepowerpointfilesas1_52", + "displayName": "OpenDocument Presentation (*.odp)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_turnofffileformatcompatiblitydialogforodp", + "displayName": "Suppress file format compatibility dialog box for OpenDocument Presentation format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_turnofffileformatcompatiblitydialogforodp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_save_l_turnofffileformatcompatiblitydialogforodp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_determinewhethertoforceencryptedppt", + "displayName": "Scan encrypted macros in PowerPoint Open XML presentations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_determinewhethertoforceencryptedppt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_determinewhethertoforceencryptedppt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_determinewhethertoforceencryptedppt_l_determinewhethertoforceencryptedpptdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_determinewhethertoforceencryptedppt_l_determinewhethertoforceencryptedpptdropid_0", + "displayName": "Scan encrypted macros (default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_determinewhethertoforceencryptedppt_l_determinewhethertoforceencryptedpptdropid_1", + "displayName": "Scan if anti-virus software available", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_determinewhethertoforceencryptedppt_l_determinewhethertoforceencryptedpptdropid_2", + "displayName": "Load macros without scanning", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_downloadimages", + "displayName": "Unblock automatic download of linked images (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_downloadimages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_downloadimages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_makehiddenmarkupvisible", + "displayName": "Make hidden markup visible (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_makehiddenmarkupvisible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_makehiddenmarkupvisible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_runprograms", + "displayName": "Run Programs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_runprograms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_runprograms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_runprograms_l_empty", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_runprograms_l_empty_0", + "displayName": "disable (don't run any programs)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_runprograms_l_empty_1", + "displayName": "enable (prompt user before running)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_runprograms_l_empty_2", + "displayName": "enable all (run without prompting)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_turnofffilevalidation", + "displayName": "Turn off file validation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_turnofffilevalidation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security_l_turnofffilevalidation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_configurecngcipherchainingmode", + "displayName": "Configure CNG cipher chaining mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecbc", + "displayName": "Cipher Block Chaining (CBC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecfb", + "displayName": "Cipher Feedback (CFB)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngcipheralgorithm", + "displayName": "Set CNG cipher algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngcipheralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngcipheralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngcipheralgorithm_l_setcngcipheralgorithmid", + "displayName": "CNG cipher algorithm: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngcipherkeylength", + "displayName": "Set CNG cipher key length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngcipherkeylength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngcipherkeylength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngcipherkeylength_l_setcngcipherkeylengthspinid", + "displayName": "Cipher key length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngpasswordspincount", + "displayName": "Set CNG password spin count (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngpasswordspincount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngpasswordspincount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setcngpasswordspincount_l_setcngpasswordspincountspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setparametersforcngcontext", + "displayName": "Set parameters for CNG context (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setparametersforcngcontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setparametersforcngcontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_setparametersforcngcontext_l_setparametersforcngcontextid", + "displayName": "Parameters (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycnghashalgorithm", + "displayName": "Specify CNG hash algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycnghashalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycnghashalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha512", + "displayName": "SHA512", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm", + "displayName": "Specify CNG random number generator algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_l_specifycngrandomnumbergeneratoralgorithmid", + "displayName": "Random number generator: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycngsaltlength", + "displayName": "Specify CNG salt length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycngsaltlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycngsaltlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifycngsaltlength_l_specifycngsaltlengthspinid", + "displayName": "Number of bytes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifyencryptioncompatibility", + "displayName": "Specify encryption compatibility (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_0", + "displayName": "Use legacy format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_1", + "displayName": "Use next generation format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_2", + "displayName": "All files save with next generation", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_usenewkeyonpasswordchange", + "displayName": "Use new key on password change (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_usenewkeyonpasswordchange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_cryptography_l_usenewkeyonpasswordchange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet", + "displayName": "Block macros from running in Office files from the Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disableallapplicationextensions", + "displayName": "Disable all application add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disableallapplicationextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disableallapplicationextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned", + "displayName": "Require that application add-ins are signed by Trusted Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments", + "displayName": "Set maximum number of trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_l_setmaximumnumberoftrusteddocumentsspinid", + "displayName": "Maximum number: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve", + "displayName": "Set maximum number of trust records to preserve (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_l_setmaximumnumberoftrustrecordstopreservespinid", + "displayName": "Maximum to preserve: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject", + "displayName": "Trust access to Visual Basic Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_turnofftrusteddocuments", + "displayName": "Turn off trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_turnofftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_turnofftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork", + "displayName": "Turn off Trusted Documents on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_vbawarningspolicy", + "displayName": "VBA Macro Notification Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_vbawarningspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_vbawarningspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty3", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty3_2", + "displayName": "Disable all with notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty3_3", + "displayName": "Disable all except digitally signed macros", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty3_4", + "displayName": "Disable all without notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty3_1", + "displayName": "Enable all macros (not recommended)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_graphicfilters", + "displayName": "Graphic Filters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_graphicfilters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_graphicfilters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_graphicfilters_l_graphicfiltersdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_graphicfilters_l_graphicfiltersdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_graphicfilters_l_graphicfiltersdropid_1", + "displayName": "Save blocked", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint", + "displayName": "Legacy converters for PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_l_legacyconvertersforpowerpointdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_l_legacyconvertersforpowerpointdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_l_legacyconvertersforpowerpointdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_l_legacyconvertersforpowerpointdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_l_legacyconvertersforpowerpointdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_l_legacyconvertersforpowerpointdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforpowerpoint_l_legacyconvertersforpowerpointdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint", + "displayName": "Microsoft Office Open XML converters for PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_l_microsoftofficeopenxmlconvertersforpowerpointdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_l_microsoftofficeopenxmlconvertersforpowerpointdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_l_microsoftofficeopenxmlconvertersforpowerpointdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_l_microsoftofficeopenxmlconvertersforpowerpointdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_l_microsoftofficeopenxmlconvertersforpowerpointdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_l_microsoftofficeopenxmlconvertersforpowerpointdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_microsoftofficeopenxmlconvertersforpowerpoint_l_microsoftofficeopenxmlconvertersforpowerpointdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles", + "displayName": "OpenDocument Presentation files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_l_opendocumentpresentationfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_l_opendocumentpresentationfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_l_opendocumentpresentationfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_l_opendocumentpresentationfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_l_opendocumentpresentationfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_l_opendocumentpresentationfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumentpresentationfiles_l_opendocumentpresentationfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_outlinefiles", + "displayName": "Outline files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_outlinefiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_outlinefiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_outlinefiles_l_outlinefilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_outlinefiles_l_outlinefilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_outlinefiles_l_outlinefilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_outlinefiles_l_outlinefilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters", + "displayName": "PowerPoint beta converters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_l_powerpointbetaconvertersdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_l_powerpointbetaconvertersdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_l_powerpointbetaconvertersdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_l_powerpointbetaconvertersdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_l_powerpointbetaconvertersdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_l_powerpointbetaconvertersdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetaconverters_l_powerpointbetaconvertersdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles", + "displayName": "PowerPoint beta files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_l_powerpointbetafilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_l_powerpointbetafilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_l_powerpointbetafilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_l_powerpointbetafilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_l_powerpointbetafilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_l_powerpointbetafilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpointbetafiles_l_powerpointbetafilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior", + "displayName": "Set default file block behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_0", + "displayName": "Blocked files are not opened", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_1", + "displayName": "Blocked files open in Protected View and can not be edited", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_2", + "displayName": "Blocked files open in Protected View and can be edited", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages", + "displayName": "Web Pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview", + "displayName": "Do not open files from the Internet zone in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview", + "displayName": "Do not open files in unsafe locations in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview", + "displayName": "Open files on local Intranet UNC in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails", + "displayName": "Set document behavior if file validation fails (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid_0", + "displayName": "Block files", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid_1", + "displayName": "Open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3", + "displayName": "Checked: Allow edit. Unchecked: Do not allow edit. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook", + "displayName": "Turn off Protected View for attachments opened from Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork", + "displayName": "Allow Trusted Locations on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc", + "displayName": "Disable all trusted locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01", + "displayName": "Trusted Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_datecolon", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_descriptioncolon", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_pathcolon", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02", + "displayName": "Trusted Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders7", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders7_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders7_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_datecolon5", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_descriptioncolon6", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_pathcolon4", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03", + "displayName": "Trusted Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders11", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders11_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders11_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_datecolon9", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_descriptioncolon10", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_pathcolon8", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04", + "displayName": "Trusted Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders15", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders15_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders15_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_datecolon13", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_descriptioncolon14", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_pathcolon12", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05", + "displayName": "Trusted Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders19", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders19_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders19_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_datecolon17", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_descriptioncolon18", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_pathcolon16", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06", + "displayName": "Trusted Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders23", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders23_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders23_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_datecolon21", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_descriptioncolon22", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_pathcolon20", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07", + "displayName": "Trusted Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders27", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders27_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders27_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_datecolon25", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_descriptioncolon26", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_pathcolon24", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08", + "displayName": "Trusted Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders31", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders31_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders31_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_datecolon29", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_descriptioncolon30", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_pathcolon28", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09", + "displayName": "Trusted Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders35", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders35_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders35_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_datecolon33", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_descriptioncolon34", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_pathcolon32", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10", + "displayName": "Trusted Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders39", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders39_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders39_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_datecolon37", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_descriptioncolon38", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_pathcolon36", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11", + "displayName": "Trusted Location #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders43", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders43_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders43_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_datecolon41", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_descriptioncolon42", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_pathcolon40", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12", + "displayName": "Trusted Location #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders47", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders47_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders47_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_datecolon45", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_descriptioncolon46", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_pathcolon44", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13", + "displayName": "Trusted Location #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders51", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders51_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders51_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_datecolon49", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_descriptioncolon50", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_pathcolon48", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14", + "displayName": "Trusted Location #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders55", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders55_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders55_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_datecolon53", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_descriptioncolon54", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_pathcolon52", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15", + "displayName": "Trusted Location #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders59", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders59_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders59_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_datecolon57", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_descriptioncolon58", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_pathcolon56", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16", + "displayName": "Trusted Location #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders63", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders63_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders63_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_datecolon61", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_descriptioncolon62", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_pathcolon60", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17", + "displayName": "Trusted Location #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders67", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders67_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders67_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_datecolon65", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_descriptioncolon66", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_pathcolon64", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18", + "displayName": "Trusted Location #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders71", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders71_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders71_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_datecolon69", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_descriptioncolon70", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_pathcolon68", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19", + "displayName": "Trusted Location #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders75", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders75_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders75_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_datecolon73", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_descriptioncolon74", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_pathcolon72", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20", + "displayName": "Trusted Location #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders79", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders79_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders79_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_datecolon77", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_descriptioncolon78", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_pathcolon76", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles", + "displayName": "PowerPoint 2007 and later presentations, shows, templates, themes and add-in files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_l_powerpoint2007andlaterpresentationsshowstemplatesthemesandaddinfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_l_powerpoint2007andlaterpresentationsshowstemplatesthemesandaddinfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_l_powerpoint2007andlaterpresentationsshowstemplatesthemesandaddinfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_l_powerpoint2007andlaterpresentationsshowstemplatesthemesandaddinfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_l_powerpoint2007andlaterpresentationsshowstemplatesthemesandaddinfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_l_powerpoint2007andlaterpresentationsshowstemplatesthemesandaddinfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_options~l_security~l_trustcenter~l_fileblocksettings_l_ppt2007andlaterpresentationsshowstemplatesthemesandaddinfiles_l_powerpoint2007andlaterpresentationsshowstemplatesthemesandaddinfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles", + "displayName": "PowerPoint 97-2003 presentations, shows, templates and add-in files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_l_powerpoint972003presentationsshowstemplatesandaddinfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_l_powerpoint972003presentationsshowstemplatesandaddinfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_l_powerpoint972003presentationsshowstemplatesandaddinfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_l_powerpoint972003presentationsshowstemplatesandaddinfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_l_powerpoint972003presentationsshowstemplatesandaddinfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_l_powerpoint972003presentationsshowstemplatesandaddinfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v2~policy~l_ppt~l_powerpointoptions~l_security~l_trustcenter~l_fileblocksettings_l_powerpoint972003presentationsshowstemplatesandaddinfiles_l_powerpoint972003presentationsshowstemplatesandaddinfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v3~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingsectionname", + "displayName": "Stop checking for Section with valid name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v3~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingsectionname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v3~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckingsectionname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v3~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckinguniquesectionname", + "displayName": "Stop checking for section with unique name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v3~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckinguniquesectionname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v3~policy~l_microsoftofficepowerpoint~l_filetab~l_checkaccessibility_l_stopcheckinguniquesectionname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_ppt16v4~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_enablemoderncommentscreatenew", + "displayName": "Use modern comments in PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_ppt16v4~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_enablemoderncommentscreatenew_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_ppt16v4~policy~l_microsoftofficepowerpoint~l_powerpointoptions~l_optionsgeneral_l_enablemoderncommentscreatenew_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_printers_approvedusbprintdevicesuser", + "displayName": "List of Approved USB-connected print devices (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_printers_approvedusbprintdevicesuser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_printers_approvedusbprintdevicesuser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_printers_approvedusbprintdevicesuser_approvedusbprintdevices_list", + "displayName": "vid/pid (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_printers_enabledevicecontroluser", + "displayName": "Enable Device Control Printing Restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_printers_enabledevicecontroluser_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_printers_enabledevicecontroluser_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user", + "displayName": "Point and Print Restrictions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_nowarningnoelevationoninstall_enum", + "displayName": "When installing drivers for a new connection: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_nowarningnoelevationoninstall_enum_0", + "displayName": "Show warning and elevation prompt", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_nowarningnoelevationoninstall_enum_1", + "displayName": "Show warning only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_nowarningnoelevationonupdate_enum", + "displayName": "When updating drivers for an existing connection: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_nowarningnoelevationonupdate_enum_0", + "displayName": "Show warning and elevation prompt", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_nowarningnoelevationonupdate_enum_1", + "displayName": "Show warning only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_trustedforest_chk", + "displayName": "Users can only point and print to machines in their forest (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_trustedforest_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_trustedforest_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_trustedservers_chk", + "displayName": "Users can only point and print to these servers: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_trustedservers_chk_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_trustedservers_chk_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_printers_pointandprintrestrictions_user_pointandprint_trustedservers_edit", + "displayName": "Enter fully qualified server names separated by semicolons (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_privacy_disableprivacyexperience", + "displayName": "Disable Privacy Experience (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_privacy_disableprivacyexperience_0", + "displayName": "Disabled", + "description": "Allow the 'choose privacy settings for your device' screen for a new user during their first logon or when an existing user logs in for the first time after an upgrade." + }, + { + "id": "user_vendor_msft_policy_config_privacy_disableprivacyexperience_1", + "displayName": "Enabled", + "description": "Do not allow the 'choose privacy settings for your device' screen when a new user logs in or an existing user logs in for the first time after an upgrade." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_defaultcustomtab", + "displayName": "Show custom templates tab by default in Project on the Office Start screen and in File | New (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_defaultcustomtab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_defaultcustomtab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_disableofficestartproject", + "displayName": "Disable the Office Start screen for Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_disableofficestartproject_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_disableofficestartproject_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_mrutemplatelistlength", + "displayName": "Most Recently Used Template List Length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_mrutemplatelistlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_mrutemplatelistlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_mrutemplatelistlength_l_mrutemplatelistlength39", + "displayName": "Most Recently Used Template List Length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_personaltemplatespath", + "displayName": "Personal templates path for Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_personaltemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_personaltemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_miscellaneous_l_personaltemplatespath_l_personaltemplatespath", + "displayName": "Personal templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_optionscustomizeribbon_l_displaydevelopertab", + "displayName": "Display Developer tab in the Ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_optionscustomizeribbon_l_displaydevelopertab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_optionscustomizeribbon_l_displaydevelopertab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcproject_l_pjautocalc", + "displayName": "Automatic Calculation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcproject_l_pjautocalc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcproject_l_pjautocalc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcproject_l_pjcalcall", + "displayName": "Calculate all open projects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcproject_l_pjcalcall_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcproject_l_pjcalcall_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjactualcostscalc", + "displayName": "Actual costs are always calculated by Microsoft Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjactualcostscalc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjactualcostscalc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjandmovecompleted", + "displayName": "And move end of completed parts forward to status date (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjandmovecompleted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjandmovecompleted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjandmoveremaining", + "displayName": "And move start of remaining parts back to status date (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjandmoveremaining_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjandmoveremaining_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjcalcmultiplecriticalpaths", + "displayName": "Calculate multiple critical paths (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjcalcmultiplecriticalpaths_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjcalcmultiplecriticalpaths_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjcritifless", + "displayName": "Tasks are critical if slack is less than or equal to (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjcritifless_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjcritifless_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjcritifless_l_pjcritifless29", + "displayName": "Tasks are critical if slack is less than or equal to (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjdefaultfixedaccrual", + "displayName": "Default fixed costs accrual (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjdefaultfixedaccrual_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjdefaultfixedaccrual_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjdefaultfixedaccrual_l_pjdefaultfixedaccrual28", + "displayName": "Default fixed costs accrual (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjdefaultfixedaccrual_l_pjdefaultfixedaccrual28_1", + "displayName": "Start", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjdefaultfixedaccrual_l_pjdefaultfixedaccrual28_3", + "displayName": "Prorated", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjdefaultfixedaccrual_l_pjdefaultfixedaccrual28_2", + "displayName": "End", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjeditstototaltask", + "displayName": "Edits to total task % complete will be spread to the status date (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjeditstototaltask_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjeditstototaltask_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjedittototalspread", + "displayName": "Edits to total actual cost will be spread to the status date (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjedittototalspread_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjedittototalspread_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjinsertedprojects", + "displayName": "Inserted projects are calculated like summary tasks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjinsertedprojects_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjinsertedprojects_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjmovecompleted", + "displayName": "Move end of completed parts after status date back to status date (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjmovecompleted_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjmovecompleted_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjmoveremaining", + "displayName": "Move start of remaining parts before status date forward to status date (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjmoveremaining_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjmoveremaining_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjupdatingtask", + "displayName": "Updating task status updates resource status (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjupdatingtask_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile_l_pjupdatingtask_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline", + "displayName": "Baseline for Earned Value calculations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27", + "displayName": "Baseline for Earned Value calculations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_1", + "displayName": "Baseline", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_12", + "displayName": "Baseline 1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_13", + "displayName": "Baseline 2", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_14", + "displayName": "Baseline 3", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_15", + "displayName": "Baseline 4", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_16", + "displayName": "Baseline 5", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_17", + "displayName": "Baseline 6", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_18", + "displayName": "Baseline 7", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_19", + "displayName": "Baseline 8", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_20", + "displayName": "Baseline 9", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevbaseline_l_pjevbaseline27_21", + "displayName": "Baseline 10", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevmethod", + "displayName": "Default task Earned Value method (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevmethod_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevmethod_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevmethod_l_pjevmethod26", + "displayName": "Default task Earned Value method (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevmethod_l_pjevmethod26_0", + "displayName": "% Complete", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalculation~l_pjcalcprojectfile~l_pjev_l_pjevmethod_l_pjevmethod26_1", + "displayName": "Physical % Complete", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdayspermonth", + "displayName": "Days per month (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdayspermonth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdayspermonth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdayspermonth_l_pjdayspermonth20", + "displayName": "Days per month (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdefaultendtime", + "displayName": "Default end time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdefaultendtime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdefaultendtime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdefaultendtime_l_pjdefaultendtime2", + "displayName": "Default end time (Minutes after 12am * 10) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdefaultstarttime", + "displayName": "Default start time (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdefaultstarttime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdefaultstarttime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjdefaultstarttime_l_pjdefaultstarttime2", + "displayName": "Default start time (Minutes after 12am * 10) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear", + "displayName": "Fiscal year starts in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17", + "displayName": "Fiscal year starts in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_1", + "displayName": "January", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_2", + "displayName": "February", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_3", + "displayName": "March", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_4", + "displayName": "April", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_5", + "displayName": "May", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_6", + "displayName": "June", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_7", + "displayName": "July", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_8", + "displayName": "August", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_9", + "displayName": "September", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_10", + "displayName": "October", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_11", + "displayName": "November", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjfiscalyear_l_pjfiscalyear17_12", + "displayName": "December", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjhoursperday", + "displayName": "Hours per day (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjhoursperday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjhoursperday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjhoursperday_l_pjhoursperday18", + "displayName": "Hours per day (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjhoursperweek", + "displayName": "Hours per week (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjhoursperweek_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjhoursperweek_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjhoursperweek_l_pjhoursperweek19", + "displayName": "Hours per week (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjstartingyear", + "displayName": "Use starting year for FY numbering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjstartingyear_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjstartingyear_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts", + "displayName": "Week starts on (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_l_pjweekstarts16", + "displayName": "Week starts on (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_l_pjweekstarts16_6", + "displayName": "Saturday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_l_pjweekstarts16_0", + "displayName": "Sunday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_l_pjweekstarts16_1", + "displayName": "Monday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_l_pjweekstarts16_2", + "displayName": "Tuesday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_l_pjweekstarts16_3", + "displayName": "Wednesday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_l_pjweekstarts16_4", + "displayName": "Thursday", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjcalendar_l_pjweekstarts_l_pjweekstarts16_5", + "displayName": "Friday", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjallowcelldragdrop", + "displayName": "Allow cell drag and drop (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjallowcelldragdrop_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjallowcelldragdrop_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjasktoupdate", + "displayName": "Ask to update automatic links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjasktoupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjasktoupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjeditdirectlycell", + "displayName": "Edit directly in cell (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjeditdirectlycell_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjeditdirectlycell_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjmoveafterenter", + "displayName": "Move selection after enter (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjmoveafterenter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjeditoptionsproj_l_pjmoveafterenter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour", + "displayName": "Followed hyperlink color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15", + "displayName": "Followed hyperlink color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_16", + "displayName": "Automatic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_0", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_1", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_2", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_3", + "displayName": "Lime", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_4", + "displayName": "Aqua", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_5", + "displayName": "Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_6", + "displayName": "Fuchsia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_7", + "displayName": "White", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_8", + "displayName": "Maroon", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_9", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_10", + "displayName": "Olive", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_11", + "displayName": "Navy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_12", + "displayName": "Purple", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_13", + "displayName": "Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_14", + "displayName": "Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjfollowedlinkcolour_l_pjfollowedlinkcolour15_15", + "displayName": "Silver", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour", + "displayName": "Hyperlink color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14", + "displayName": "Hyperlink color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_16", + "displayName": "Automatic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_0", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_1", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_2", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_3", + "displayName": "Lime", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_4", + "displayName": "Aqua", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_5", + "displayName": "Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_6", + "displayName": "Fuchsia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_7", + "displayName": "White", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_8", + "displayName": "Maroon", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_9", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_10", + "displayName": "Olive", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_11", + "displayName": "Navy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_12", + "displayName": "Purple", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_13", + "displayName": "Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_14", + "displayName": "Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjhyperlinkcolour_l_pjhyperlinkcolour14_15", + "displayName": "Silver", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjunderlinelinks", + "displayName": "Underline hyperlinks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjunderlinelinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjhyperlinkappear_l_pjunderlinelinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjaddspace", + "displayName": "Add space before label (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjaddspace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjaddspace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays", + "displayName": "Days (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays_l_pjdays10", + "displayName": "Days (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays_l_pjdays10_0", + "displayName": "d", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays_l_pjdays10_1", + "displayName": "dy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays_l_pjdays10_2", + "displayName": "day", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays_l_pjdays10_3", + "displayName": "\r\n ", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjdays_l_pjdays10_4", + "displayName": "\r\n ", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours", + "displayName": "Hours (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours_l_pjhours9", + "displayName": "Hours (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours_l_pjhours9_0", + "displayName": "h", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours_l_pjhours9_1", + "displayName": "hr", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours_l_pjhours9_2", + "displayName": "hour", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours_l_pjhours9_3", + "displayName": "\r\n ", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjhours_l_pjhours9_4", + "displayName": "\r\n ", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes", + "displayName": "Minutes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes_l_pjminutes8", + "displayName": "Minutes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes_l_pjminutes8_0", + "displayName": "m", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes_l_pjminutes8_1", + "displayName": "min", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes_l_pjminutes8_2", + "displayName": "minute", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes_l_pjminutes8_3", + "displayName": "\r\n ", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjminutes_l_pjminutes8_4", + "displayName": "\r\n ", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths", + "displayName": "Months (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths_l_pjmonths12", + "displayName": "Months (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths_l_pjmonths12_0", + "displayName": "mo", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths_l_pjmonths12_1", + "displayName": "mon", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths_l_pjmonths12_2", + "displayName": "month", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths_l_pjmonths12_3", + "displayName": "\r\n ", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjmonths_l_pjmonths12_4", + "displayName": "\r\n ", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks", + "displayName": "Weeks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks_l_pjweeks11", + "displayName": "Weeks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks_l_pjweeks11_0", + "displayName": "w", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks_l_pjweeks11_1", + "displayName": "wk", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks_l_pjweeks11_2", + "displayName": "week", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks_l_pjweeks11_3", + "displayName": "\r\n ", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjweeks_l_pjweeks11_4", + "displayName": "\r\n ", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears", + "displayName": "Years (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears_l_pjyears13", + "displayName": "Years (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears_l_pjyears13_0", + "displayName": "y", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears_l_pjyears13_1", + "displayName": "yr", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears_l_pjyears13_2", + "displayName": "year", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears_l_pjyears13_3", + "displayName": "\r\n ", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjedit~l_pjviewoptions_l_pjyears_l_pjyears13_4", + "displayName": "\r\n ", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral_l_undolevels", + "displayName": "Undo Levels (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral_l_undolevels_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral_l_undolevels_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral_l_undolevels_l_undolevels5", + "displayName": "Undo Levels (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjautoaddnew", + "displayName": "Automatically add new resources and tasks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjautoaddnew_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjautoaddnew_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjdefaultotime", + "displayName": "Default overtime rate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjdefaultotime_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjdefaultotime_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjdefaultotime_l_pjdefaultotime7", + "displayName": "Default overtime rate (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjdefaultstdrate", + "displayName": "Default standard rate (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjdefaultstdrate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjdefaultstdrate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneraloptions_l_pjdefaultstdrate_l_pjdefaultstdrate6", + "displayName": "Default standard rate (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjopenlast", + "displayName": "Open last file on startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjopenlast_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjopenlast_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjpromptforinfo", + "displayName": "Prompt for project info for new projects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjpromptforinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjpromptforinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjrecentlyused", + "displayName": "Number of projects in the Recent Projects list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjrecentlyused_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjrecentlyused_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjrecentlyused_l_pjmrut", + "displayName": "Number of entries: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjsetautofilter", + "displayName": "Set AutoFilter on for new projects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjsetautofilter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_pjsetautofilter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_setnumberofplacesintherecentplaceslist", + "displayName": "Number of folders in the Recent Folders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_setnumberofplacesintherecentplaceslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_setnumberofplacesintherecentplaceslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjgeneral~l_pjgeneralprojoptions_l_setnumberofplacesintherecentplaceslist_l_setnumberofplacesintherecentplaceslistspinid", + "displayName": "Number of folders: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface_l_disableinternalidmatching", + "displayName": "Disable Internal ID Matching (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface_l_disableinternalidmatching_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface_l_disableinternalidmatching_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettings_l_pjgbuidisplaytoggle", + "displayName": "Display Project Guide (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettings_l_pjgbuidisplaytoggle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettings_l_pjgbuidisplaytoggle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultstartpage", + "displayName": "Project Guide Functionality and Layout page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultstartpage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultstartpage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultstartpage_l_pjgbuidefaultpageurl", + "displayName": "URL: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultstartpage_l_pjusedefaultstartpage34", + "displayName": "Project Guide Functionality and Layout page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultstartpage_l_pjusedefaultstartpage34_1", + "displayName": "Use Microsoft Project's Default page", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultstartpage_l_pjusedefaultstartpage34_0", + "displayName": "Use a custom page", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultxmlschema", + "displayName": "Project Guide Content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultxmlschema_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultxmlschema_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultxmlschema_l_pjgbuixmlschemapath", + "displayName": "XML file for custom content: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultxmlschema_l_pjusedefaultxmlschema35", + "displayName": "Project Guide Content (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultxmlschema_l_pjusedefaultxmlschema35_1", + "displayName": "Use Microsoft Project's default content", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjpgsettingsforproject1_l_pjusedefaultxmlschema_l_pjusedefaultxmlschema35_0", + "displayName": "Use custom content", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjchangedurationooui", + "displayName": "Edits to work, units or duration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjchangedurationooui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjchangedurationooui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjdeletenameooui", + "displayName": "Deletions in the Name column (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjdeletenameooui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjdeletenameooui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjenterdateooui", + "displayName": "Edits to start and finish dates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjenterdateooui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjenterdateooui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjresourceassignooui", + "displayName": "Resource Assigments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjresourceassignooui_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjinterface~l_pjshowindicators_l_pjresourceassignooui_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave_l_pjfiletype", + "displayName": "Save Microsoft Project files as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave_l_pjfiletype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave_l_pjfiletype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave_l_pjfiletype_l_pjfiletype30", + "displayName": "Save Microsoft Project files as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave_l_pjfiletype_l_pjfiletype30_msproject.mpp.12", + "displayName": "Project (*.mpp)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave_l_pjfiletype_l_pjfiletype30_msproject.mpt.12", + "displayName": "Template (*.mpt)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave_l_pjfiletype_l_pjfiletype30_msproject.mpp.9", + "displayName": "Project 2000-2003 (*.mpp)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjautomaticsaveoption", + "displayName": "Save Active Project only (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjautomaticsaveoption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjautomaticsaveoption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjautomaticsaveprompt", + "displayName": "Prompt before saving (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjautomaticsaveprompt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjautomaticsaveprompt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjsaveevery", + "displayName": "Auto Save every (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjsaveevery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjsaveevery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjsaveinterval", + "displayName": "Save Interval (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjsaveinterval_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjsaveinterval_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjautosave_l_pjsaveinterval_l_pjsaveinterval33", + "displayName": "Save Interval (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjcache_l_cachelocation", + "displayName": "Local Project Cache Location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjcache_l_cachelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjcache_l_cachelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjcache_l_cachelocation_l_cachelocation37", + "displayName": "Local Project Cache Location (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjcache_l_cachesizeperprofile", + "displayName": "Local Project Cache Size Limit in MB (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjcache_l_cachesizeperprofile_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjcache_l_cachesizeperprofile_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjcache_l_cachesizeperprofile_l_cachesizeperprofile38", + "displayName": "Local Project Cache Size Limit in MB (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjfilelocations_l_pjfilelocprojects", + "displayName": "Projects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjfilelocations_l_pjfilelocprojects_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjfilelocations_l_pjfilelocprojects_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjfilelocations_l_pjfilelocprojects_l_pjfilelocprojects31", + "displayName": "Projects (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjfilelocations_l_pjfilelocusertemplates", + "displayName": "User Templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjfilelocations_l_pjfilelocusertemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjfilelocations_l_pjfilelocusertemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjsave~l_pjfilelocations_l_pjfilelocusertemplates_l_pjfilelocusertemplates32", + "displayName": "User Templates (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_keeptasksonnearestworkingday", + "displayName": "Keep tasks on nearest working day (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_keeptasksonnearestworkingday_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_keeptasksonnearestworkingday_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjautolinktasks", + "displayName": "Autolink inserted or moved tasks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjautolinktasks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjautolinktasks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdefaulttasktypes", + "displayName": "Default task type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdefaulttasktypes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdefaulttasktypes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdefaulttasktypes_l_pjdefaulttasktypes25", + "displayName": "Default task type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdefaulttasktypes_l_pjdefaulttasktypes25_1", + "displayName": "Fixed Duration", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdefaulttasktypes_l_pjdefaulttasktypes25_0", + "displayName": "Fixed Units", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdefaulttasktypes_l_pjdefaulttasktypes25_2", + "displayName": "Fixed Work", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits", + "displayName": "Duration is entered in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits_l_pjdurationunits23", + "displayName": "Duration is entered in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits_l_pjdurationunits23_3", + "displayName": "Minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits_l_pjdurationunits23_5", + "displayName": "Hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits_l_pjdurationunits23_7", + "displayName": "Days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits_l_pjdurationunits23_9", + "displayName": "Weeks", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjdurationunits_l_pjdurationunits23_11", + "displayName": "Months", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasks", + "displayName": "New tasks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasks_l_pjnewtasks22", + "displayName": "New tasks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasks_l_pjnewtasks22_0", + "displayName": "Start on Project Start Date", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasks_l_pjnewtasks22_1", + "displayName": "Start on Current Date", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtaskseffort", + "displayName": "New tasks are effort driven (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtaskseffort_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtaskseffort_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasksestdurations", + "displayName": "New tasks have estimated durations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasksestdurations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjnewtasksestdurations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjshowestimateddurations", + "displayName": "Show that tasks have estimated durations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjshowestimateddurations_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjshowestimateddurations_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjsplitinprogresstasks", + "displayName": "Split in-progress tasks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjsplitinprogresstasks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjsplitinprogresstasks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjtaskshonorconstraints", + "displayName": "Tasks will always honor their constraint dates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjtaskshonorconstraints_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjtaskshonorconstraints_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits", + "displayName": "Work is entered in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits_l_pjworkunits24", + "displayName": "Work is entered in (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits_l_pjworkunits24_3", + "displayName": "Minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits_l_pjworkunits24_5", + "displayName": "Hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits_l_pjworkunits24_7", + "displayName": "Days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits_l_pjworkunits24_9", + "displayName": "Weeks", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_pjworkunits_l_pjworkunits24_11", + "displayName": "Months", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_setdefaultstartdatefornewtasks", + "displayName": "Set default start date for new tasks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_setdefaultstartdatefornewtasks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_setdefaultstartdatefornewtasks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_setnewtaskstobeautomaticallyscheduled", + "displayName": "Set new tasks to be automatically scheduled (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_setnewtaskstobeautomaticallyscheduled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_setnewtaskstobeautomaticallyscheduled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_showtasksschedulesuggestions", + "displayName": "Show tasks schedule suggestions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_showtasksschedulesuggestions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_showtasksschedulesuggestions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_showtasksschedulewarnings", + "displayName": "Show tasks schedule warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_showtasksschedulewarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_showtasksschedulewarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_taskscanbemadeinactive", + "displayName": "Tasks can be made inactive (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_taskscanbemadeinactive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_taskscanbemadeinactive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_updatemanuallyscheduledtaskswheneditinglinks", + "displayName": "Update manually scheduled tasks when editing links (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_updatemanuallyscheduledtaskswheneditinglinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjscheddoc_l_updatemanuallyscheduledtaskswheneditinglinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjassignmentunits", + "displayName": "Show assignment units as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjassignmentunits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjassignmentunits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjassignmentunits_l_pjassignmentunits21", + "displayName": "Show assignment units as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjassignmentunits_l_pjassignmentunits21_0", + "displayName": "Percentage", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjassignmentunits_l_pjassignmentunits21_1", + "displayName": "Decimal", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjshowschedmessage", + "displayName": "Show scheduling messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjshowschedmessage_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjschedule~l_pjschedproj_l_pjshowschedmessage_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency", + "displayName": "Default Project Currency (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4", + "displayName": "Default Project Currency (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_aed", + "displayName": "United Arab Emirates, Dirhams", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_afa", + "displayName": "Afghanistan, Afghanis", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_all", + "displayName": "Albania, Leke", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_amd", + "displayName": "Armenia, Drams", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_aoa", + "displayName": "Angola, Kwanza", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ars", + "displayName": "Argentina, Pesos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_aud", + "displayName": "Australia, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_awg", + "displayName": "Aruba, Guilders (also called Florins)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_azm", + "displayName": "Azerbaijan, Manats", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bam", + "displayName": "Bosnia and Herzegovina, Convertible Marka", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bbd", + "displayName": "Barbados, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bdt", + "displayName": "Bangladesh, Taka", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bgn", + "displayName": "Bulgaria, Leva", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bhd", + "displayName": "Bahrain, Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bif", + "displayName": "Burundi, Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bmd", + "displayName": "Bermuda, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bnd", + "displayName": "Brunei Darussalam, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bob", + "displayName": "Bolivia, Bolivianos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_brl", + "displayName": "Brazil, Brazil Real", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bsd", + "displayName": "Bahamas, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_btn", + "displayName": "Bhutan, Ngultrum", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bwp", + "displayName": "Botswana, Pulas", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_byr", + "displayName": "Belarus, Rubles", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_bzd", + "displayName": "Belize, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_cad", + "displayName": "Canada, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_cdf", + "displayName": "Congo (DRC)//Kinshasa, Congolese Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_chf", + "displayName": "Switzerland, Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_clp", + "displayName": "Chile, Pesos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_cny", + "displayName": "China, Yuan Renminbi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_cop", + "displayName": "Colombia, Pesos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_crc", + "displayName": "Costa Rica, Colones", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_csd", + "displayName": "Serbia, Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_cup", + "displayName": "Cuba, Pesos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_cve", + "displayName": "Cabo Verde, Escudos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_czk", + "displayName": "Czech Republic, Koruny", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_djf", + "displayName": "Djibouti, Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_dkk", + "displayName": "Denmark, Kroner", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_dop", + "displayName": "Dominican Republic, Pesos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_dzd", + "displayName": "Algeria, Algeria Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_egp", + "displayName": "Egypt, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ern", + "displayName": "Eritrea, Nakfa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_etb", + "displayName": "Ethiopia, Birr", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_eur", + "displayName": "Euro Member Countries, Euro", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_fjd", + "displayName": "Fiji, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_fkp", + "displayName": "Falkland (Malvinas) Islands, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_gbp", + "displayName": "United Kingdom, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_gel", + "displayName": "Georgia, Lari", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ggp", + "displayName": "Guernsey, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ghc", + "displayName": "Ghana, Cedis", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_gip", + "displayName": "Gibraltar, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_gmd", + "displayName": "Gambia, Dalasi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_gnf", + "displayName": "Guinea, Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_gtq", + "displayName": "Guatemala, Quetzales", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_gyd", + "displayName": "Guyana, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_hkd", + "displayName": "Hong Kong, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_hnl", + "displayName": "Honduras, Lempiras", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_hrk", + "displayName": "Croatia, Kuna", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_htg", + "displayName": "Haiti, Gourdes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_huf", + "displayName": "Hungary, Forint", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_idr", + "displayName": "Indonesia, Rupiahs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ils", + "displayName": "Israel, New Shekels", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_imp", + "displayName": "Isle of Man, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_inr", + "displayName": "India, Rupees", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_iqd", + "displayName": "Iraq, Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_irr", + "displayName": "Iran, Rials", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_isk", + "displayName": "Iceland, Kronur", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_jep", + "displayName": "Jersey, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_jmd", + "displayName": "Jamaica, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_jod", + "displayName": "Jordan, Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_jpy", + "displayName": "Japan, Yen", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_kes", + "displayName": "Kenya, Shillings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_kgs", + "displayName": "Kyrgyzstan, Soms", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_khr", + "displayName": "Cambodia, Riels", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_kmf", + "displayName": "Comoros, Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_kpw", + "displayName": "North Korea, Won", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_krw", + "displayName": "Korea, Won", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_kwd", + "displayName": "Kuwait, Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_kyd", + "displayName": "Cayman Islands, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_kzt", + "displayName": "Kazakhstan, Tenge", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_lak", + "displayName": "Laos, Kips", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_lbp", + "displayName": "Lebanon, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_lkr", + "displayName": "Sri Lanka, Rupees", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_lrd", + "displayName": "Liberia, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_lsl", + "displayName": "Lesotho, Maloti", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ltl", + "displayName": "Lithuania, Litai", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_lyd", + "displayName": "Libya, Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mad", + "displayName": "Morocco, Dirhams", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mdl", + "displayName": "Moldova, Lei", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mga", + "displayName": "Madagascar, Ariary", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mkd", + "displayName": "Macedonia FYRO, Denars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mmk", + "displayName": "Myanmar (Burma), Kyats", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mnt", + "displayName": "Mongolia, Tugriks", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mop", + "displayName": "Macao, Patacas", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mro", + "displayName": "Mauritania, Ouguiyas", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mur", + "displayName": "Mauritius, Rupees", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mvr", + "displayName": "Maldives (Maldive Islands), Rufiyaa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mwk", + "displayName": "Malawi, Kwachas", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mxn", + "displayName": "Mexico, Pesos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_myr", + "displayName": "Malaysia, Ringgits", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_mzm", + "displayName": "Mozambique, Meticais", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_nad", + "displayName": "Namibia, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ngn", + "displayName": "Nigeria, Nairas", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_nio", + "displayName": "Nicaragua, Cordobas", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_nok", + "displayName": "Norway, Krone", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_npr", + "displayName": "Nepal, Nepal Rupees", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_nzd", + "displayName": "New Zealand, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_omr", + "displayName": "Oman, Rials", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_pab", + "displayName": "Panama, Balboa", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_pen", + "displayName": "Peru, Nuevos Soles", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_pgk", + "displayName": "Papua New Guinea, Kina", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_php", + "displayName": "Philippines, Pesos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_pkr", + "displayName": "Pakistan, Rupees", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_pln", + "displayName": "Poland, Zlotych", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_pyg", + "displayName": "Paraguay, Guarani", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_qar", + "displayName": "Qatar, Rials", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ron", + "displayName": "Romania, New Lei", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_rub", + "displayName": "Russia, Rubles", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_rwf", + "displayName": "Rwanda, Rwanda Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_sar", + "displayName": "Saudi Arabia, Riyals", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_sbd", + "displayName": "Solomon Islands, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_scr", + "displayName": "Seychelles, Rupees", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_sdd", + "displayName": "Sudan, Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_sek", + "displayName": "Sweden, Kronor", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_sgd", + "displayName": "Singapore, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_shp", + "displayName": "Saint Helena, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_sll", + "displayName": "Sierra Leone, Leones", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_sos", + "displayName": "Somalia, Shillings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_spl", + "displayName": "Seborga, Luigini", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_srd", + "displayName": "Suriname, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_std", + "displayName": "São Tome and Principe, Dobras", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_svc", + "displayName": "El Salvador, Colones", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_syp", + "displayName": "Syria, Pounds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_szl", + "displayName": "Swaziland, Emalangeni", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_thb", + "displayName": "Thailand, Baht", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_tjs", + "displayName": "Tajikistan, Somoni", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_tmm", + "displayName": "Turkmenistan, Manats", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_tnd", + "displayName": "Tunisia, Dinars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_top", + "displayName": "Tonga, Pa'anga", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_try", + "displayName": "Turkey, Lira", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ttd", + "displayName": "Trinidad and Tobago, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_tvd", + "displayName": "Tuvalu, Tuvalu Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_twd", + "displayName": "Taiwan, New Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_tzs", + "displayName": "Tanzania, Shillings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_uah", + "displayName": "Ukraine, Hryvnia", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ugx", + "displayName": "Uganda, Shillings", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_usd", + "displayName": "United States of America, Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_uyu", + "displayName": "Uruguay, Pesos", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_uzs", + "displayName": "Uzbekistan, Sums", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_ves", + "displayName": "Venezuela, Bolívar", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_vnd", + "displayName": "Vietnam, Dong", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_vuv", + "displayName": "Vanuatu, Vatu", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_wst", + "displayName": "Samoa, Tala", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xaf", + "displayName": "Communauté Financière Africaine BEAC, Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xag", + "displayName": "Silver, Ounces", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xau", + "displayName": "Gold, Ounces", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xcd", + "displayName": "East Caribbean Dollars", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xdr", + "displayName": "International Monetary Fund (IMF) Special Drawing Rights", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xof", + "displayName": "Communauté Financière Africaine BCEAO, Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xpd", + "displayName": "Palladium Ounces", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xpf", + "displayName": "Comptoirs Français du Pacifique Francs", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_xpt", + "displayName": "Platinum, Ounces", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_yer", + "displayName": "Yemen, Rials", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_zar", + "displayName": "South Africa, Rand", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_zmk", + "displayName": "Zambia, Kwacha", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_defaultprojectcurrency_l_defaultprojectcurrency4_zwd", + "displayName": "Zimbabwe, Zimbabwe Dollars", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat", + "displayName": "Date Format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3", + "displayName": "Date Format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_0", + "displayName": "1/31/00 12:33 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_1", + "displayName": "1/31/00", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_20", + "displayName": "1/31/2000", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_2", + "displayName": "January 31, 2000 12:33 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_3", + "displayName": "January 31, 2000", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_4", + "displayName": "Jan 31 12:33 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_5", + "displayName": "Jan 31 '00", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_6", + "displayName": "January 31", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_7", + "displayName": "Jan 31", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_8", + "displayName": "Mon 1/31/00 12:33 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_9", + "displayName": "Mon 1/31/00", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_10", + "displayName": "Mon Jan 31, '00", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_11", + "displayName": "Mon 12:33 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_15", + "displayName": "Mon Jan 31", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_16", + "displayName": "Mon 1/31", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_17", + "displayName": "Mon 31", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_12", + "displayName": "1/31", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_13", + "displayName": "31", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_14", + "displayName": "12:33 PM", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_18", + "displayName": "W1/1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdateformat_l_pjdateformat3_19", + "displayName": "W1/1/00 12:33 PM", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview", + "displayName": "Default View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2", + "displayName": "Default View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_bar rollup", + "displayName": "Bar Rollup", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_calendar", + "displayName": "Calendar", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_descriptive network diagram", + "displayName": "Descriptive Network Diagram", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_detail gantt", + "displayName": "Detail Gantt", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_gantt chart", + "displayName": "Gantt Chart", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_leveling gantt", + "displayName": "Leveling Gantt", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_milestone date rollup", + "displayName": "Milestone Date Rollup", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_milestone rollup", + "displayName": "Milestone Rollup", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_network diagram", + "displayName": "Network Diagram", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_relationship diagram", + "displayName": "Relationship Diagram", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_resource allocation", + "displayName": "Resource Allocation", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_resource form", + "displayName": "Resource Form", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_resource graph", + "displayName": "Resource Graph", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_resource name form", + "displayName": "Resource Names Form", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_resource sheet", + "displayName": "Resource Sheet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_resource usage", + "displayName": "Resource Usage", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_task details form", + "displayName": "Task Details Form", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_task entry", + "displayName": "Task Entry", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_task form", + "displayName": "Task Form", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_task name form", + "displayName": "Task Name Form", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_task sheet", + "displayName": "Task Sheet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_task usage", + "displayName": "Task Usage", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_pjdefaultview_l_pjdefaultview2_tracking gantt", + "displayName": "Tracking Gantt", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_projectsummarytask", + "displayName": "Project Summary Task (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_projectsummarytask_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview_l_projectsummarytask_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_calendartype_l_calendartype0", + "displayName": "Calendar Type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_calendartype_l_calendartype0_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_calendartype_l_calendartype0_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_calendartype_l_calendartype0_l_calendartype1", + "displayName": "Calendar Type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_calendartype_l_calendartype0_l_calendartype1_1", + "displayName": "Gregorian Calendar", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_calendartype_l_calendartype0_l_calendartype1_6", + "displayName": "Hijri Calendar", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_calendartype_l_calendartype0_l_calendartype1_7", + "displayName": "Thai Buddhist", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_automaticallyaddnewitemstotheglobalproject", + "displayName": "Automatically add new items to the global project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_automaticallyaddnewitemstotheglobalproject_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_automaticallyaddnewitemstotheglobalproject_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjentrybar", + "displayName": "Entry Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjentrybar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjentrybar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjolelinks", + "displayName": "OLE Link Indicators (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjolelinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjolelinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjprojectscreentips", + "displayName": "Project Screentips (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjprojectscreentips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjprojectscreentips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjscrollbar", + "displayName": "Scroll Bars (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjscrollbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjscrollbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjstatusbar", + "displayName": "Status Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjstatusbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjstatusbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjwindowsinstatusbar", + "displayName": "Windows in Taskbar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjwindowsinstatusbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_pjview~l_pjshow_l_pjwindowsinstatusbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_enableuntrustedintranetzoneaccesstoprojectserver", + "displayName": "Enable untrusted intranet zone access to Project server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_enableuntrustedintranetzoneaccesstoprojectserver_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_enableuntrustedintranetzoneaccesstoprojectserver_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_legacyfileformats", + "displayName": "Previous-version file formats (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_legacyfileformats_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_legacyfileformats_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_legacyfileformats_l_empty", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_legacyfileformats_l_empty_0", + "displayName": "Do not open or save", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_legacyfileformats_l_empty_1", + "displayName": "Prompt when opening and saving", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security_l_legacyfileformats_l_empty_2", + "displayName": "Allow opening and saving", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_configurecngcipherchainingmode", + "displayName": "Configure CNG cipher chaining mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecbc", + "displayName": "Cipher Block Chaining (CBC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecfb", + "displayName": "Cipher Feedback (CFB)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngcipheralgorithm", + "displayName": "Set CNG cipher algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngcipheralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngcipheralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngcipheralgorithm_l_setcngcipheralgorithmid", + "displayName": "CNG cipher algorithm: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngcipherkeylength", + "displayName": "Set CNG cipher key length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngcipherkeylength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngcipherkeylength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngcipherkeylength_l_setcngcipherkeylengthspinid", + "displayName": "Cipher key length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngpasswordspincount", + "displayName": "Set CNG password spin count (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngpasswordspincount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngpasswordspincount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setcngpasswordspincount_l_setcngpasswordspincountspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setparametersforcngcontext", + "displayName": "Set parameters for CNG context (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setparametersforcngcontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setparametersforcngcontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_setparametersforcngcontext_l_setparametersforcngcontextid", + "displayName": "Parameters (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycnghashalgorithm", + "displayName": "Specify CNG hash algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycnghashalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycnghashalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha512", + "displayName": "SHA512", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm", + "displayName": "Specify CNG random number generator algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_l_specifycngrandomnumbergeneratoralgorithmid", + "displayName": "Random number generator: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycngsaltlength", + "displayName": "Specify CNG salt length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycngsaltlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycngsaltlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_cryptography_l_specifycngsaltlength_l_specifycngsaltlengthspinid", + "displayName": "Number of bytes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_pjmacro_l_pjsecuritylevel", + "displayName": "Security Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_pjmacro_l_pjsecuritylevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_pjmacro_l_pjsecuritylevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_pjmacro_l_pjsecuritylevel_l_pjsecuritylevel36", + "displayName": "Security Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_pjmacro_l_pjsecuritylevel_l_pjsecuritylevel36_1", + "displayName": "Low (not recommended)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_pjmacro_l_pjsecuritylevel_l_pjsecuritylevel36_2", + "displayName": "Medium", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_pjmacro_l_pjsecuritylevel_l_pjsecuritylevel36_3", + "displayName": "High", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_pjmacro_l_pjsecuritylevel_l_pjsecuritylevel36_4", + "displayName": "Very High", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_allowtrustedlocationsonthenetwork", + "displayName": "Allow Trusted Locations on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_allowtrustedlocationsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_allowtrustedlocationsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disableallapplicationextensions", + "displayName": "Disable all application add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disableallapplicationextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disableallapplicationextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustedloc", + "displayName": "Disable all trusted locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustedloc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_disabletrustedloc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned", + "displayName": "Require that application add-ins are signed by Trusted Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01", + "displayName": "Trusted Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01_l_allowsubfolders", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01_l_allowsubfolders_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01_l_allowsubfolders_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01_l_datecolon", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01_l_descriptioncolon", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc01_l_pathcolon", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02", + "displayName": "Trusted Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02_l_allowsubfolders15", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02_l_allowsubfolders15_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02_l_allowsubfolders15_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02_l_datecolon13", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02_l_descriptioncolon14", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc02_l_pathcolon12", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03", + "displayName": "Trusted Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03_l_allowsubfolders19", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03_l_allowsubfolders19_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03_l_allowsubfolders19_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03_l_datecolon17", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03_l_descriptioncolon18", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc03_l_pathcolon16", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04", + "displayName": "Trusted Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04_l_allowsubfolders23", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04_l_allowsubfolders23_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04_l_allowsubfolders23_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04_l_datecolon21", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04_l_descriptioncolon22", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc04_l_pathcolon20", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05", + "displayName": "Trusted Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05_l_allowsubfolders27", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05_l_allowsubfolders27_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05_l_allowsubfolders27_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05_l_datecolon25", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05_l_descriptioncolon26", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc05_l_pathcolon24", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06", + "displayName": "Trusted Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06_l_allowsubfolders31", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06_l_allowsubfolders31_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06_l_allowsubfolders31_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06_l_datecolon29", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06_l_descriptioncolon30", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc06_l_pathcolon28", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07", + "displayName": "Trusted Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07_l_allowsubfolders35", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07_l_allowsubfolders35_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07_l_allowsubfolders35_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07_l_datecolon33", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07_l_descriptioncolon34", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc07_l_pathcolon32", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08", + "displayName": "Trusted Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08_l_allowsubfolders39", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08_l_allowsubfolders39_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08_l_allowsubfolders39_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08_l_datecolon37", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08_l_descriptioncolon38", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc08_l_pathcolon36", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09", + "displayName": "Trusted Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09_l_allowsubfolders43", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09_l_allowsubfolders43_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09_l_allowsubfolders43_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09_l_datecolon41", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09_l_descriptioncolon42", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc09_l_pathcolon40", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10", + "displayName": "Trusted Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10_l_allowsubfolders47", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10_l_allowsubfolders47_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10_l_allowsubfolders47_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10_l_datecolon45", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10_l_descriptioncolon46", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc10_l_pathcolon44", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11", + "displayName": "Trusted Location #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11_l_allowsubfolders51", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11_l_allowsubfolders51_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11_l_allowsubfolders51_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11_l_datecolon49", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11_l_descriptioncolon50", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc11_l_pathcolon48", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12", + "displayName": "Trusted Location #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12_l_allowsubfolders55", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12_l_allowsubfolders55_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12_l_allowsubfolders55_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12_l_datecolon53", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12_l_descriptioncolon54", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc12_l_pathcolon52", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13", + "displayName": "Trusted Location #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13_l_allowsubfolders59", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13_l_allowsubfolders59_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13_l_allowsubfolders59_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13_l_datecolon57", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13_l_descriptioncolon58", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc13_l_pathcolon56", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14", + "displayName": "Trusted Location #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14_l_allowsubfolders63", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14_l_allowsubfolders63_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14_l_allowsubfolders63_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14_l_datecolon61", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14_l_descriptioncolon62", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc14_l_pathcolon60", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15", + "displayName": "Trusted Location #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15_l_allowsubfolders67", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15_l_allowsubfolders67_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15_l_allowsubfolders67_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15_l_datecolon65", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15_l_descriptioncolon66", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc15_l_pathcolon64", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16", + "displayName": "Trusted Location #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16_l_allowsubfolders71", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16_l_allowsubfolders71_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16_l_allowsubfolders71_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16_l_datecolon69", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16_l_descriptioncolon70", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc16_l_pathcolon68", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17", + "displayName": "Trusted Location #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17_l_allowsubfolders75", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17_l_allowsubfolders75_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17_l_allowsubfolders75_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17_l_datecolon73", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17_l_descriptioncolon74", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc17_l_pathcolon72", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18", + "displayName": "Trusted Location #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18_l_allowsubfolders79", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18_l_allowsubfolders79_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18_l_allowsubfolders79_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18_l_datecolon77", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18_l_descriptioncolon78", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc18_l_pathcolon76", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19", + "displayName": "Trusted Location #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19_l_allowsubfolders83", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19_l_allowsubfolders83_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19_l_allowsubfolders83_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19_l_datecolon81", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19_l_descriptioncolon82", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc19_l_pathcolon80", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20", + "displayName": "Trusted Location #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20_l_allowsubfolders87", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20_l_allowsubfolders87_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20_l_allowsubfolders87_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20_l_datecolon85", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20_l_descriptioncolon86", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_trustedloc20_l_pathcolon84", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_vbawarningspolicy", + "displayName": "VBA Macro Notification Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_vbawarningspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_vbawarningspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_2", + "displayName": "Disable all with notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_3", + "displayName": "Disable all except digitally signed macros", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_4", + "displayName": "Disable all without notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_proj16v2~policy~l_proj~l_projectoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_1", + "displayName": "Enable all macros (not recommended)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems2", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems2_l_enteracommandbaridtodisable", + "displayName": "Enter a command bar ID to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filepublishtoweb", + "displayName": "File tab | Export | Publish HTML (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filepublishtoweb_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filepublishtoweb_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendemailemailpreview", + "displayName": "File tab | Share | E-mail Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendemailemailpreview_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendemailemailpreview_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendemailsendthispage", + "displayName": "File tab | Share | Email (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendemailsendthispage_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendemailsendthispage_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview", + "displayName": "Web tab | View | Web Page Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_puboptions1", + "displayName": "File tab | Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_puboptions1_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_puboptions1_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsaddins", + "displayName": "Developer tab | Add-Ins | COM Add-Ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsaddins_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsaddins_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacro", + "displayName": "Developer tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacro_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacro_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacros", + "displayName": "Developer tab | Code | Macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacros_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacros_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity", + "displayName": "Developer tab | Code | Macro Security (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditor", + "displayName": "Developer tab | Code | Visual Basic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditor_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditor_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_adddoublequotesinhebrewalphabetnumbering", + "displayName": "Add double quotes in Hebrew alphabet numbering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_adddoublequotesinhebrewalphabetnumbering_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_adddoublequotesinhebrewalphabetnumbering_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_defaultbuiltintab", + "displayName": "Default tab to show in Publisher on the Office Start screen and in File | New (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_defaultbuiltintab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_defaultbuiltintab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_defaultbuiltintab_l_defaultbuiltintab", + "displayName": "Default tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_defaultbuiltintab_l_defaultbuiltintab_0", + "displayName": "Featured", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_defaultbuiltintab_l_defaultbuiltintab_2", + "displayName": "Built-in", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_defaultbuiltintab_l_defaultbuiltintab_1", + "displayName": "Custom", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_disableofficestartpublisher", + "displayName": "Disable the Office Start screen for Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_disableofficestartpublisher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_disableofficestartpublisher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_personaltemplatespath", + "displayName": "Personal templates path for Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_personaltemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_personaltemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_personaltemplatespath_l_personaltemplatespath", + "displayName": "Personal templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_promptusertosetupprinter", + "displayName": "Prompt user to setup printer (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_promptusertosetupprinter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_miscellaneous_l_promptusertosetupprinter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_allowtexttobedraggedanddropped", + "displayName": "Allow text to be dragged and dropped (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_allowtexttobedraggedanddropped_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_allowtexttobedraggedanddropped_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallyhyphenateinnewtextboxes", + "displayName": "Automatically hyphenate in new text boxes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallyhyphenateinnewtextboxes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallyhyphenateinnewtextboxes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallysubstitutefontformissingeachars", + "displayName": "Automatically substitute font for missing East Asian characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallysubstitutefontformissingeachars_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallysubstitutefontformissingeachars_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallyswitchkeyboard", + "displayName": "Automatically switch keyboard to match the language of surrounding text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallyswitchkeyboard_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_automaticallyswitchkeyboard_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_enableincrementalpublishtoweb", + "displayName": "Enable incremental publish to Web (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_enableincrementalpublishtoweb_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_enableincrementalpublishtoweb_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_promptuserwhenreapplyingastyle", + "displayName": "Prompt user when reapplying a style (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_promptuserwhenreapplyingastyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_promptuserwhenreapplyingastyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_sendentirepublicationasasingle", + "displayName": "Send entire publication as a single JPEG image (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_sendentirepublicationasasingle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_sendentirepublicationasasingle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_setmaximumnumberofmruitemstodisplay", + "displayName": "Number of publications in the Recent Publications list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_setmaximumnumberofmruitemstodisplay_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_setmaximumnumberofmruitemstodisplay_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_setmaximumnumberofmruitemstodisplay_l_setmaximumnumberofmruitemstodisplayspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_setnumberofplacesintherecentplaceslist", + "displayName": "Number of folders in the Recent Folders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_setnumberofplacesintherecentplaceslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_setnumberofplacesintherecentplaceslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_setnumberofplacesintherecentplaceslist_l_setnumberofplacesintherecentplaceslistspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_showscreentipsonobjects", + "displayName": "Show ScreenTips on objects (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_showscreentipsonobjects_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_showscreentipsonobjects_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_turnoffdragpreview", + "displayName": "Turn off drag preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_turnoffdragpreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_turnoffdragpreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_usechinesefontsizes", + "displayName": "Use Chinese font sizes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_usechinesefontsizes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_usechinesefontsizes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_usexpsenhancedprintpath", + "displayName": "Use XPS-enhanced print path (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_usexpsenhancedprintpath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_usexpsenhancedprintpath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_whenformattingautomaticallyformatentireword", + "displayName": "When formatting, automatically format entire word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_whenformattingautomaticallyformatentireword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_whenformattingautomaticallyformatentireword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_whenselectingautomaticallyselectentireword", + "displayName": "When selecting, automatically select entire word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_whenselectingautomaticallyselectentireword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced_l_whenselectingautomaticallyselectentireword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_defaultpublisherdirection", + "displayName": "Default Publisher direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_defaultpublisherdirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_defaultpublisherdirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_defaultpublisherdirection_l_defaultpublisherdirection3", + "displayName": "Default Publisher direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_defaultpublisherdirection_l_defaultpublisherdirection3_0", + "displayName": "Left to right", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_defaultpublisherdirection_l_defaultpublisherdirection3_1", + "displayName": "Right to left", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_setdefaulttextflowdirection", + "displayName": "Set default text flow direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_setdefaulttextflowdirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_setdefaulttextflowdirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_setdefaulttextflowdirection_l_setdefaulttextflowdirectiondropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_setdefaulttextflowdirection_l_setdefaulttextflowdirectiondropid_1", + "displayName": "Left-to-Right", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_setdefaulttextflowdirection_l_setdefaulttextflowdirectiondropid_256", + "displayName": "Right-to-Left", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_usesequencechecking", + "displayName": "Use sequence checking (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_usesequencechecking_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_usesequencechecking_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_usetypeandreplace", + "displayName": "Use type and replace (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_usetypeandreplace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_advanced~l_complexscripts_l_usetypeandreplace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_general_l_showthenewtemplategallerywhenstartingpublisher", + "displayName": "Show the New template gallery when starting Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_general_l_showthenewtemplategallerywhenstartingpublisher_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_general_l_showthenewtemplategallerywhenstartingpublisher_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_optionscustomizeribbon_l_displaydevelopertab", + "displayName": "Display Developer tab in the Ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_optionscustomizeribbon_l_displaydevelopertab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_optionscustomizeribbon_l_displaydevelopertab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_proofing_l_checkspellingasyoutype", + "displayName": "Check spelling as you type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_proofing_l_checkspellingasyoutype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_proofing_l_checkspellingasyoutype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_proofing_l_checkspellingasyoutype_l_checkspellingasyoutypedropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_proofing_l_checkspellingasyoutype_l_checkspellingasyoutypedropid_1", + "displayName": "Check spelling as you type", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_proofing_l_checkspellingasyoutype_l_checkspellingasyoutypedropid_2", + "displayName": "Hide spelling errors", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_proofing_l_checkspellingasyoutype_l_checkspellingasyoutypedropid_3", + "displayName": "Both", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_save_l_allowbackgroundsaves", + "displayName": "Allow background saves (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_save_l_allowbackgroundsaves_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_save_l_allowbackgroundsaves_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_save_l_saveautorecoverinfoevery", + "displayName": "Save AutoRecover info every (minutes) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_save_l_saveautorecoverinfoevery_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_save_l_saveautorecoverinfoevery_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_puboptions~l_save_l_saveautorecoverinfoevery_l_saveautorecoverinfoeveryid", + "displayName": "Minutes (range 1-120): (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_preventfatallycorruptfilesfromopening", + "displayName": "Prompt to allow fatally corrupt files to open instead of blocking them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_preventfatallycorruptfilesfromopening_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_preventfatallycorruptfilesfromopening_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_publisherautomationsecuritylevel", + "displayName": "Publisher Automation Security Level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_publisherautomationsecuritylevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_publisherautomationsecuritylevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_publisherautomationsecuritylevel_l_empty", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_publisherautomationsecuritylevel_l_empty_1", + "displayName": "Low (enabled)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_publisherautomationsecuritylevel_l_empty_2", + "displayName": "By UI (prompted)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security_l_publisherautomationsecuritylevel_l_empty_3", + "displayName": "High (disabled)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disableallapplicationextensions", + "displayName": "Block application add-ins loading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disableallapplicationextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disableallapplicationextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned", + "displayName": "Require that application add-ins are signed by Trusted Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_vbawarningspolicy", + "displayName": "VBA Macro Notification Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_vbawarningspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_vbawarningspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_vbawarningspolicy_l_empty0", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_vbawarningspolicy_l_empty0_2", + "displayName": "Disable all with notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_vbawarningspolicy_l_empty0_3", + "displayName": "Disable all except digitally signed macros", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_vbawarningspolicy_l_empty0_4", + "displayName": "Disable all without notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v2~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_vbawarningspolicy_l_empty0_1", + "displayName": "Enable all macros (not recommended)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_pub16v3~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_blockmacroexecutionfrominternet", + "displayName": "Block macros from running in Office files from the internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_pub16v3~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_pub16v3~policy~l_microsoftofficepublisher~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_remotedesktop_autosubscription", + "displayName": "Auto-subscription (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection", + "displayName": "Restrict clipboard transfer from client to server (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text", + "displayName": "Restrict clipboard transfer from client to server: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_0", + "displayName": "Disable clipboard transfers from client to server", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_1", + "displayName": "Allow plain text", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_2", + "displayName": "Allow plain text and images", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_3", + "displayName": "Allow plain text, images and Rich Text Format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitclienttoserverclipboardredirection_ts_cs_clipboard_restriction_text_4", + "displayName": "Allow plain text, images, Rich Text Format and HTML", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection", + "displayName": "Restrict clipboard transfer from server to client (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text", + "displayName": "Restrict clipboard transfer from server to client: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_0", + "displayName": "Disable clipboard transfers from server to client", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_1", + "displayName": "Allow plain text", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_2", + "displayName": "Allow plain text and images", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_3", + "displayName": "Allow plain text, images and Rich Text Format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_remotedesktopservices_limitservertoclientclipboardredirection_ts_sc_clipboard_restriction_text_4", + "displayName": "Allow plain text, images, Rich Text Format and HTML", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_security_recoveryenvironmentauthentication", + "displayName": "Recovery Environment Authentication (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_security_recoveryenvironmentauthentication_0", + "displayName": "current) behavior", + "description": "current) behavior" + }, + { + "id": "user_vendor_msft_policy_config_security_recoveryenvironmentauthentication_1", + "displayName": "RequireAuthentication: Admin Authentication is always required for components in RecoveryEnvironment", + "description": "RequireAuthentication: Admin Authentication is always required for components in RecoveryEnvironment" + }, + { + "id": "user_vendor_msft_policy_config_security_recoveryenvironmentauthentication_2", + "displayName": "NoRequireAuthentication: Admin Authentication is not required for components in RecoveryEnvironment", + "description": "NoRequireAuthentication: Admin Authentication is not required for components in RecoveryEnvironment" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_settings_configuretaskbarcalendar", + "displayName": "Configure Taskbar Calendar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_settings_configuretaskbarcalendar_0", + "displayName": "User will be allowed to configure the setting.", + "description": "User will be allowed to configure the setting." + }, + { + "id": "user_vendor_msft_policy_config_settings_configuretaskbarcalendar_1", + "displayName": "Don't show additional calendars.", + "description": "Don't show additional calendars." + }, + { + "id": "user_vendor_msft_policy_config_settings_configuretaskbarcalendar_2", + "displayName": "Simplified Chinese (Lunar).", + "description": "Simplified Chinese (Lunar)." + }, + { + "id": "user_vendor_msft_policy_config_settings_configuretaskbarcalendar_3", + "displayName": "Traditional Chinese (Lunar).", + "description": "Traditional Chinese (Lunar)." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_settings_pagevisibilitylist", + "displayName": "Page Visibility List (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_start_configurestartpins", + "displayName": "Configure Start Pins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_start_disablecontextmenus", + "displayName": "Disable Context Menus (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_start_disablecontextmenus_0", + "displayName": "Disabled", + "description": "Do not disable." + }, + { + "id": "user_vendor_msft_policy_config_start_disablecontextmenus_1", + "displayName": "Enabled", + "description": "Disable." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_start_forcestartsize", + "displayName": "Force Start Size (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_start_forcestartsize_0", + "displayName": "Do not force size of Start.", + "description": "Do not force size of Start." + }, + { + "id": "user_vendor_msft_policy_config_start_forcestartsize_1", + "displayName": "Force non-fullscreen size of Start.", + "description": "Force non-fullscreen size of Start." + }, + { + "id": "user_vendor_msft_policy_config_start_forcestartsize_2", + "displayName": "Force a fullscreen size of Start.", + "description": "Force a fullscreen size of Start." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_start_hideapplist", + "displayName": "Hide App List (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_start_hideapplist_0", + "displayName": "None.", + "description": "None." + }, + { + "id": "user_vendor_msft_policy_config_start_hideapplist_1", + "displayName": "Hide all apps list.", + "description": "Hide all apps list." + }, + { + "id": "user_vendor_msft_policy_config_start_hideapplist_2", + "displayName": "Hide all apps list, and Disable \"Show app list in Start menu\" in Settings app.", + "description": "Hide all apps list, and Disable \"Show app list in Start menu\" in Settings app." + }, + { + "id": "user_vendor_msft_policy_config_start_hideapplist_3", + "displayName": "Hide all apps list, remove all apps button, and Disable \"Show app list in Start menu\" in Settings app.", + "description": "Hide all apps list, remove all apps button, and Disable \"Show app list in Start menu\" in Settings app." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_start_hidefrequentlyusedapps", + "displayName": "Hide Frequently Used Apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_start_hidefrequentlyusedapps_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "user_vendor_msft_policy_config_start_hidefrequentlyusedapps_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_start_hidepeoplebar", + "displayName": "Hide People Bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_start_hidepeoplebar_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "user_vendor_msft_policy_config_start_hidepeoplebar_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_start_hiderecentjumplists", + "displayName": "Hide Recent Jumplists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_start_hiderecentjumplists_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "user_vendor_msft_policy_config_start_hiderecentjumplists_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_start_hiderecentlyaddedapps", + "displayName": "Hide Recently Added Apps (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_start_hiderecentlyaddedapps_0", + "displayName": "Disabled", + "description": "Do not hide." + }, + { + "id": "user_vendor_msft_policy_config_start_hiderecentlyaddedapps_1", + "displayName": "Enabled", + "description": "Hide." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_start_startlayout", + "displayName": "Start Layout (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_system_allowtelemetry", + "displayName": "Allow Telemetry (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_system_allowtelemetry_0", + "displayName": "Security", + "description": "Security. Information that is required to help keep Windows more secure, including data about the Connected User Experience and Telemetry component settings, the Malicious Software Removal Tool, and Windows Defender.\nNote: This value is only applicable to Windows 10 Enterprise, Windows 10 Education, Windows 10 Mobile Enterprise, Windows 10 IoT Core (IoT Core), and Windows Server 2016. Using this setting on other devices is equivalent to setting the value of 1." + }, + { + "id": "user_vendor_msft_policy_config_system_allowtelemetry_1", + "displayName": "Basic", + "description": "Basic. Basic device info, including: quality-related data, app compatibility, app usage data, and data from the Security level." + }, + { + "id": "user_vendor_msft_policy_config_system_allowtelemetry_3", + "displayName": "Full", + "description": "Full. All data necessary to identify and help to fix problems, plus data from the Security, Basic, and Enhanced levels." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_teamsv2~policy~l_teams_teams_preventfirstlaunchafterinstall_policy", + "displayName": "Prevent Microsoft Teams from starting automatically after installation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_teamsv2~policy~l_teams_teams_preventfirstlaunchafterinstall_policy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_teamsv2~policy~l_teams_teams_preventfirstlaunchafterinstall_policy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_teamsv3~policy~l_teams_string_teams_signinrestriction_policy", + "displayName": "Restrict sign in to Teams to accounts in specific tenants (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_teamsv3~policy~l_teams_string_teams_signinrestriction_policy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_teamsv3~policy~l_teams_string_teams_signinrestriction_policy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_teamsv3~policy~l_teams_string_teams_signinrestriction_policy_restrictteamssignintoaccountsfromtenantlist", + "displayName": "Tenant IDs: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_timelanguagesettings_restrictlanguagepacksandfeaturesinstall", + "displayName": "Restrict Language Packs And Features Install (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_timelanguagesettings_restrictlanguagepacksandfeaturesinstall_0", + "displayName": "Disabled", + "description": "Not restricted." + }, + { + "id": "user_vendor_msft_policy_config_timelanguagesettings_restrictlanguagepacksandfeaturesinstall_1", + "displayName": "Enabled", + "description": "Restricted." + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_customizableerrormessages_l_listoferrormessagestocustomize", + "displayName": "List of error messages to customize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_customizableerrormessages_l_listoferrormessagestocustomize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_customizableerrormessages_l_listoferrormessagestocustomize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize98", + "displayName": "List of error messages to customize (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize98_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize98_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems1", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems1_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems1_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems1_l_enteracommandbaridtodisable", + "displayName": "Enter a command bar ID to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys100", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys100_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys100_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys100_l_enterakeyandmodifiertodisable", + "displayName": "Enter a key and modifier to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient", + "displayName": "File Tab | Share | Email (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlink", + "displayName": "Insert tab | Hyperlink (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlink_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlink_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosmacros", + "displayName": "Developer tab | Macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosmacros_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosmacros_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosvisualbasiceditor", + "displayName": "Developer tab | Visual Basic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosvisualbasiceditor_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosvisualbasiceditor_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_visiooptions99", + "displayName": "File tab | Options (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_visiooptions99_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_visiooptions99_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_defaultbuiltintab", + "displayName": "Default tab to show in Visio on the Office Start screen and in File | New (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_defaultbuiltintab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_defaultbuiltintab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_defaultbuiltintab_l_defaultbuiltintab", + "displayName": "Default tab (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_defaultbuiltintab_l_defaultbuiltintab_0", + "displayName": "Featured", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_defaultbuiltintab_l_defaultbuiltintab_2", + "displayName": "Built-in", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_defaultbuiltintab_l_defaultbuiltintab_1", + "displayName": "Custom", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_disableofficestartvisio", + "displayName": "Disable the Office Start screen for Visio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_disableofficestartvisio_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_disableofficestartvisio_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_emailmessageforsendtocommands", + "displayName": "Email message for 'Send To' commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_emailmessageforsendtocommands_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_emailmessageforsendtocommands_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_emailmessageforsendtocommands_l_emailmessageforsendtocommands101", + "displayName": "Email message for 'Send To' commands (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_personaltemplatespath", + "displayName": "Personal templates path for Visio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_personaltemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_personaltemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_miscellaneous_l_personaltemplatespath_l_personaltemplatespath", + "displayName": "Personal templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_alwaysoffermetricandusunitsfornewblankdrawings", + "displayName": "Always offer 'Metric' and 'US units' for new blank drawings and stencils (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_alwaysoffermetricandusunitsfornewblankdrawings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_alwaysoffermetricandusunitsfornewblankdrawings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle", + "displayName": "Angle (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle_l_angle8", + "displayName": "Angle (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle_l_angle8_81", + "displayName": "Degrees", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle_l_angle8_82", + "displayName": "Deg-Min-Sec", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle_l_angle8_84", + "displayName": "Min-Sec", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle_l_angle8_85", + "displayName": "Seconds", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_angle_l_angle8_83", + "displayName": "Radians", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration", + "displayName": "Duration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration_l_duration9", + "displayName": "Duration (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration_l_duration9_43", + "displayName": "Weeks", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration_l_duration9_44", + "displayName": "Days", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration_l_duration9_45", + "displayName": "Hours", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration_l_duration9_46", + "displayName": "Minutes", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_duration_l_duration9_47", + "displayName": "Seconds", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_preventshowingnewscreenonlaunch", + "displayName": "Prevent showing New screen on launch (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_preventshowingnewscreenonlaunch_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_preventshowingnewscreenonlaunch_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_recentlyusedfilelist", + "displayName": "Number of entries in the Recent Drawings list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_recentlyusedfilelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_recentlyusedfilelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_recentlyusedfilelist_l_numberofentries", + "displayName": "Number of entries: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_setnumberofplacesintherecentplaceslist", + "displayName": "Number of folders in the Recent Folders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_setnumberofplacesintherecentplaceslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_setnumberofplacesintherecentplaceslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_setnumberofplacesintherecentplaceslist_l_setnumberofplacesintherecentplaceslistspinid", + "displayName": "Number of folders: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_smarttags", + "displayName": "Actions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_smarttags_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_smarttags_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear", + "displayName": "Specify ScreenTips to appear (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid1", + "displayName": "Drawing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid1_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid1_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid2", + "displayName": "Dialogs (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid2_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid2_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid3", + "displayName": "Rulers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid3_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid4", + "displayName": "Shapesheet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid4_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_specifyscreentipstoappear_l_specifyscreentipstoappearboolid4_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_stencilwindowscreentips", + "displayName": "Stencil window ScreenTips (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_stencilwindowscreentips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_stencilwindowscreentips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_text", + "displayName": "Text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_text_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_text_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_text_l_text7", + "displayName": "Text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_text_l_text7_51", + "displayName": "Picas", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_text_l_text7_50", + "displayName": "Points", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_text_l_text7_54", + "displayName": "Ciceros", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_display_l_text_l_text7_53", + "displayName": "Didots", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_centerselectiononzoom", + "displayName": "Center selection on zoom (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_centerselectiononzoom_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_centerselectiononzoom_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enableautoconnect", + "displayName": "Enable AutoConnect (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enableautoconnect_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enableautoconnect_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enablelivedynamics", + "displayName": "Enable live dynamics (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enablelivedynamics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enablelivedynamics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enalbeconnectorsplitting", + "displayName": "Enable connector splitting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enalbeconnectorsplitting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_enalbeconnectorsplitting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_selectshapespartiallywithinarea", + "displayName": "Select shapes partially within area (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_selectshapespartiallywithinarea_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_selectshapespartiallywithinarea_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_showmorehandles", + "displayName": "Show more handles on hover (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_showmorehandles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_showmorehandles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnoffshapesheetformulaautocomplete", + "displayName": "Turn off ShapeSheet Formula AutoComplete (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnoffshapesheetformulaautocomplete_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnoffshapesheetformulaautocomplete_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnoffsmartdeletebehaviorofconnectorswhendeletingshapes", + "displayName": "Turn off smart delete behavior of connectors when deleting shapes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnoffsmartdeletebehaviorofconnectorswhendeletingshapes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnoffsmartdeletebehaviorofconnectorswhendeletingshapes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnofftransitions", + "displayName": "Turn off transitions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnofftransitions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_turnofftransitions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_zoomonrollwithintellimouse", + "displayName": "Zoom on roll with IntelliMouse (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_zoomonrollwithintellimouse_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_editingoptions_l_zoomonrollwithintellimouse_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_addons", + "displayName": "Add-ons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_addons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_addons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_addons_l_addonscolon", + "displayName": "Add-ons: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_drawings", + "displayName": "Drawings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_drawings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_drawings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_drawings_l_drawingscolon", + "displayName": "Drawings: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_favoritesstencilname", + "displayName": "Favorites Stencil Name (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_favoritesstencilname_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_favoritesstencilname_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_favoritesstencilname_l_favoritesstencilnamecolon", + "displayName": "Favorites Stencil Name: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_help", + "displayName": "Help (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_help_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_help_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_help_l_helpcolon", + "displayName": "Help: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_myshapes", + "displayName": "My Shapes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_myshapes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_myshapes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_myshapes_l_myshapescolon", + "displayName": "My Shapes: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_startup", + "displayName": "Start-up (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_startup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_startup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_startup_l_startupcolon", + "displayName": "Start-up: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_stencils", + "displayName": "Stencils (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_stencils_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_stencils_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_stencils_l_stencilscolon", + "displayName": "Stencils: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_templates", + "displayName": "Templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_templates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_templates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_filelocations_l_templates_l_templatescolon", + "displayName": "Templates: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_enableautomationevents", + "displayName": "Enable Automation events (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_enableautomationevents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_enableautomationevents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_openeachshapesheetinthesamewindow", + "displayName": "Open each ShapeSheet in the same window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_openeachshapesheetinthesamewindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_openeachshapesheetinthesamewindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_putallsettingsinwindowsregistry", + "displayName": "Put all settings in Windows registry (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_putallsettingsinwindowsregistry_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_generaloptions_l_putallsettingsinwindowsregistry_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_languageforfileconversion4", + "displayName": "Language for file conversion (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_languageforfileconversion4_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_languageforfileconversion4_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_languageforfileconversion4_l_languageforfileconversion5", + "displayName": "Language for file conversion (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_languageforfileconversion4_l_languageforfileconversion5_0", + "displayName": "Let Visio decide language", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_languageforfileconversion4_l_languageforfileconversion5_1", + "displayName": "Prompt for language", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_languageforfileconversion4_l_languageforfileconversion5_2", + "displayName": "Use the following language", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_languageforfileconversion4_l_uselanguage", + "displayName": "Use language: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_showfileopenwarnings", + "displayName": "Show file open warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_showfileopenwarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_showfileopenwarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_showfilesavewarnings", + "displayName": "Show file save warnings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_showfilesavewarnings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_saveopen_l_showfilesavewarnings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_openresultsnewwindow", + "displayName": "Open results new window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_openresultsnewwindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_openresultsnewwindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchfor", + "displayName": "Search for: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchfor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchfor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchfor_l_searchfor10", + "displayName": "Search for: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchfor_l_searchfor10_1", + "displayName": "All of the words (AND)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchfor_l_searchfor10_0", + "displayName": "Any of the words (OR)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchresults", + "displayName": "Search results (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchresults_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchresults_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchresults_l_searchresults11", + "displayName": "Search results (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchresults_l_searchresults11_0", + "displayName": "Alphabetically", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_searchresults_l_searchresults11_1", + "displayName": "By Group", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_showshapesearchpane", + "displayName": "Show Shape Search pane (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_showshapesearchpane_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_advanced~l_shapesearch_l_showshapesearchpane_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_donotshowminitoolbaronselectionoftext", + "displayName": "Do not show Mini Toolbar on selection of text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_donotshowminitoolbaronselectionoftext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_donotshowminitoolbaronselectionoftext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_turnofflivepreview", + "displayName": "Turn off Live Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_turnofflivepreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_turnofflivepreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_turnofflivepreviewintheshapeswindow", + "displayName": "Turn off Live Preview in the Shapes window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_turnofflivepreviewintheshapeswindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_general~l_userinterfaceoptions_l_turnofflivepreviewintheshapeswindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_optionscustomizeribbon_l_displaydevelopertab", + "displayName": "Display Developer tab in the Ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_optionscustomizeribbon_l_displaydevelopertab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_optionscustomizeribbon_l_displaydevelopertab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_fractionswithfractioncharacter", + "displayName": "Fractions with fraction character (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_fractionswithfractioncharacter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_fractionswithfractioncharacter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_hyphenswithdash", + "displayName": "Hyphens with dash (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_hyphenswithdash_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_hyphenswithdash_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_ordinalswithsuperscript", + "displayName": "Ordinals with superscript (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_ordinalswithsuperscript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_ordinalswithsuperscript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_smileyfacesandarrowswithspecialsymbols", + "displayName": "Smiley faces and arrows with special symbols (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_smileyfacesandarrowswithspecialsymbols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_smileyfacesandarrowswithspecialsymbols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_straightquoteswithsmartquotes", + "displayName": "Straight quotes with smart quotes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_straightquoteswithsmartquotes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_proofing~l_autocorrectoptions_l_straightquoteswithsmartquotes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save_l_turnoffcaddwgfunctionality", + "displayName": "Turn off CAD/DWG functionality (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save_l_turnoffcaddwgfunctionality_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save_l_turnoffcaddwgfunctionality_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_offlineediting_l_savecheckedoutfilesto", + "displayName": "Save checked-out files to (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_offlineediting_l_savecheckedoutfilesto_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_offlineediting_l_savecheckedoutfilesto_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_offlineediting_l_savecheckedoutfilesto_l_savecheckedoutfilestodropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_offlineediting_l_savecheckedoutfilesto_l_savecheckedoutfilestodropid_1", + "displayName": "Server drafts location", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_offlineediting_l_savecheckedoutfilesto_l_savecheckedoutfilestodropid_0", + "displayName": "Web server", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_promptfordocumentpropertiesonfirstsave", + "displayName": "Prompt for document properties on first save (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_promptfordocumentpropertiesonfirstsave_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_promptfordocumentpropertiesonfirstsave_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_savevisiofilesas", + "displayName": "Save Visio files as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_savevisiofilesas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_savevisiofilesas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_savevisiofilesas_l_savevisiofilesas6", + "displayName": "Save Visio files as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_savevisiofilesas_l_savevisiofilesas6_0", + "displayName": "Visio Document", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_savevisiofilesas_l_savevisiofilesas6_3", + "displayName": "Visio Macro-Enabled Document", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_save~l_savedocuments_l_savevisiofilesas_l_savevisiofilesas6_1", + "displayName": "Visio 2003-2016 Document", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_macrosecurity_l_enablemicrosoftvisualbasicforapplicationsproject", + "displayName": "Enable Microsoft Visual Basic for Applications project creation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_macrosecurity_l_enablemicrosoftvisualbasicforapplicationsproject_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_macrosecurity_l_enablemicrosoftvisualbasicforapplicationsproject_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_macrosecurity_l_loadmicrosoftvisualbasicforapplicationsprojectsf", + "displayName": "Load Microsoft Visual Basic for Applications projects from text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_macrosecurity_l_loadmicrosoftvisualbasicforapplicationsprojectsf_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_macrosecurity_l_loadmicrosoftvisualbasicforapplicationsprojectsf_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_allowtrustedlocationsonthenetwork", + "displayName": "Allow Trusted Locations on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_allowtrustedlocationsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_allowtrustedlocationsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet", + "displayName": "Block macros from running in Office files from the Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disableallapplicationextensions", + "displayName": "Disable all application add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disableallapplicationextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disableallapplicationextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustedloc", + "displayName": "Disable all trusted locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustedloc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_disabletrustedloc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned", + "displayName": "Require that application add-ins are signed by Trusted Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments", + "displayName": "Set maximum number of trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_l_setmaximumnumberoftrusteddocumentsspinid", + "displayName": "Maximum number: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve", + "displayName": "Set maximum number of trust records to preserve (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_l_setmaximumnumberoftrustrecordstopreservespinid", + "displayName": "Maximum to preserve: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01", + "displayName": "Trusted Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01_l_allowsubfolders", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01_l_allowsubfolders_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01_l_allowsubfolders_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01_l_datecolon", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01_l_descriptioncolon", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc01_l_pathcolon", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02", + "displayName": "Trusted Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02_l_allowsubfolders15", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02_l_allowsubfolders15_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02_l_allowsubfolders15_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02_l_datecolon13", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02_l_descriptioncolon14", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc02_l_pathcolon12", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03", + "displayName": "Trusted Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03_l_allowsubfolders19", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03_l_allowsubfolders19_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03_l_allowsubfolders19_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03_l_datecolon17", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03_l_descriptioncolon18", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc03_l_pathcolon16", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04", + "displayName": "Trusted Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04_l_allowsubfolders23", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04_l_allowsubfolders23_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04_l_allowsubfolders23_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04_l_datecolon21", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04_l_descriptioncolon22", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc04_l_pathcolon20", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05", + "displayName": "Trusted Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05_l_allowsubfolders27", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05_l_allowsubfolders27_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05_l_allowsubfolders27_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05_l_datecolon25", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05_l_descriptioncolon26", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc05_l_pathcolon24", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06", + "displayName": "Trusted Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06_l_allowsubfolders31", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06_l_allowsubfolders31_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06_l_allowsubfolders31_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06_l_datecolon29", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06_l_descriptioncolon30", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc06_l_pathcolon28", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07", + "displayName": "Trusted Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07_l_allowsubfolders35", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07_l_allowsubfolders35_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07_l_allowsubfolders35_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07_l_datecolon33", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07_l_descriptioncolon34", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc07_l_pathcolon32", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08", + "displayName": "Trusted Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08_l_allowsubfolders39", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08_l_allowsubfolders39_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08_l_allowsubfolders39_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08_l_datecolon37", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08_l_descriptioncolon38", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc08_l_pathcolon36", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09", + "displayName": "Trusted Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09_l_allowsubfolders43", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09_l_allowsubfolders43_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09_l_allowsubfolders43_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09_l_datecolon41", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09_l_descriptioncolon42", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc09_l_pathcolon40", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10", + "displayName": "Trusted Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10_l_allowsubfolders47", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10_l_allowsubfolders47_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10_l_allowsubfolders47_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10_l_datecolon45", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10_l_descriptioncolon46", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc10_l_pathcolon44", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11", + "displayName": "Trusted Location #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11_l_allowsubfolders51", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11_l_allowsubfolders51_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11_l_allowsubfolders51_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11_l_datecolon49", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11_l_descriptioncolon50", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc11_l_pathcolon48", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12", + "displayName": "Trusted Location #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12_l_allowsubfolders55", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12_l_allowsubfolders55_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12_l_allowsubfolders55_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12_l_datecolon53", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12_l_descriptioncolon54", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc12_l_pathcolon52", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13", + "displayName": "Trusted Location #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13_l_allowsubfolders59", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13_l_allowsubfolders59_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13_l_allowsubfolders59_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13_l_datecolon57", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13_l_descriptioncolon58", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc13_l_pathcolon56", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14", + "displayName": "Trusted Location #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14_l_allowsubfolders63", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14_l_allowsubfolders63_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14_l_allowsubfolders63_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14_l_datecolon61", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14_l_descriptioncolon62", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc14_l_pathcolon60", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15", + "displayName": "Trusted Location #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15_l_allowsubfolders67", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15_l_allowsubfolders67_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15_l_allowsubfolders67_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15_l_datecolon65", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15_l_descriptioncolon66", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc15_l_pathcolon64", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16", + "displayName": "Trusted Location #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16_l_allowsubfolders71", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16_l_allowsubfolders71_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16_l_allowsubfolders71_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16_l_datecolon69", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16_l_descriptioncolon70", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc16_l_pathcolon68", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17", + "displayName": "Trusted Location #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17_l_allowsubfolders75", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17_l_allowsubfolders75_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17_l_allowsubfolders75_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17_l_datecolon73", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17_l_descriptioncolon74", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc17_l_pathcolon72", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18", + "displayName": "Trusted Location #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18_l_allowsubfolders79", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18_l_allowsubfolders79_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18_l_allowsubfolders79_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18_l_datecolon77", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18_l_descriptioncolon78", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc18_l_pathcolon76", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19", + "displayName": "Trusted Location #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19_l_allowsubfolders83", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19_l_allowsubfolders83_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19_l_allowsubfolders83_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19_l_datecolon81", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19_l_descriptioncolon82", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc19_l_pathcolon80", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20", + "displayName": "Trusted Location #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20_l_allowsubfolders87", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20_l_allowsubfolders87_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20_l_allowsubfolders87_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20_l_datecolon85", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20_l_descriptioncolon86", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_trustedloc20_l_pathcolon84", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_turnofftrusteddocuments", + "displayName": "Turn off trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_turnofftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_turnofftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork", + "displayName": "Turn off Trusted Documents on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_vbawarningspolicy", + "displayName": "VBA Macro Notification Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_vbawarningspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_vbawarningspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_2", + "displayName": "Disable all with notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_3", + "displayName": "Disable all except digitally signed macros", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_4", + "displayName": "Disable all without notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty_1", + "displayName": "Enable all macros (not recommended)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2000files", + "displayName": "Visio 2000-2002 Binary Drawings, Templates and Stencils (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2000files_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2000files_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2000files_l_visio2000filesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2000files_l_visio2000filesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2000files_l_visio2000filesdropid_2", + "displayName": "Open/Save blocked", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2003files", + "displayName": "Visio 2003-2010 Binary Drawings, Templates and Stencils (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2003files_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2003files_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2003files_l_visio2003filesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2003files_l_visio2003filesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2003files_l_visio2003filesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio2003files_l_visio2003filesdropid_2", + "displayName": "Open/Save blocked", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio50andearlierfiles", + "displayName": "Visio 5.0 or earlier Binary Drawings, Templates and Stencils (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio50andearlierfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio50andearlierfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio50andearlierfiles_l_visio50andearlierfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio50andearlierfiles_l_visio50andearlierfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v2~policy~l_microsoftvisio~l_visiooptions~l_security~l_trustcenter~l_fileblocksettings_l_visio50andearlierfiles_l_visio50andearlierfilesdropid_2", + "displayName": "Open/Save blocked", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visio16v3~policy~l_microsoftvisio~l_visiooptions~l_proofing_l_disablevisiornrpane", + "displayName": "Turn off Research and Translation features in Visio (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visio16v3~policy~l_microsoftvisio~l_visiooptions~l_proofing_l_disablevisiornrpane_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visio16v3~policy~l_microsoftvisio~l_visiooptions~l_proofing_l_disablevisiornrpane_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablefeedbackdialog", + "displayName": "Disable the send-a-smile feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablefeedbackdialog_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablefeedbackdialog_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablescreenshotcapture", + "displayName": "Disables send-a-smile's screenshot capability (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablescreenshotcapture_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_visualstudiov1~policy~visualstudio~feedbacksettings_disablescreenshotcapture_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_windowsai_setcopilothardwarekey", + "displayName": "Set Copilot Hardware Key (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_windowsai_turnoffwindowscopilot", + "displayName": "Turn Off Copilot in Windows (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_windowsai_turnoffwindowscopilot_0", + "displayName": "Enable Copilot", + "description": "Enable Copilot" + }, + { + "id": "user_vendor_msft_policy_config_windowsai_turnoffwindowscopilot_1", + "displayName": "Disable Copilot", + "description": "Disable Copilot" + } + ] + }, + { + "id": "user_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging", + "displayName": "Turn on PowerShell Script Block Logging (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_enablescriptblockinvocationlogging", + "displayName": "Log script block invocation start / stop events: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_enablescriptblockinvocationlogging_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_windowspowershell_turnonpowershellscriptblocklogging_enablescriptblockinvocationlogging_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v10~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_disablemoderncommentsoptoutoption", + "displayName": "Hide the modern comments opt-out (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v10~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_disablemoderncommentsoptoutoption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v10~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_disablemoderncommentsoptoutoption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v11~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_alternateclplabelcontentmarkanchoringoption", + "displayName": "Use an alternate method of anchoring content marks from CLP labels (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v11~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_alternateclplabelcontentmarkanchoringoption_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v11~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_alternateclplabelcontentmarkanchoringoption_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v12~policy~l_microsoftofficeword_l_stopreadaloudeyesoffexperience", + "displayName": "Stop Read Aloud when app goes in background (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v12~policy~l_microsoftofficeword_l_stopreadaloudeyesoffexperience_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v12~policy~l_microsoftofficeword_l_stopreadaloudeyesoffexperience_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_disablecoauthoringondocmfiles", + "displayName": "Prevent co-authoring on files with macros for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_disablecoauthoringondocmfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_disablecoauthoringondocmfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_disablertc", + "displayName": "Disable Real Time Coauthoring for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_disablertc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_disablertc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_donotautomaticallymergeserverandlocaldocument", + "displayName": "Do not automatically merge server and local document (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_donotautomaticallymergeserverandlocaldocument_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_donotautomaticallymergeserverandlocaldocument_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_preventcoauthoring", + "displayName": "Prevent co-authoring (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_preventcoauthoring_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_collaborationsettings~l_coauthoring_l_preventcoauthoring_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_customizableerrormessages_l_listoferrormessagestocustomize", + "displayName": "List of error messages to customize (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_customizableerrormessages_l_listoferrormessagestocustomize_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_customizableerrormessages_l_listoferrormessagestocustomize_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize97", + "displayName": "List of error messages to customize (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize97_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_customizableerrormessages_l_listoferrormessagestocustomize_l_listoferrormessagestocustomize97_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems174", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems174_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems174_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_custom_l_disablecommandbarbuttonsandmenuitems174_l_enteracommandbaridtodisable", + "displayName": "Enter a command bar ID to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys175", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys175_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys175_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_custom_l_disableshortcutkeys175_l_enterakeyandmodifiertodisable", + "displayName": "Enter a key and modifier to disable (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems", + "displayName": "Disable commands (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient", + "displayName": "File tab | Share | Email (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filesendtomailrecipient_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview", + "displayName": "File tab | Options | (\"Customize Ribbon\" or \"Quick Access Toolbar\") | All Commands | Web Page Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_filewebpagepreview_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlinkwd", + "displayName": "Insert tab | Links | Hyperlink (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlinkwd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_inserthyperlinkwd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacroswd", + "displayName": "Developer tab | Code | Macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacroswd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacromacroswd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrorecordnewmacro", + "displayName": "Developer tab | Code | Record Macro (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrorecordnewmacro_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrorecordnewmacro_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity", + "displayName": "Developer tab | Code | Macro Security (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrosecurity_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditorwd", + "displayName": "Developer tab | Code | Visual Basic (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditorwd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrovisualbasiceditorwd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrowd", + "displayName": "View tab | Macros | Macros (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrowd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsmacrowd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsprotectdocument", + "displayName": "File tab | Info | Protect Document (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsprotectdocument_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolsprotectdocument_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolstemplatesandaddins", + "displayName": "Developer tab | Templates | Document Template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolstemplatesandaddins_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_toolstemplatesandaddins_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_webaddresswd", + "displayName": "File tab | Options | (\"Customize Ribbon\" or \"Quick Access Toolbar\") | All Commands | Document Location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_webaddresswd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disablecommandbarbuttonsandmenuitems_l_webaddresswd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys", + "displayName": "Disable shortcut keys (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditorwd", + "displayName": "Alt+F11 (Developer | Code | Visual Basic) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditorwd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf11toolsmacrovisualbasiceditorwd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros", + "displayName": "Alt+F8 (Developer | Code | Macros) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_altf8toolsmacromacros_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindwd", + "displayName": "Ctrl+F (Home | Editing | Find) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindwd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlffindwd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkwd", + "displayName": "Ctrl+K (Insert | Links | Hyperlink) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkwd_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_disableitemsinuserinterface~l_predefined_l_disableshortcutkeys_l_ctrlkinserthyperlinkwd_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation", + "displayName": "Check for accessibility issues while editing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_backgroundaccessibilitycheckerinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation", + "displayName": "Stop checking for alt text accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingalttextaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingblankcharactersusedforformatting", + "displayName": "Stop checking whether blank characters are used for formatting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingblankcharactersusedforformatting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingblankcharactersusedforformatting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingdocumentsallowprogrammaticaccess", + "displayName": "Stop checking to ensure documents allow programmatic access (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingdocumentsallowprogrammaticaccess_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingdocumentsallowprogrammaticaccess_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsandcolumns", + "displayName": "Stop checking for blank table rows and columns (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsandcolumns_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingforblanktablerowsandcolumns_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingforimagewatermarks", + "displayName": "Stop checking for image watermarks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingforimagewatermarks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingforimagewatermarks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingformergedandsplitcells", + "displayName": "Stop checking for merged and split cells (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingformergedandsplitcells_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingformergedandsplitcells_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingfortablesusedforlayout", + "displayName": "Stop checking for tables used for layout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingfortablesusedforlayout_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingfortablesusedforlayout_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingheadingstylesdonotskipstylelevel", + "displayName": "Stop checking to ensure heading styles do not skip style level (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingheadingstylesdonotskipstylelevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingheadingstylesdonotskipstylelevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckinglongdocumentsusestylesforstructure", + "displayName": "Stop checking to ensure long documents use styles for structure (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckinglongdocumentsusestylesforstructure_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckinglongdocumentsusestylesforstructure_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingstylesusedfrequently", + "displayName": "Stop checking to ensure styles have been used frequently (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingstylesusedfrequently_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingstylesusedfrequently_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation", + "displayName": "Stop checking for table header accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtableheaderaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensureheadingsaresuccinct", + "displayName": "Stop checking to ensure headings are succinct (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensureheadingsaresuccinct_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensureheadingsaresuccinct_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful", + "displayName": "Stop checking to ensure hyperlink text is meaningful (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningful_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingwhetherobjectsarefloating", + "displayName": "Stop checking whether objects are floating (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingwhetherobjectsarefloating_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingwhetherobjectsarefloating_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_ignorepunctuationcharacters", + "displayName": "Ignore punctuation characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_ignorepunctuationcharacters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_ignorepunctuationcharacters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_ignorewhitespacecharacters", + "displayName": "Ignore whitespace characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_ignorewhitespacecharacters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_ignorewhitespacecharacters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchbavahafa", + "displayName": "Match ba/va, ha/fa (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchbavahafa_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchbavahafa_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchcase", + "displayName": "Match case (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchcase_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchcase_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchchoonusedforvowels", + "displayName": "Match cho-on used for vowels (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchchoonusedforvowels_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchchoonusedforvowels_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchcontractionsyoonsokuon", + "displayName": "Match contractions (yo-on, sokuon) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchcontractionsyoonsokuon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchcontractionsyoonsokuon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchdiziduzu", + "displayName": "Match di/zi, du/zu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchdiziduzu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchdiziduzu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchfullhalfwidthform", + "displayName": "Match full/half width form (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchfullhalfwidthform_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchfullhalfwidthform_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchhiraganakatakana", + "displayName": "Match hiragana/katakana (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchhiraganakatakana_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchhiraganakatakana_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchhyuiyubyuvyu", + "displayName": "Match hyu/iyu, byu/vyu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchhyuiyubyuvyu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchhyuiyubyuvyu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchiaiyapianopiyano", + "displayName": "Match ia/iya (piano/piyano) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchiaiyapianopiyano_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchiaiyapianopiyano_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchkikutekisutotekusuto", + "displayName": "Match ki/ku (tekisuto/tekusuto) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchkikutekisutotekusuto_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchkikutekisutotekusuto_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchminusdashchoon", + "displayName": "Match minus/dash/cho-on (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchminusdashchoon_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchminusdashchoon_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matcholdkanaforms", + "displayName": "Match old kana forms (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matcholdkanaforms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matcholdkanaforms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchrepeatcharactermarks", + "displayName": "Match 'repeat character' marks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchrepeatcharactermarks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchrepeatcharactermarks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchseshezeje", + "displayName": "Match se/she, ze/je (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchseshezeje_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchseshezeje_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchtsithichidhizi", + "displayName": "Match tsi/thi/chi, dhi/zi (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchtsithichidhizi_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchtsithichidhizi_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchvariantformkanjiitaiji", + "displayName": "Match variant-form kanji (itaiji) (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchvariantformkanjiitaiji_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_japanesefind_l_matchvariantformkanjiitaiji_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_alternaterevisionbarpositioninprinteddocument", + "displayName": "Alternate revision bar position in printed document (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_alternaterevisionbarpositioninprinteddocument_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_alternaterevisionbarpositioninprinteddocument_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_blockallunmanagedaddins", + "displayName": "Block all unmanaged add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_blockallunmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_blockallunmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_defaultcustomtab", + "displayName": "Show custom templates tab by default in Word on the Office Start screen and in File | New (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_defaultcustomtab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_defaultcustomtab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_disablemrulistinfontdropdown", + "displayName": "Disable MRU list in font dropdown (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_disablemrulistinfontdropdown_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_disablemrulistinfontdropdown_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_disableofficestartword", + "displayName": "Disable the Office Start screen for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_disableofficestartword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_disableofficestartword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_donotuseonlinemachinetranslation", + "displayName": "Do not use online machine translation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_donotuseonlinemachinetranslation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_donotuseonlinemachinetranslation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_donotuseonlinetranslationdictionaries", + "displayName": "Use online translation dictionaries (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_donotuseonlinetranslationdictionaries_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_donotuseonlinetranslationdictionaries_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_listofmanagedaddins", + "displayName": "List of managed add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_listofmanagedaddins_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_listofmanagedaddins_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_listofmanagedaddins_l_listofmanagedaddins2", + "displayName": "List of managed add-ins (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_listofmanagedaddins_l_listofmanagedaddins2_key", + "displayName": "Name", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_listofmanagedaddins_l_listofmanagedaddins2_value", + "displayName": "Value", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_personaltemplatespath", + "displayName": "Personal templates path for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_personaltemplatespath_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_personaltemplatespath_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_personaltemplatespath_l_personaltemplatespath", + "displayName": "Personal templates path (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_showpeople", + "displayName": "Show pictures in comments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_showpeople_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_showpeople_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_toolscompareandmergedocumentslegalblackline", + "displayName": "Tools | Compare and Merge Documents, Legal blackline (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_toolscompareandmergedocumentslegalblackline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_toolscompareandmergedocumentslegalblackline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_volumepreference", + "displayName": "Volume preference (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_volumepreference_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_volumepreference_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_volumepreference_l_volumepreference179", + "displayName": "Volume preference (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_volumepreference_l_volumepreference179_0", + "displayName": "Use Drive letter or UNC as entered", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_volumepreference_l_volumepreference179_2", + "displayName": "Convert Drive letter to UNC", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178_l_volumepreference_l_volumepreference179_1", + "displayName": "Convert UNC to Drive letter", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp", + "displayName": "Turn off file synchronization via SOAP over HTTP (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_miscellaneous178~l_serversettings_l_turnofffilesynchronizationviasoapoverhttp_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_convertcommonterms", + "displayName": "Convert common terms (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_convertcommonterms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_convertcommonterms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_translationdirection", + "displayName": "Translation direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_translationdirection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_translationdirection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_translationdirection_l_translationdirection96", + "displayName": "Translation direction (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_translationdirection_l_translationdirection96_2052", + "displayName": "Traditional Chinese to Simplified Chinese", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_translationdirection_l_translationdirection96_1028", + "displayName": "Simplified Chinese to Traditional Chinese", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_usetaiwanhongkongsarandmacaosarcharactervariants", + "displayName": "Use Taiwan, Hong Kong SAR and Macao SAR character variants (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_usetaiwanhongkongsarandmacaosarcharactervariants_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewchinesetranslation_l_usetaiwanhongkongsarandmacaosarcharactervariants_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewsetlanguage_l_detectlanguageautomatically", + "displayName": "Detect language automatically (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewsetlanguage_l_detectlanguageautomatically_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_reviewtab~l_reviewsetlanguage_l_detectlanguageautomatically_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_addbidirectionalmarkswhensavingtextfiles", + "displayName": "Add Bi-Directional Marks when saving Text files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_addbidirectionalmarkswhensavingtextfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_addbidirectionalmarkswhensavingtextfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_addcontrolcharactersincutandcopy", + "displayName": "Add control characters in Cut and Copy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_addcontrolcharactersincutandcopy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_addcontrolcharactersincutandcopy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_adddoublequoteforhebrewalphabetnumbering", + "displayName": "Add double quote for Hebrew alphabet numbering (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_adddoublequoteforhebrewalphabetnumbering_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_adddoublequoteforhebrewalphabetnumbering_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowa4letterpaperresizing", + "displayName": "Scale content for A4 or 8.5'' x 11'' paper sizes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowa4letterpaperresizing_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowa4letterpaperresizing_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowaccenteduppercaseinfrench", + "displayName": "Allow accented uppercase in French (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowaccenteduppercaseinfrench_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowaccenteduppercaseinfrench_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowbackgroundsaves", + "displayName": "Allow background saves (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowbackgroundsaves_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_allowbackgroundsaves_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_alwayscreatebackupcopy", + "displayName": "Always create backup copy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_alwayscreatebackupcopy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_alwayscreatebackupcopy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_asianfontsalsoapplytolatintext", + "displayName": "Asian fonts also apply to Latin text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_asianfontsalsoapplytolatintext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_asianfontsalsoapplytolatintext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_autokeyboardswitching", + "displayName": "Auto-Keyboard switching (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_autokeyboardswitching_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_autokeyboardswitching_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_automaticallycreatedrawingcanvaswheninsertingautoshapes", + "displayName": "Automatically create drawing canvas when inserting AutoShapes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_automaticallycreatedrawingcanvaswheninsertingautoshapes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_automaticallycreatedrawingcanvaswheninsertingautoshapes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_backgroundprinting", + "displayName": "Print in background (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_backgroundprinting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_backgroundprinting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_backofthesheet", + "displayName": "Print on back of the sheet for duplex printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_backofthesheet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_backofthesheet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_bookmarks", + "displayName": "Show bookmarks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_bookmarks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_bookmarks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_chartreftrackingenabled", + "displayName": "Allow formatting and labels to track data points (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_chartreftrackingenabled_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_chartreftrackingenabled_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_confirmconversionatopen", + "displayName": "Confirm file format conversion on open (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_confirmconversionatopen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_confirmconversionatopen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_controlcharacters", + "displayName": "Show control characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_controlcharacters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_controlcharacters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_copyremotelystoredfiles", + "displayName": "Copy remotely stored files onto your computer, and update the remote file when saving (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_copyremotelystoredfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_copyremotelystoredfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning", + "displayName": "Custom markup warning (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_l_custommarkupwarningdropid", + "displayName": "Custom markup warning: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_l_custommarkupwarningdropid_0", + "displayName": "Do not prompt", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_l_custommarkupwarningdropid_1", + "displayName": "Prompt", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_l_custommarkupwarningdropid_2", + "displayName": "Always prompt", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_l_custommarkupwarningdropid_3", + "displayName": "Prompt and open the file read-only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_l_custommarkupwarningdropid_4", + "displayName": "Always prompt and open the file read-only", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_custommarkupwarning_l_custommarkupwarningdropid_5", + "displayName": "Do not prompt and open the file read-only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_diacritics", + "displayName": "Diacritics (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_diacritics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_diacritics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_differentcolorfordiacritics", + "displayName": "Use this color for diacritics (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_differentcolorfordiacritics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_differentcolorfordiacritics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_documentview", + "displayName": "Document view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_documentview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_documentview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_documentview_l_documentview7", + "displayName": "Document view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_documentview_l_documentview7_1", + "displayName": "Right-to-left", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_documentview_l_documentview7_0", + "displayName": "Left-to-Right", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draftfont", + "displayName": "Use draft font in Draft and Outline views (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draftfont_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draftfont_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draftoutput", + "displayName": "Use draft quality (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draftoutput_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draftoutput_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draganddroptextediting", + "displayName": "Allow text to be dragged and dropped (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draganddroptextediting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_draganddroptextediting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_drawings", + "displayName": "Show drawings and text boxes on screen (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_drawings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_drawings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_enableclickandtype", + "displayName": "Enable click and type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_enableclickandtype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_enableclickandtype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_englishword6095documents", + "displayName": "English Word 6.0/95 documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_englishword6095documents_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_englishword6095documents_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_englishword6095documents_l_englishword6095documents11", + "displayName": "English Word 6.0/95 documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_englishword6095documents_l_englishword6095documents11_0", + "displayName": "Contain Asian text", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_englishword6095documents_l_englishword6095documents11_1", + "displayName": "Open normally", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_englishword6095documents_l_englishword6095documents11_2", + "displayName": "Automatically detect Asian text", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_expandcollapseuimaximumzoomlevel", + "displayName": "Set the maximum zoom level for expand / collapse on-object UI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_expandcollapseuimaximumzoomlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_expandcollapseuimaximumzoomlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_expandcollapseuimaximumzoomlevel_l_setexpandcollapseuimaximumzoomlevelspinid", + "displayName": "Set the maximum zoom level for expand / collapse on-object UI (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_expandcollapseuiminimumzoomlevel", + "displayName": "Set the minimum zoom level for expand / collapse on-object UI (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_expandcollapseuiminimumzoomlevel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_expandcollapseuiminimumzoomlevel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_expandcollapseuiminimumzoomlevel_l_setexpandcollapseuiminimumzoomlevelspinid", + "displayName": "Set the minimum zoom level for expand / collapse on-object UI (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldcodes", + "displayName": "Show field codes instead of their values (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldcodes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldcodes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldshading", + "displayName": "Field shading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldshading_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldshading_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldshading_l_fieldshading6", + "displayName": "Field shading (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldshading_l_fieldshading6_0", + "displayName": "Never", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldshading_l_fieldshading6_1", + "displayName": "Always", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_fieldshading_l_fieldshading6_2", + "displayName": "When selected", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_frontofsheet", + "displayName": "Print on front of the sheet for duplex printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_frontofsheet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_frontofsheet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_horizontalscrollbar", + "displayName": "Show horizontal scroll bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_horizontalscrollbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_horizontalscrollbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_imecontrolactive", + "displayName": "IME Control Active (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_imecontrolactive_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_imecontrolactive_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_imetrueinline", + "displayName": "IME TrueInLine (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_imetrueinline_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_imetrueinline_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_keeptrackofformatting", + "displayName": "Keep track of formatting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_keeptrackofformatting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_keeptrackofformatting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_leftscrollbar", + "displayName": "Left scroll bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_leftscrollbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_leftscrollbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies", + "displayName": "Mark formatting inconsistencies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_checktoenforcesettingonunchecktoenforcesettingoff18", + "displayName": "Check to enforce setting on; uncheck to enforce setting off (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_checktoenforcesettingonunchecktoenforcesettingoff18_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_checktoenforcesettingonunchecktoenforcesettingoff18_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies", + "displayName": "Color for marking formatting inconsistencies (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_0", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_255", + "displayName": "Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_128", + "displayName": "Dark Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_3368703", + "displayName": "Light Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_52479", + "displayName": "Sky Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_10079487", + "displayName": "Pale Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_6710937", + "displayName": "Blue Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_65280", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_32768", + "displayName": "Dark Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_13056", + "displayName": "Darker Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_13434828", + "displayName": "Light Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_3355392", + "displayName": "Olive Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_3381606", + "displayName": "Sea Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16711680", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_8388608", + "displayName": "Dark Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16776960", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_8421376", + "displayName": "Dark Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16777113", + "displayName": "Light Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16777215", + "displayName": "White", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_10040064", + "displayName": "Brown", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16737792", + "displayName": "Orange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16750848", + "displayName": "Light Orange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_65535", + "displayName": "Cyan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_32896", + "displayName": "Dark Cyan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_13434879", + "displayName": "Light Cyan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16711935", + "displayName": "Magenta", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_8388736", + "displayName": "Dark Magenta", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_13158", + "displayName": "Dark Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_3355545", + "displayName": "Indigo", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_10079232", + "displayName": "Lime", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_3394764", + "displayName": "Aqua", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16763904", + "displayName": "Gold", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_10040166", + "displayName": "Plum", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16751052", + "displayName": "Rose", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_16764057", + "displayName": "Tan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_13408767", + "displayName": "Lavender", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_8421504", + "displayName": "Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_markformattinginconsistencies_l_colorformarkingformattinginconsistencies_12632256", + "displayName": "Gray 25%", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits", + "displayName": "Show measurements in units of (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits_l_selectunits", + "displayName": "Select units: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits_l_selectunits_0", + "displayName": "Inches", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits_l_selectunits_2", + "displayName": "Centimeters", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits_l_selectunits_4", + "displayName": "Millimeters", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits_l_selectunits_1", + "displayName": "Points", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_measurementunits_l_selectunits_3", + "displayName": "Picas", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_monthnames", + "displayName": "Month names (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_monthnames_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_monthnames_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_monthnames_l_monthnames17", + "displayName": "Month names (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_monthnames_l_monthnames17_0", + "displayName": "Arabic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_monthnames_l_monthnames17_1", + "displayName": "English transliterated", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_monthnames_l_monthnames17_2", + "displayName": "French transliterated", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_movement", + "displayName": "Cursor movement (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_movement_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_movement_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_movement_l_movement4", + "displayName": "Cursor movement (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_movement_l_movement4_0", + "displayName": "Logical", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_movement_l_movement4_1", + "displayName": "Visual", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_numeral", + "displayName": "Numeral (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_numeral_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_numeral_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_numeral_l_numeral16", + "displayName": "Numeral (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_numeral_l_numeral16_0", + "displayName": "Arabic", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_numeral_l_numeral16_1", + "displayName": "Hindi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_numeral_l_numeral16_2", + "displayName": "Context", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_numeral_l_numeral16_3", + "displayName": "System", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_pictureplaceholders", + "displayName": "Show picture placeholders (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_pictureplaceholders_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_pictureplaceholders_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_promptbeforesavingnormaltemplate", + "displayName": "Prompt before saving Normal template (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_promptbeforesavingnormaltemplate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_promptbeforesavingnormaltemplate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_prompttoupdatestyle", + "displayName": "Prompt to update style (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_prompttoupdatestyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_prompttoupdatestyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_providefeedbackwithanimation", + "displayName": "Provide feedback with animation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_providefeedbackwithanimation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_providefeedbackwithanimation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_recentlyusedfilelist", + "displayName": "Number of documents in the Recent Documents list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_recentlyusedfilelist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_recentlyusedfilelist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_recentlyusedfilelist_l_numberofentries", + "displayName": "Number of entries: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_reverseprintorder", + "displayName": "Print pages in reverse order (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_reverseprintorder_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_reverseprintorder_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_setnumberofplacesintherecentplaceslist", + "displayName": "Number of folders in the Recent Folders list (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_setnumberofplacesintherecentplaceslist_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_setnumberofplacesintherecentplaceslist_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_setnumberofplacesintherecentplaceslist_l_setnumberofplacesintherecentplaceslistspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_showpixelsforhtmlfeatures", + "displayName": "Show pixels for HTML features (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_showpixelsforhtmlfeatures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_showpixelsforhtmlfeatures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth", + "displayName": "Style area pane width in Draft and Outline views (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8", + "displayName": "Style area pane width in Draft and Outline views (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_0", + "displayName": "0''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_24", + "displayName": "0.25''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_48", + "displayName": "0.5''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_72", + "displayName": "0.75''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_96", + "displayName": "1''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_120", + "displayName": "1.25''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_144", + "displayName": "1.5''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_168", + "displayName": "1.75''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_192", + "displayName": "2''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_216", + "displayName": "2.25''", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_styleareawidth_l_styleareawidth8_240", + "displayName": "2.5''", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_textboundaries", + "displayName": "Show text boundaries (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_textboundaries_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_textboundaries_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_typeandreplace", + "displayName": "Type and replace (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_typeandreplace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_typeandreplace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_typingreplacesselection", + "displayName": "Typing replaces selected text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_typingreplacesselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_typingreplacesselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_updateautomaticlinksatopen", + "displayName": "Update automatic links at Open (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_updateautomaticlinksatopen_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_updateautomaticlinksatopen_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usecharacterunits", + "displayName": "Show measurements in width of characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usecharacterunits_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usecharacterunits_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usectrlclicktofollowhyperlink", + "displayName": "Use CTRL + Click to follow hyperlink (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usectrlclicktofollowhyperlink_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usectrlclicktofollowhyperlink_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usesequencechecking", + "displayName": "Use sequence checking (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usesequencechecking_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usesequencechecking_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usesmartparagraphselection", + "displayName": "Use smart paragraph selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usesmartparagraphselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usesmartparagraphselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usetheinskeyforpaste", + "displayName": "Use the Insert key for paste (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usetheinskeyforpaste_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_usetheinskeyforpaste_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_verticalrulerprintviewonly", + "displayName": "Show vertical ruler in Print Layout view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_verticalrulerprintviewonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_verticalrulerprintviewonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_verticalscrollbar", + "displayName": "Show vertical scroll bar (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_verticalscrollbar_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_verticalscrollbar_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_visualselection", + "displayName": "Cursor visual selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_visualselection_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_visualselection_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_visualselection_l_visualselection5", + "displayName": "Cursor visual selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_visualselection_l_visualselection5_0", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_visualselection_l_visualselection5_1", + "displayName": "Continuous", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_whenselectingautomaticallyselectentireword", + "displayName": "When selecting, automatically select entire word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_whenselectingautomaticallyselectentireword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_whenselectingautomaticallyselectentireword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_wraptowindow", + "displayName": "Show text wrapped within the document window (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_wraptowindow_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced_l_wraptowindow_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_relyoncssforfontformatting", + "displayName": "Rely on CSS for font formatting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_relyoncssforfontformatting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_relyoncssforfontformatting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_autorecoverfiles", + "displayName": "AutoRecover files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_autorecoverfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_autorecoverfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_autorecoverfiles_l_autorecoverfiles13", + "displayName": "AutoRecover files (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_clipartpictures", + "displayName": "Clipart pictures (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_clipartpictures_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_clipartpictures_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_clipartpictures_l_clipartpictures12", + "displayName": "Clipart pictures (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_defaultfilelocation", + "displayName": "Default File Location (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_defaultfilelocation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_defaultfilelocation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_defaultfilelocation_l_documents", + "displayName": "Documents (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_startup", + "displayName": "Startup (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_startup_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_startup_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_startup_l_startup15", + "displayName": "Startup (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_tools", + "displayName": "Tools (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_tools_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_tools_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_filelocations_l_tools_l_tools14", + "displayName": "Tools (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustformattingwhenpastingfrommicrosoftexcel", + "displayName": "Adjust formatting when pasting from Microsoft Excel (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustformattingwhenpastingfrommicrosoftexcel_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustformattingwhenpastingfrommicrosoftexcel_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustparagraphspacingonpaste", + "displayName": "Adjust paragraph spacing on paste (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustparagraphspacingonpaste_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustparagraphspacingonpaste_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustsentenceandwordspacingautomatically", + "displayName": "Adjust sentence and word spacing automatically (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustsentenceandwordspacingautomatically_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjustsentenceandwordspacingautomatically_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjusttableformattingandalignmentonpaste", + "displayName": "Adjust table formatting and alignment on paste (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjusttableformattingandalignmentonpaste_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_adjusttableformattingandalignmentonpaste_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_mergeformattingwhenpastingfrompowerpoint", + "displayName": "Merge formatting when pasting from PowerPoint (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_mergeformattingwhenpastingfrompowerpoint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_mergeformattingwhenpastingfrompowerpoint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_mergepastedlistswithsurroundinglists", + "displayName": "Merge pasted lists with surrounding lists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_mergepastedlistswithsurroundinglists_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_mergepastedlistswithsurroundinglists_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_smartstylebehavior", + "displayName": "Smart style behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_smartstylebehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_smartcutandpaste_l_smartstylebehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_weboptions~l_browser_l_disablefeaturesnotsupportedbyspecifiedbrowsers", + "displayName": "Disable features not supported by specified browsers (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_weboptions~l_browser_l_disablefeaturesnotsupportedbyspecifiedbrowsers_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_weboptions~l_browser_l_disablefeaturesnotsupportedbyspecifiedbrowsers_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_weboptions~l_files_l_checkifwordisthedefaulteditorforallotherwebpages", + "displayName": "Check if Word is the default editor for all other Web pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_weboptions~l_files_l_checkifwordisthedefaulteditorforallotherwebpages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_weboptions~l_files_l_checkifwordisthedefaulteditorforallotherwebpages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_documentproperties", + "displayName": "Print document properties (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_documentproperties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_documentproperties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_drawingobjects", + "displayName": "Print drawings created in Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_drawingobjects_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_drawingobjects_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_hiddentext", + "displayName": "Hidden text (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_hiddentext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_hiddentext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_highlight", + "displayName": "Show highlighter marks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_highlight_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_highlight_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_objectanchors", + "displayName": "Object anchors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_objectanchors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_objectanchors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_optionalbreaks", + "displayName": "Optional breaks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_optionalbreaks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_optionalbreaks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_optionalhyphens", + "displayName": "Optional hyphens (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_optionalhyphens_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_optionalhyphens_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_paragraphmarks", + "displayName": "Paragraph marks (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_paragraphmarks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_paragraphmarks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_screentips", + "displayName": "Show document tooltips on hover (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_screentips_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_screentips_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_spaces", + "displayName": "Spaces (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_spaces_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_spaces_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_tabcharacters", + "displayName": "Tab characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_tabcharacters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_tabcharacters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_updatefields", + "displayName": "Update fields before printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_updatefields_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_updatefields_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_updatelinks", + "displayName": "Update linked data before printing (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_updatelinks_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_updatelinks_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_whitespacebetweenpagesprintviewonly", + "displayName": "Show white space between pages in Print Layout view (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_whitespacebetweenpagesprintviewonly_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_display_l_whitespacebetweenpagesprintviewonly_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionscustomizeribbon_l_displaydevelopertab", + "displayName": "Display Developer tab in the Ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionscustomizeribbon_l_displaydevelopertab_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionscustomizeribbon_l_displaydevelopertab_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_alertifnotdefault", + "displayName": "Prompt the user if Word is not the default application for its file extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_alertifnotdefault_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_alertifnotdefault_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_allowselectionfloaties", + "displayName": "Show Mini Toolbar on selection (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_allowselectionfloaties_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_allowselectionfloaties_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_digitalprint", + "displayName": "Don't show the option to transform a document to a Sway web page (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_digitalprint_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_digitalprint_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_enablelivepreview", + "displayName": "Enable Live Preview (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_enablelivepreview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_enablelivepreview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_linkedinresumeassistant", + "displayName": "Allow LinkedIn Resume Assistant feature (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_linkedinresumeassistant_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_linkedinresumeassistant_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_onlinevideos", + "displayName": "Allow Online Videos to play within Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_onlinevideos_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_onlinevideos_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_openattachmentsforfullscreenreading", + "displayName": "Open e-mail attachments in Reading View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_openattachmentsforfullscreenreading_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_openattachmentsforfullscreenreading_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_openattachmentsforfullscreenreading_l_checktoallowstartinginreadinglayout", + "displayName": "Check to allow starting in Reading Layout (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_openattachmentsforfullscreenreading_l_checktoallowstartinginreadinglayout_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_openattachmentsforfullscreenreading_l_checktoallowstartinginreadinglayout_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype", + "displayName": "Mark grammar errors as you type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_checktoenforcesettingonunchecktoenforcesettingoff0", + "displayName": "Check to enforce setting on; uncheck to enforce setting off (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_checktoenforcesettingonunchecktoenforcesettingoff0_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_checktoenforcesettingonunchecktoenforcesettingoff0_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors", + "displayName": "Color for marking grammatical errors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_0", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_255", + "displayName": "Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_128", + "displayName": "Dark Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_3368703", + "displayName": "Light Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_52479", + "displayName": "Sky Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_10079487", + "displayName": "Pale Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_6710937", + "displayName": "Blue Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_65280", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_32768", + "displayName": "Dark Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_13056", + "displayName": "Darker Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_13434828", + "displayName": "Light Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_3355392", + "displayName": "Olive Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_3381606", + "displayName": "Sea Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16711680", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_8388608", + "displayName": "Dark Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16776960", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_8421376", + "displayName": "Dark Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16777113", + "displayName": "Light Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16777215", + "displayName": "White", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_10040064", + "displayName": "Brown", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16737792", + "displayName": "Orange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16750848", + "displayName": "Light Orange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_65535", + "displayName": "Cyan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_32896", + "displayName": "Dark Cyan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_13434879", + "displayName": "Light Cyan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16711935", + "displayName": "Magenta", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_8388736", + "displayName": "Dark Magenta", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_13158", + "displayName": "Dark Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_3355545", + "displayName": "Indigo", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_10079232", + "displayName": "Lime", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_3394764", + "displayName": "Aqua", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16763904", + "displayName": "Gold", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_10040166", + "displayName": "Plum", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16751052", + "displayName": "Rose", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_16764057", + "displayName": "Tan", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_13408767", + "displayName": "Lavender", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_8421504", + "displayName": "Gray", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarasyoutype_l_colorformarkinggrammaticalerrors_12632256", + "displayName": "Gray 25%", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarwithspelling", + "displayName": "Check grammar with spelling (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarwithspelling_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_checkgrammarwithspelling_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_delaybeforestartingbackgroundspellingchecker", + "displayName": "Delay before starting background spelling checker (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_delaybeforestartingbackgroundspellingchecker_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_delaybeforestartingbackgroundspellingchecker_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_delaybeforestartingbackgroundspellingchecker_l_delaybeforestartingbackgroundspellingchecker3", + "displayName": "Milliseconds (e.g. 5000 milliseconds = 5 seconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_delaybeforestartingotherproofingtools", + "displayName": "Delay before starting other proofing tools (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_delaybeforestartingotherproofingtools_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_delaybeforestartingotherproofingtools_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_delaybeforestartingotherproofingtools_l_delaybeforestartingbackgroundgrammarchecker3", + "displayName": "Milliseconds (e.g. 5000 milliseconds = 5 seconds) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_donotenableadditionalactionsintherightclickmenu", + "displayName": "Do not enable additional actions in the right-click menu (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_donotenableadditionalactionsintherightclickmenu_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_donotenableadditionalactionsintherightclickmenu_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_showreadabilitystatistics", + "displayName": "Show readability statistics (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_showreadabilitystatistics_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_showreadabilitystatistics_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_writingstyle", + "displayName": "Writing style (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_writingstyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_writingstyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_writingstyle_l_writingstyle1", + "displayName": "Writing style (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_writingstyle_l_writingstyle1_0", + "displayName": "Grammar & Style", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing_l_writingstyle_l_writingstyle1_1", + "displayName": "Grammar Only", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_capitalizefirstletterofsentence", + "displayName": "Capitalize first letter of sentence (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_capitalizefirstletterofsentence_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_capitalizefirstletterofsentence_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_capitalizenamesofdays", + "displayName": "Capitalize names of days (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_capitalizenamesofdays_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_capitalizenamesofdays_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correctaccidentalusageofcapslockkey", + "displayName": "Correct accidental usage of cAPS LOCK key (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correctaccidentalusageofcapslockkey_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correctaccidentalusageofcapslockkey_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correctkeyboardsetting", + "displayName": "Correct keyboard setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correctkeyboardsetting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correctkeyboardsetting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correcttwoinitialcapitals", + "displayName": "Correct TWo INitial CApitals (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correcttwoinitialcapitals_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_correcttwoinitialcapitals_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_replacetextasyoutype", + "displayName": "Replace text as you type (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_replacetextasyoutype_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autocorrect_l_replacetextasyoutype_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_automaticbulletedlists", + "displayName": "Automatic bulleted lists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_automaticbulletedlists_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_automaticbulletedlists_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_automaticnumberedlists", + "displayName": "Automatic numbered lists (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_automaticnumberedlists_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_automaticnumberedlists_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_borderlines", + "displayName": "Border lines (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_borderlines_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_borderlines_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_closingstyletoletterclosings", + "displayName": "Closing style to letter closings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_closingstyletoletterclosings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_closingstyletoletterclosings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_datestyle", + "displayName": "Date style (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_datestyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_datestyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_headings", + "displayName": "Headings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_headings_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_headings_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_tables", + "displayName": "Tables (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_tables_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_applyasyoutype_l_tables_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_autospace", + "displayName": "Auto space (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_autospace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_autospace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_definestylesbasedonyourformatting", + "displayName": "Define styles based on your formatting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_definestylesbasedonyourformatting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_definestylesbasedonyourformatting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_formatbeginningoflistitemliketheonebeforeit", + "displayName": "Format beginning of list item like the one before it (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_formatbeginningoflistitemliketheonebeforeit_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_formatbeginningoflistitemliketheonebeforeit_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_insertclosingphrasetomatchjapanesesalutation", + "displayName": "Insert closing phrase to match Japanese salutation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_insertclosingphrasetomatchjapanesesalutation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_insertclosingphrasetomatchjapanesesalutation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_insertclosingphrasetomatchmemostyle", + "displayName": "Insert closing phrase to match memo style (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_insertclosingphrasetomatchmemostyle_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_insertclosingphrasetomatchmemostyle_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_matchparentheses", + "displayName": "Match parentheses (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_matchparentheses_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_matchparentheses_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_setleftindentontabsandbackspace", + "displayName": "Set left indent on tabs and backspace (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_setleftindentontabsandbackspace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_automaticallyasyoutype_l_setleftindentontabsandbackspace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_boldand_italic_withrealformatting", + "displayName": "*Bold* and _italic_ with real formatting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_boldand_italic_withrealformatting_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_boldand_italic_withrealformatting_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_dashlikecharacters", + "displayName": "Dash-like characters (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_dashlikecharacters_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_dashlikecharacters_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_firstlineindent", + "displayName": "First line indent (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_firstlineindent_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_firstlineindent_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_fractions12withfractioncharacter", + "displayName": "Fractions (1/2) with fraction character (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_fractions12withfractioncharacter_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_fractions12withfractioncharacter_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_ordinals1stwithsuperscript", + "displayName": "Ordinals (1st) with superscript (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_ordinals1stwithsuperscript_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_ordinals1stwithsuperscript_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_straightquoteswithsmartquotes", + "displayName": "Straight quotes with smart quotes (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_straightquoteswithsmartquotes_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_straightquoteswithsmartquotes_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_symbolcharacterswithsymbols", + "displayName": "Symbol characters (--) with symbols (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_symbolcharacterswithsymbols_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_proofing~l_autoformatasyoutype~l_replaceasyoutype_l_symbolcharacterswithsymbols_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_compatmodeonsaveas", + "displayName": "Save As Open XML in Compatibility Mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_compatmodeonsaveas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_compatmodeonsaveas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_donotdisplayfileformatcompatiblitydialogforodt", + "displayName": "Do not display file format compatibility dialog box for OpenDocument text format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_donotdisplayfileformatcompatiblitydialogforodt_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_donotdisplayfileformatcompatiblitydialogforodt_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_keeplastautosavedversions", + "displayName": "Keep the last AutoSaved versions of files for the next session (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_keeplastautosavedversions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_keeplastautosavedversions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_saveautorecoverinfo", + "displayName": "Save AutoRecover info (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_saveautorecoverinfo_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_saveautorecoverinfo_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_saveautorecoverinfo_l_saveautorecoverinfoeveryminutes", + "displayName": "Save AutoRecover info every (minutes) (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas", + "displayName": "Default file format (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3", + "displayName": "Save Word files as (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_", + "displayName": "Word Document (*.docx)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_webarchive", + "displayName": "Single Files Web Page (*.mht)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_html", + "displayName": "Web Page (*.htm; *.html)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_reducedhtml", + "displayName": "Web Page, Filtered (*.htm, *.html)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_rtf", + "displayName": "Rich Text Format (*.rtf)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_text", + "displayName": "Plain Text (*.txt)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_msword6exp", + "displayName": "Word 6.0/95 (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_msword6scexp", + "displayName": "Word 6.0/95 - Chinese (Simplified) (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_msword6tcexp", + "displayName": "Word 6.0/95 - Chinese (Traditional) (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_msword6jexp", + "displayName": "Word 6.0/95 - Japanese (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_msword95kexp", + "displayName": "Word 6.0/95 - Korean (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_msword6rtfexp", + "displayName": "Word 97-2002 & 6.0/95 - RTF", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_mswordmac51", + "displayName": "Word 5.1 for Macintosh (*.mcw)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_mswordmac5", + "displayName": "Word 5.0 for Macintosh (*.mcw)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_mswordwin2", + "displayName": "Word 2.x for Windows (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_msworkswin4", + "displayName": "Works 4.0 for Windows (*.wps)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_wrdprfctwin", + "displayName": "WordPerfect 5.x for Windows (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_wrdprfctdos51", + "displayName": "WordPerfect 5.1 for DOS (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_macroenableddocument", + "displayName": "Word Macro-Enabled Document (*.docm)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_template", + "displayName": "Word Template (*.dotx)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_macroenabledtemplate", + "displayName": "Word Macro-Enabled Template (*.dotm)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_doc", + "displayName": "Word 97 - 2003 Document (*.doc)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_dot", + "displayName": "Word 97 - 2003 Template (*.dot)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_flatxml", + "displayName": "Word XML Document (*.xml)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_docxstrict", + "displayName": "Strict Open XML Document (*.docx)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_savewordfilesas_l_savewordfilesas3_odt", + "displayName": "OpenDocument Text (*.odt)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_setdefaultcompatibilitymodeonfilecreation", + "displayName": "Set default compatibility mode on file creation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_setdefaultcompatibilitymodeonfilecreation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_setdefaultcompatibilitymodeonfilecreation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_setdefaultcompatibilitymodeonfilecreation_l_setdefaultcompatibilitymodeonfilecreationdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_setdefaultcompatibilitymodeonfilecreation_l_setdefaultcompatibilitymodeonfilecreationdropid_11", + "displayName": "Word 2003", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_setdefaultcompatibilitymodeonfilecreation_l_setdefaultcompatibilitymodeonfilecreationdropid_12", + "displayName": "Word 2007", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_setdefaultcompatibilitymodeonfilecreation_l_setdefaultcompatibilitymodeonfilecreationdropid_14", + "displayName": "Word 2010", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_save_l_setdefaultcompatibilitymodeonfilecreation_l_setdefaultcompatibilitymodeonfilecreationdropid_15", + "displayName": "Full functionality mode", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_disableirmonxpsexport", + "displayName": "Turn off IRM protection on XPS Export for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_disableirmonxpsexport_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_disableirmonxpsexport_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_disablewarningonincludefieldsupdate", + "displayName": "Don’t ask permission before updating IncludePicture and IncludeText fields in Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_disablewarningonincludefieldsupdate_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_disablewarningonincludefieldsupdate_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_makehiddenmarkupvisible", + "displayName": "Make hidden markup visible (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_makehiddenmarkupvisible_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_makehiddenmarkupvisible_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_storerandomnumbertoimprovemergeaccuracy", + "displayName": "Store random number to improve merge accuracy (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_storerandomnumbertoimprovemergeaccuracy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_storerandomnumbertoimprovemergeaccuracy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_turnofffilevalidation", + "displayName": "Turn off file validation (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_turnofffilevalidation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_turnofffilevalidation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_warnbeforeprintingsavingorsendingafilethatcontainstrackedcha", + "displayName": "Warn before printing, saving or sending a file that contains tracked changes or comments (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_warnbeforeprintingsavingorsendingafilethatcontainstrackedcha_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security_l_warnbeforeprintingsavingorsendingafilethatcontainstrackedcha_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_configurecngcipherchainingmode", + "displayName": "Configure CNG cipher chaining mode (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecbc", + "displayName": "Cipher Block Chaining (CBC)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_configurecngcipherchainingmode_l_configurecngcipherchainingmodedropid_chainingmodecfb", + "displayName": "Cipher Feedback (CFB)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngcipheralgorithm", + "displayName": "Set CNG cipher algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngcipheralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngcipheralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngcipheralgorithm_l_setcngcipheralgorithmid", + "displayName": "CNG cipher algorithm: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngcipherkeylength", + "displayName": "Set CNG cipher key length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngcipherkeylength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngcipherkeylength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngcipherkeylength_l_setcngcipherkeylengthspinid", + "displayName": "Cipher key length (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngpasswordspincount", + "displayName": "Set CNG password spin count (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngpasswordspincount_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngpasswordspincount_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setcngpasswordspincount_l_setcngpasswordspincountspinid", + "displayName": "", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setparametersforcngcontext", + "displayName": "Set parameters for CNG context (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setparametersforcngcontext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setparametersforcngcontext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_setparametersforcngcontext_l_setparametersforcngcontextid", + "displayName": "Parameters (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycnghashalgorithm", + "displayName": "Specify CNG hash algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycnghashalgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycnghashalgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha1", + "displayName": "SHA1", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha256", + "displayName": "SHA256", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha384", + "displayName": "SHA384", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycnghashalgorithm_l_specifycnghashalgorithmdropid_sha512", + "displayName": "SHA512", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm", + "displayName": "Specify CNG random number generator algorithm (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycngrandomnumbergeneratoralgorithm_l_specifycngrandomnumbergeneratoralgorithmid", + "displayName": "Random number generator: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycngsaltlength", + "displayName": "Specify CNG salt length (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycngsaltlength_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycngsaltlength_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifycngsaltlength_l_specifycngsaltlengthspinid", + "displayName": "Number of bytes (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifyencryptioncompatibility", + "displayName": "Specify encryption compatibility (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_0", + "displayName": "Use legacy format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_1", + "displayName": "Use next generation format", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_specifyencryptioncompatibility_l_specifyencryptioncompatibilitydropid_2", + "displayName": "All files save with next generation format", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_usenewkeyonpasswordchange", + "displayName": "Use new key on password change (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_usenewkeyonpasswordchange_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_cryptography_l_usenewkeyonpasswordchange_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowdde", + "displayName": "Dynamic Data Exchange (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowdde_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowdde_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowdde_l_allowddedropid", + "displayName": "Dynamic Data Exchange setting (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowdde_l_allowddedropid_1", + "displayName": "Limited Dynamic Data Exchange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowdde_l_allowddedropid_2", + "displayName": "Allow Dynamic Data Exchange", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowwordmailloadembeddedfonts", + "displayName": "Allow embedded TrueType fonts to be sent in messages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowwordmailloadembeddedfonts_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_allowwordmailloadembeddedfonts_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet", + "displayName": "Block macros from running in Office files from the Internet (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_blockmacroexecutionfrominternet_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_determinewhethertoforceencryptedword", + "displayName": "Scan encrypted macros in Word Open XML documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_determinewhethertoforceencryptedword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_determinewhethertoforceencryptedword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_determinewhethertoforceencryptedword_l_determinewhethertoforceencryptedworddropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_determinewhethertoforceencryptedword_l_determinewhethertoforceencryptedworddropid_0", + "displayName": "Scan encrypted macros (default)", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_determinewhethertoforceencryptedword_l_determinewhethertoforceencryptedworddropid_1", + "displayName": "Scan if anti-virus software available", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_determinewhethertoforceencryptedword_l_determinewhethertoforceencryptedworddropid_2", + "displayName": "Load macros without scanning", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disableallapplicationextensions", + "displayName": "Disable all application add-ins (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disableallapplicationextensions_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disableallapplicationextensions_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User) (Deprecated)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2", + "displayName": "Disable Trust Bar Notification for unsigned application add-ins and block them (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_disabletrustbarnotificationforunsigned_v2_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned", + "displayName": "Require that application add-ins are signed by Trusted Publisher (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_requirethatapplicationextensionsaresigned_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments", + "displayName": "Set maximum number of trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_setmaximumnumberoftrusteddocuments_l_setmaximumnumberoftrusteddocumentsspinid", + "displayName": "Maximum number: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve", + "displayName": "Set maximum number of trust records to preserve (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_setmaximumnumberoftrustrecordstopreserve_l_setmaximumnumberoftrustrecordstopreservespinid", + "displayName": "Maximum to preserve: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject", + "displayName": "Trust access to Visual Basic Project (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_trustaccesstovisualbasicproject_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_turnofftrusteddocuments", + "displayName": "Turn off trusted documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_turnofftrusteddocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_turnofftrusteddocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork", + "displayName": "Turn off Trusted Documents on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_turnofftrusteddocumentsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_vbawarningspolicy", + "displayName": "VBA Macro Notification Settings (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_vbawarningspolicy_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_vbawarningspolicy_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty19", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty19_2", + "displayName": "Disable all with notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty19_3", + "displayName": "Disable all except digitally signed macros", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty19_4", + "displayName": "Disable all without notification", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter_l_vbawarningspolicy_l_empty19_1", + "displayName": "Enable all macros (not recommended)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword", + "displayName": "Legacy converters for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_l_legacyconvertersforworddropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_l_legacyconvertersforworddropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_l_legacyconvertersforworddropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_l_legacyconvertersforworddropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_l_legacyconvertersforworddropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_l_legacyconvertersforworddropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_legacyconvertersforword_l_legacyconvertersforworddropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword", + "displayName": "Office Open XML converters for Word (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_l_officeopenxmlconvertersforworddropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_l_officeopenxmlconvertersforworddropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_l_officeopenxmlconvertersforworddropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_l_officeopenxmlconvertersforworddropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_l_officeopenxmlconvertersforworddropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_l_officeopenxmlconvertersforworddropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_officeopenxmlconvertersforword_l_officeopenxmlconvertersforworddropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles", + "displayName": "OpenDocument Text files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_l_opendocumenttextfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_l_opendocumenttextfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_l_opendocumenttextfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_l_opendocumenttextfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_l_opendocumenttextfilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_l_opendocumenttextfilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_opendocumenttextfiles_l_opendocumenttextfilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_plaintextfiles", + "displayName": "Plain text files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_plaintextfiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_plaintextfiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_plaintextfiles_l_plaintextfilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_plaintextfiles_l_plaintextfilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_plaintextfiles_l_plaintextfilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_plaintextfiles_l_plaintextfilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles", + "displayName": "RTF files (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_l_rtffilesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_l_rtffilesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_l_rtffilesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_l_rtffilesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_l_rtffilesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_l_rtffilesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_rtffiles_l_rtffilesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior", + "displayName": "Set default file block behavior (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_0", + "displayName": "Blocked files are not opened", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_1", + "displayName": "Blocked files open in Protected View and can not be edited", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_setdefaultfileblockbehavior_l_setdefaultfileblockbehaviordropid_2", + "displayName": "Blocked files open in Protected View and can be edited", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages", + "displayName": "Web pages (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_webpages_l_webpagesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates", + "displayName": "Word 2000 binary documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates_l_word2000binarydocumentsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates_l_word2000binarydocumentsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates_l_word2000binarydocumentsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates_l_word2000binarydocumentsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates_l_word2000binarydocumentsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2000binarydocumentsandtemplates_l_word2000binarydocumentsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments", + "displayName": "Word 2003 and plain XML documents (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_l_word2003andplainxmldocumentsdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_l_word2003andplainxmldocumentsdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_l_word2003andplainxmldocumentsdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_l_word2003andplainxmldocumentsdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_l_word2003andplainxmldocumentsdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_l_word2003andplainxmldocumentsdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003andplainxmldocuments_l_word2003andplainxmldocumentsdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates", + "displayName": "Word 2003 binary documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates_l_word2003binarydocumentsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates_l_word2003binarydocumentsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates_l_word2003binarydocumentsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates_l_word2003binarydocumentsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates_l_word2003binarydocumentsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2003binarydocumentsandtemplates_l_word2003binarydocumentsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates", + "displayName": "Word 2007 and later binary documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_l_word2007andlaterbinarydocumentsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_l_word2007andlaterbinarydocumentsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_l_word2007andlaterbinarydocumentsandtemplatesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_l_word2007andlaterbinarydocumentsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_l_word2007andlaterbinarydocumentsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_l_word2007andlaterbinarydocumentsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterbinarydocumentsandtemplates_l_word2007andlaterbinarydocumentsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates", + "displayName": "Word 2007 and later documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_l_word2007andlaterdocsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_l_word2007andlaterdocsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_l_word2007andlaterdocsandtemplatesdropid_1", + "displayName": "Save blocked", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_l_word2007andlaterdocsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_l_word2007andlaterdocsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_l_word2007andlaterdocsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2007andlaterdocsandtemplates_l_word2007andlaterdocsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates", + "displayName": "Word 2 and earlier binary documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates_l_word2andearlierbinarydocumentsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates_l_word2andearlierbinarydocumentsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates_l_word2andearlierbinarydocumentsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates_l_word2andearlierbinarydocumentsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates_l_word2andearlierbinarydocumentsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word2andearlierbinarydocumentsandtemplates_l_word2andearlierbinarydocumentsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates", + "displayName": "Word 6.0 binary documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates_l_word6pt0binarydocumentsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates_l_word6pt0binarydocumentsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates_l_word6pt0binarydocumentsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates_l_word6pt0binarydocumentsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates_l_word6pt0binarydocumentsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word6pt0binarydocumentsandtemplates_l_word6pt0binarydocumentsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates", + "displayName": "Word 95 binary documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates_l_word95binarydocumentsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates_l_word95binarydocumentsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates_l_word95binarydocumentsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates_l_word95binarydocumentsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates_l_word95binarydocumentsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word95binarydocumentsandtemplates_l_word95binarydocumentsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates", + "displayName": "Word 97 binary documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates_l_word97binarydocumentsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates_l_word97binarydocumentsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates_l_word97binarydocumentsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates_l_word97binarydocumentsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates_l_word97binarydocumentsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_word97binarydocumentsandtemplates_l_word97binarydocumentsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates", + "displayName": "Word XP binary documents and templates (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates_l_wordxpbinarydocumentsandtemplatesdropid", + "displayName": "File block setting: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates_l_wordxpbinarydocumentsandtemplatesdropid_0", + "displayName": "Do not block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates_l_wordxpbinarydocumentsandtemplatesdropid_2", + "displayName": "Open/Save blocked, use open policy", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates_l_wordxpbinarydocumentsandtemplatesdropid_3", + "displayName": "Block", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates_l_wordxpbinarydocumentsandtemplatesdropid_4", + "displayName": "Open in Protected View", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_fileblocksettings_l_wordxpbinarydocumentsandtemplates_l_wordxpbinarydocumentsandtemplatesdropid_5", + "displayName": "Allow editing and open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview", + "displayName": "Do not open files from the Internet zone in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesfromtheinternetzoneinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview", + "displayName": "Do not open files in unsafe locations in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_donotopenfilesinunsafelocationsinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview", + "displayName": "Open files on local Intranet UNC in Protected View (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_openfilesonlocalintranetuncinprotectedview_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails", + "displayName": "Set document behavior if file validation fails (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid_0", + "displayName": "Block files", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsdropid_1", + "displayName": "Open in Protected View", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3", + "displayName": "Checked: Allow edit. Unchecked: Do not allow edit. (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_setdocumentbehavioriffilevalidationfails_l_setdocumentbehavioriffilevalidationfailsstr3_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook", + "displayName": "Turn off Protected View for attachments opened from Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_protectedview_l_turnoffprotectedviewforattachmentsopenedfromoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork", + "displayName": "Allow Trusted Locations on the network (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_allowtrustedlocationsonthenetwork_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc", + "displayName": "Disable all trusted locations (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_disabletrustedloc_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01", + "displayName": "Trusted Location #1 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_allowsubfolders_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_datecolon", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_descriptioncolon", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc01_l_pathcolon", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02", + "displayName": "Trusted Location #2 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders23", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders23_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_allowsubfolders23_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_datecolon21", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_descriptioncolon22", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc02_l_pathcolon20", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03", + "displayName": "Trusted Location #3 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders27", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders27_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_allowsubfolders27_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_datecolon25", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_descriptioncolon26", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc03_l_pathcolon24", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04", + "displayName": "Trusted Location #4 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders31", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders31_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_allowsubfolders31_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_datecolon29", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_descriptioncolon30", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc04_l_pathcolon28", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05", + "displayName": "Trusted Location #5 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders35", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders35_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_allowsubfolders35_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_datecolon33", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_descriptioncolon34", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc05_l_pathcolon32", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06", + "displayName": "Trusted Location #6 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders39", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders39_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_allowsubfolders39_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_datecolon37", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_descriptioncolon38", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc06_l_pathcolon36", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07", + "displayName": "Trusted Location #7 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders43", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders43_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_allowsubfolders43_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_datecolon41", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_descriptioncolon42", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc07_l_pathcolon40", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08", + "displayName": "Trusted Location #8 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders47", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders47_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_allowsubfolders47_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_datecolon45", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_descriptioncolon46", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc08_l_pathcolon44", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09", + "displayName": "Trusted Location #9 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders51", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders51_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_allowsubfolders51_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_datecolon49", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_descriptioncolon50", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc09_l_pathcolon48", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10", + "displayName": "Trusted Location #10 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders55", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders55_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_allowsubfolders55_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_datecolon53", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_descriptioncolon54", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc10_l_pathcolon52", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11", + "displayName": "Trusted Location #11 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders59", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders59_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_allowsubfolders59_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_datecolon57", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_descriptioncolon58", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc11_l_pathcolon56", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12", + "displayName": "Trusted Location #12 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders63", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders63_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_allowsubfolders63_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_datecolon61", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_descriptioncolon62", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc12_l_pathcolon60", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13", + "displayName": "Trusted Location #13 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders67", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders67_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_allowsubfolders67_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_datecolon65", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_descriptioncolon66", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc13_l_pathcolon64", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14", + "displayName": "Trusted Location #14 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders71", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders71_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_allowsubfolders71_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_datecolon69", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_descriptioncolon70", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc14_l_pathcolon68", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15", + "displayName": "Trusted Location #15 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders75", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders75_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_allowsubfolders75_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_datecolon73", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_descriptioncolon74", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc15_l_pathcolon72", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16", + "displayName": "Trusted Location #16 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders79", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders79_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_allowsubfolders79_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_datecolon77", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_descriptioncolon78", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc16_l_pathcolon76", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17", + "displayName": "Trusted Location #17 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders83", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders83_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_allowsubfolders83_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_datecolon81", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_descriptioncolon82", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc17_l_pathcolon80", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18", + "displayName": "Trusted Location #18 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders87", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders87_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_allowsubfolders87_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_datecolon85", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_descriptioncolon86", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc18_l_pathcolon84", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19", + "displayName": "Trusted Location #19 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders91", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders91_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_allowsubfolders91_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_datecolon89", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_descriptioncolon90", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc19_l_pathcolon88", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20", + "displayName": "Trusted Location #20 (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders95", + "displayName": "Allow sub folders: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders95_0", + "displayName": "False", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_allowsubfolders95_1", + "displayName": "True", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_datecolon93", + "displayName": "Date: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_descriptioncolon94", + "displayName": "Description: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_security~l_trustcenter~l_trustedlocations_l_trustedloc20_l_pathcolon92", + "displayName": "Path: (User)", + "options": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_balloons", + "displayName": "Balloons (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_balloons_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_balloons_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_balloons_l_empty", + "displayName": "", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_balloons_l_empty_0", + "displayName": "Balloons on", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_balloons_l_empty_2", + "displayName": "Comments and formatting only in balloons", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_balloons_l_empty_1", + "displayName": "Balloons off (revisions inline)", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_compareresultingdocument", + "displayName": "Compare resulting document (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_compareresultingdocument_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_compareresultingdocument_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_compareresultingdocument_l_compareresultingdocumentpart", + "displayName": "Document used for result of compare: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_compareresultingdocument_l_compareresultingdocumentpart_0", + "displayName": "Original Document", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_compareresultingdocument_l_compareresultingdocumentpart_1", + "displayName": "Revised Document", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_compareresultingdocument_l_compareresultingdocumentpart_2", + "displayName": "New document", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor", + "displayName": "Deletions color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart", + "displayName": "Color for tracking deletions: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_0", + "displayName": "By Author", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_1", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_2", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_3", + "displayName": "Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_4", + "displayName": "Turquoise", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_5", + "displayName": "Bright Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_6", + "displayName": "Pink", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_7", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_8", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_9", + "displayName": "White", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_10", + "displayName": "Dark Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_11", + "displayName": "Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_12", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_13", + "displayName": "Violet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_14", + "displayName": "Dark Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_15", + "displayName": "Dark Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_16", + "displayName": "Gray 50%", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_deletionscolor_l_deletionscolorpart_17", + "displayName": "Gray 25%", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_ignorewhitespace", + "displayName": "Ignore White Space (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_ignorewhitespace_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_ignorewhitespace_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor", + "displayName": "Insertions color (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart", + "displayName": "Color for tracking insertions: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_0", + "displayName": "By Author", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_1", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_2", + "displayName": "Black", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_3", + "displayName": "Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_4", + "displayName": "Turquoise", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_5", + "displayName": "Bright Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_6", + "displayName": "Pink", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_7", + "displayName": "Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_8", + "displayName": "Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_9", + "displayName": "White", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_10", + "displayName": "Dark Blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_11", + "displayName": "Teal", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_12", + "displayName": "Green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_13", + "displayName": "Violet", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_14", + "displayName": "Dark Red", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_15", + "displayName": "Dark Yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_16", + "displayName": "Gray 50%", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_insertionscolor_l_insertionscolorpart_17", + "displayName": "Gray 25%", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors", + "displayName": "Table compare colors (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1", + "displayName": "Color for inserted cells: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_1", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_0", + "displayName": "By Author", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_2", + "displayName": "Pink", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_3", + "displayName": "Light blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_4", + "displayName": "Light yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_5", + "displayName": "Light purple", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_6", + "displayName": "Light Orange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_7", + "displayName": "Light green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart1_8", + "displayName": "Gray", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2", + "displayName": "Color for deleted cells: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_1", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_0", + "displayName": "By Author", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_2", + "displayName": "Pink", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_3", + "displayName": "Light blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_4", + "displayName": "Light yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_5", + "displayName": "Light purple", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_6", + "displayName": "Light Orange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_7", + "displayName": "Light green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart2_8", + "displayName": "Gray", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3", + "displayName": "Color for merged cells: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_1", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_0", + "displayName": "By Author", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_2", + "displayName": "Pink", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_3", + "displayName": "Light blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_4", + "displayName": "Light yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_5", + "displayName": "Light purple", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_6", + "displayName": "Light Orange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_7", + "displayName": "Light green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart3_8", + "displayName": "Gray", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4", + "displayName": "Color for split cells: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_1", + "displayName": "None", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_0", + "displayName": "By Author", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_2", + "displayName": "Pink", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_3", + "displayName": "Light blue", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_4", + "displayName": "Light yellow", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_5", + "displayName": "Light purple", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_6", + "displayName": "Light Orange", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_7", + "displayName": "Light green", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v2~policy~l_microsoftofficeword~l_wordoptions~l_trackchangesandcompare_l_tablecomparecolors_l_tablecomparecolorspart4_8", + "displayName": "Gray", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v3~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_acronyms", + "displayName": "Remove the Acronyms command from the ribbon (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v3~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_acronyms_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v3~policy~l_microsoftofficeword~l_wordoptions~l_optionsgeneral_l_acronyms_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook", + "displayName": "Specify default quality of compression done on inlined images inserted in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook_l_defaultcompressionqualityforinlinedimagesinoutlookpart", + "displayName": "Default inline image compression quality for Outlook: (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook_l_defaultcompressionqualityforinlinedimagesinoutlookpart_0", + "displayName": "High Fidelity", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook_l_defaultcompressionqualityforinlinedimagesinoutlookpart_1", + "displayName": "330 ppi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook_l_defaultcompressionqualityforinlinedimagesinoutlookpart_2", + "displayName": "220 ppi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook_l_defaultcompressionqualityforinlinedimagesinoutlookpart_3", + "displayName": "150 ppi", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_defaultcompressionqualityforinlinedimagesinoutlook_l_defaultcompressionqualityforinlinedimagesinoutlookpart_4", + "displayName": "96 ppi", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_donotcompressinlinedimagesinoutlook", + "displayName": "Do not compress the inlined images inserted in Outlook (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_donotcompressinlinedimagesinoutlook_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v4~policy~l_microsoftofficeword~l_wordoptions~l_advanced~l_emailoptions_l_donotcompressinlinedimagesinoutlook_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation", + "displayName": "Stop checking for table alt text accessibility information (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtablealttextaccessibilityinformation_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningfultext", + "displayName": "Stop checking to ensure hyperlink text is meaningful (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningfultext_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningfultext_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningfultextextension", + "displayName": "Stop checking to ensure hyperlink text extension is meaningful if they include extensions (User)", + "options": [ + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningfultextextension_0", + "displayName": "Disabled", + "description": null + }, + { + "id": "user_vendor_msft_policy_config_word16v9~policy~l_microsoftofficeword~l_filetab~l_checkaccessibility_l_stopcheckingtoensurehyperlinktextismeaningfultextextension_1", + "displayName": "Enabled", + "description": null + } + ] + }, + { + "id": "user_vendor_msft_printerprovisioning_upprinterinstalls_{printersharedid}", + "displayName": "Printer Shared ID (User)", + "options": null + }, + { + "id": "user_vendor_msft_printerprovisioning_upprinterinstalls_{printersharedid}_clouddeviceid", + "displayName": "Cloud Device ID (User)", + "options": null + }, + { + "id": "user_vendor_msft_printerprovisioning_upprinterinstalls_{printersharedid}_errorcode", + "displayName": "Error code (User)", + "options": null + }, + { + "id": "user_vendor_msft_printerprovisioning_upprinterinstalls_{printersharedid}_install", + "displayName": "Install (User)", + "options": { + "id": "user_vendor_msft_printerprovisioning_upprinterinstalls_{printersharedid}_install_true", + "displayName": "Install", + "description": "Install this printer" + } + }, + { + "id": "user_vendor_msft_printerprovisioning_upprinterinstalls_{printersharedid}_printersharedid", + "displayName": "Shared ID (User)", + "options": null + }, + { + "id": "user_vendor_msft_printerprovisioning_upprinterinstalls_{printersharedid}_printersharedname", + "displayName": "Printer Shared Name (User)", + "options": null + }, + { + "id": "user_vendor_msft_printerprovisioning_upprinterinstalls_{printersharedid}_status", + "displayName": "Status (User)", + "options": null + }, + { + "id": "vendor_msft_defender_configuration_tamperprotection", + "displayName": "TamperProtection", + "options": [ + { + "id": "vendor_msft_defender_configuration_tamperprotection_0", + "displayName": "Not configured", + "description": null + }, + { + "id": "vendor_msft_defender_configuration_tamperprotection_1", + "displayName": "Enabled", + "description": null + }, + { + "id": "vendor_msft_defender_configuration_tamperprotection_2", + "displayName": "Disabled", + "description": null + } + ] + }, + { + "id": "vendor_msft_defender_configuration_tamperprotection_blob", + "displayName": "Tamper Protection Blob", + "options": null + }, + { + "id": "vendor_msft_defender_configuration_tamperprotection_options", + "displayName": "TamperProtection (Device)", + "options": [ + { + "id": "vendor_msft_defender_configuration_tamperprotection_options_1", + "displayName": "Off", + "description": null + }, + { + "id": "vendor_msft_defender_configuration_tamperprotection_options_0", + "displayName": "On", + "description": null + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_allowlocalipsecpolicymerge", + "displayName": "Allow Local Ipsec Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_allowlocalipsecpolicymerge_false", + "displayName": "False", + "description": "AllowLocalIpsecPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_allowlocalipsecpolicymerge_true", + "displayName": "True", + "description": "AllowLocalIpsecPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_allowlocalpolicymerge", + "displayName": "Allow Local Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_allowlocalpolicymerge_false", + "displayName": "False", + "description": "AllowLocalPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_allowlocalpolicymerge_true", + "displayName": "True", + "description": "AllowLocalPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_authappsallowuserprefmerge", + "displayName": "Auth Apps Allow User Pref Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_authappsallowuserprefmerge_false", + "displayName": "False", + "description": "AuthAppsAllowUserPrefMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_authappsallowuserprefmerge_true", + "displayName": "True", + "description": "AuthAppsAllowUserPrefMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_defaultinboundaction", + "displayName": "Default Inbound Action for Domain Profile", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_defaultinboundaction_0", + "displayName": "Allow", + "description": "Allow Inbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_defaultinboundaction_1", + "displayName": "Block", + "description": "Block Inbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_defaultoutboundaction", + "displayName": "Default Outbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_defaultoutboundaction_0", + "displayName": "Allow", + "description": "Allow Outbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_defaultoutboundaction_1", + "displayName": "Block", + "description": "Block Outbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disableinboundnotifications", + "displayName": "Disable Inbound Notifications", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disableinboundnotifications_false", + "displayName": "False", + "description": "Firewall May Display Notification" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disableinboundnotifications_true", + "displayName": "True", + "description": "Firewall Must Not Display Notification" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disablestealthmode", + "displayName": "Disable Stealth Mode", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disablestealthmode_false", + "displayName": "False", + "description": "Use Stealth Mode" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disablestealthmode_true", + "displayName": "True", + "description": "Disable Stealth Mode" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disablestealthmodeipsecsecuredpacketexemption", + "displayName": "Disable Stealth Mode Ipsec Secured Packet Exemption", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disablestealthmodeipsecsecuredpacketexemption_false", + "displayName": "False", + "description": "FALSE" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disablestealthmodeipsecsecuredpacketexemption_true", + "displayName": "True", + "description": "TRUE" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disableunicastresponsestomulticastbroadcast", + "displayName": "Disable Unicast Responses To Multicast Broadcast", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disableunicastresponsestomulticastbroadcast_false", + "displayName": "False", + "description": "Unicast Responses Not Blocked" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_disableunicastresponsestomulticastbroadcast_true", + "displayName": "True", + "description": "Unicast Responses Blocked" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablefirewall", + "displayName": "Enable Domain Network Firewall", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablefirewall_false", + "displayName": "False", + "description": "Disable Firewall" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablefirewall_true", + "displayName": "True", + "description": "Enable Firewall" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogdroppedpackets", + "displayName": "Enable Log Dropped Packets", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogdroppedpackets_false", + "displayName": "Disable Logging Of Dropped Packets", + "description": "Disable Logging Of Dropped Packets" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogdroppedpackets_true", + "displayName": "Enable Logging Of Dropped Packets", + "description": "Enable Logging Of Dropped Packets" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogignoredrules", + "displayName": "Enable Log Ignored Rules", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogignoredrules_false", + "displayName": "Disable Logging Of Ignored Rules", + "description": "Disable Logging Of Ignored Rules" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogignoredrules_true", + "displayName": "Enable Logging Of Ignored Rules", + "description": "Enable Logging Of Ignored Rules" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogsuccessconnections", + "displayName": "Enable Log Success Connections", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogsuccessconnections_false", + "displayName": "Disable Logging Of Successful Connections", + "description": "Disable Logging Of Successful Connections" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_enablelogsuccessconnections_true", + "displayName": "Enable Logging Of Successful Connections", + "description": "Enable Logging Of Successful Connections" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_globalportsallowuserprefmerge", + "displayName": "Global Ports Allow User Pref Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_globalportsallowuserprefmerge_false", + "displayName": "False", + "description": "GlobalPortsAllowUserPrefMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_globalportsallowuserprefmerge_true", + "displayName": "True", + "description": "GlobalPortsAllowUserPrefMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_logfilepath", + "displayName": "Log File Path", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_logmaxfilesize", + "displayName": "Log Max File Size", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_shielded", + "displayName": "Shielded", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_shielded_false", + "displayName": "False", + "description": "Shielding Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_domainprofile_shielded_true", + "displayName": "True", + "description": "Shielding On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}", + "displayName": " Firewall Rule Name", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_action_type", + "displayName": "Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_action_type_0", + "displayName": "Block", + "description": "Block" + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_action_type_1", + "displayName": "Allow", + "description": "Allow" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_app_filepath", + "displayName": "File Path", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_app_packagefamilyname", + "displayName": "Package Family Name", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_app_servicename", + "displayName": "Service Name", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_description", + "displayName": "Description", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_direction", + "displayName": "Direction", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_direction_in", + "displayName": "The rule applies to inbound traffic.", + "description": "The rule applies to inbound traffic." + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_direction_out", + "displayName": "The rule applies to outbound traffic.", + "description": "The rule applies to outbound traffic." + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_edgetraversal", + "displayName": "Edge Traversal", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_edgetraversal_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_edgetraversal_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_enabled_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_enabled_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_firewallrulename", + "displayName": null, + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_icmptypesandcodes", + "displayName": "ICMP Types And Codes", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_interfacetypes", + "displayName": "Interface Types", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_interfacetypes_remoteaccess", + "displayName": "Remote Access", + "description": "RemoteAccess" + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_interfacetypes_wireless", + "displayName": "Wireless", + "description": "Wireless" + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_interfacetypes_lan", + "displayName": "Lan", + "description": "Lan" + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_interfacetypes_mobilebroadband", + "displayName": "[Not Supported] Mobile Broadband", + "description": "MobileBroadband" + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_interfacetypes_mbb", + "displayName": "Mobile Broadband", + "description": "MobileBroadband" + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_interfacetypes_all", + "displayName": "All", + "description": "All" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_localaddressranges", + "displayName": "Local Address Ranges", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_localportranges", + "displayName": "Local Port Ranges", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_localuserauthorizedlist", + "displayName": "Local User Authorized List", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_name", + "displayName": "Name", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_policyappid", + "displayName": "Policy App Id", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_profiles", + "displayName": "Network Types", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_profiles_1", + "displayName": "FW_PROFILE_TYPE_DOMAIN: This value represents the profile for networks that are connected to domains.", + "description": "FW_PROFILE_TYPE_DOMAIN: This value represents the profile for networks that are connected to domains." + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_profiles_2", + "displayName": "FW_PROFILE_TYPE_PRIVATE: This value represents the standard profile for networks. These networks are classified as private by the administrators in the server host. The classification happens the first time the host connects to the network. Usually these networks are behind Network Address Translation (NAT) devices, routers, and other edge devices, and they are in a private location, such as a home or an office. AND FW_PROFILE_TYPE_PRIVATE: This value represents the profile for private networks, which is represented by the same value as that used for FW_PROFILE_TYPE_STANDARD.", + "description": "FW_PROFILE_TYPE_STANDARD: This value represents the standard profile for networks. These networks are classified as private by the administrators in the server host. The classification happens the first time the host connects to the network. Usually these networks are behind Network Address Translation (NAT) devices, routers, and other edge devices, and they are in a private location, such as a home or an office. AND FW_PROFILE_TYPE_PRIVATE: This value represents the profile for private networks, which is represented by the same value as that used for FW_PROFILE_TYPE_STANDARD." + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_profiles_4", + "displayName": "FWPROFILETYPEPUBLIC: This value represents the profile for public networks. These networks are classified as public by the administrators in the server host. The classification happens the first time the host connects to the network. Usually these networks are those at airports, coffee shops, and other public places where the peers in the network or the network administrator are not trusted.", + "description": "FW_PROFILE_TYPE_PUBLIC: This value represents the profile for public networks. These networks are classified as public by the administrators in the server host. The classification happens the first time the host connects to the network. Usually these networks are those at airports, coffee shops, and other public places where the peers in the network or the network administrator are not trusted." + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_profiles_2147483647", + "displayName": "FW_PROFILE_TYPE_ALL: This value represents all these network sets and any future network sets.", + "description": "FW_PROFILE_TYPE_ALL: This value represents all these network sets and any future network sets." + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_profiles_-2147483648", + "displayName": "FW_PROFILE_TYPE_CURRENT: This value represents the current profiles to which the firewall and advanced security components determine the host is connected at the moment of the call. This value can be specified only in method calls, and it cannot be combined with other flags.", + "description": "FW_PROFILE_TYPE_CURRENT: This value represents the current profiles to which the firewall and advanced security components determine the host is connected at the moment of the call. This value can be specified only in method calls, and it cannot be combined with other flags." + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_protocol", + "displayName": "Protocol", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_remoteaddressdynamickeywords", + "displayName": "Reusable groups", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_remoteaddressranges", + "displayName": "Remote Address Ranges", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_firewallrules_{firewallrulename}_remoteportranges", + "displayName": "Remote Port Ranges", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_global_crlcheck", + "displayName": "Certificate revocation list verification", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_global_crlcheck_0", + "displayName": "None", + "description": "Disables CRL checking" + }, + { + "id": "vendor_msft_firewall_mdmstore_global_crlcheck_1", + "displayName": "Attempt", + "description": "Specifies that CRL checking is attempted and that certificate validation fails only if the certificate is revoked. Other failures that are encountered during CRL checking (such as the revocation URL being unreachable) do not cause certificate validation to fail." + }, + { + "id": "vendor_msft_firewall_mdmstore_global_crlcheck_2", + "displayName": "Require", + "description": "Means that checking is required and that certificate validation fails if any error is encountered during CRL processing" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_global_disablestatefulftp", + "displayName": "Disable Stateful Ftp", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_global_disablestatefulftp_false", + "displayName": "False", + "description": "Stateful FTP enabled" + }, + { + "id": "vendor_msft_firewall_mdmstore_global_disablestatefulftp_true", + "displayName": "True", + "description": "Stateful FTP disabled" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_global_enablepacketqueue", + "displayName": "Enable Packet Queue", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_global_enablepacketqueue_0", + "displayName": "Disabled", + "description": "Indicates that all queuing is to be disabled" + }, + { + "id": "vendor_msft_firewall_mdmstore_global_enablepacketqueue_1", + "displayName": "Queue Inbound", + "description": "Specifies that inbound encrypted packets are to be queued" + }, + { + "id": "vendor_msft_firewall_mdmstore_global_enablepacketqueue_2", + "displayName": "Queue Outbound", + "description": "Specifies that packets are to be queued after decryption is performed for forwarding" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_global_ipsecexempt", + "displayName": "IPsec Exceptions", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_global_ipsecexempt_0", + "displayName": "FWGLOBALCONFIGIPSECEXEMPTNONE: No IPsec exemptions.", + "description": "FW_GLOBAL_CONFIG_IPSEC_EXEMPT_NONE: No IPsec exemptions." + }, + { + "id": "vendor_msft_firewall_mdmstore_global_ipsecexempt_1", + "displayName": "Exempt neighbor discover IPv6 ICMP type-codes from IPsec", + "description": "FW_GLOBAL_CONFIG_IPSEC_EXEMPT_NEIGHBOR_DISC: Exempt neighbor discover IPv6 ICMP type-codes from IPsec." + }, + { + "id": "vendor_msft_firewall_mdmstore_global_ipsecexempt_2", + "displayName": "Exempt ICMP from IPsec", + "description": "FW_GLOBAL_CONFIG_IPSEC_EXEMPT_ICMP: Exempt ICMP from IPsec." + }, + { + "id": "vendor_msft_firewall_mdmstore_global_ipsecexempt_4", + "displayName": "Exempt router discover IPv6 ICMP type-codes from IPsec", + "description": "FW_GLOBAL_CONFIG_IPSEC_EXEMPT_ROUTER_DISC: Exempt router discover IPv6 ICMP type-codes from IPsec." + }, + { + "id": "vendor_msft_firewall_mdmstore_global_ipsecexempt_8", + "displayName": "Exempt both IPv4 and IPv6 DHCP traffic from IPsec", + "description": "FW_GLOBAL_CONFIG_IPSEC_EXEMPT_DHCP: Exempt both IPv4 and IPv6 DHCP traffic from IPsec." + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_global_opportunisticallymatchauthsetperkm", + "displayName": "Opportunistically Match Auth Set Per KM", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_global_opportunisticallymatchauthsetperkm_false", + "displayName": "False", + "description": "FALSE" + }, + { + "id": "vendor_msft_firewall_mdmstore_global_opportunisticallymatchauthsetperkm_true", + "displayName": "True", + "description": "TRUE" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_global_presharedkeyencoding", + "displayName": "Preshared Key Encoding", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_global_presharedkeyencoding_0", + "displayName": "None", + "description": "FW_GLOBAL_CONFIG_PRESHARED_KEY_ENCODING_NONE: Preshared key is not encoded. Instead, it is kept in its wide-character format. This symbolic constant has a value of 0." + }, + { + "id": "vendor_msft_firewall_mdmstore_global_presharedkeyencoding_1", + "displayName": "UTF8", + "description": "FW_GLOBAL_CONFIG_PRESHARED_KEY_ENCODING_UTF_8: Encode the preshared key using UTF-8. This symbolic constant has a value of 1." + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_global_saidletime", + "displayName": "Security association idle time", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}", + "displayName": " Firewall Rule Name", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_action", + "displayName": "Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_action_0", + "displayName": "Block", + "description": "Block" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_action_1", + "displayName": "Allow", + "description": "Allow" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_direction", + "displayName": "Direction", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_direction_in", + "displayName": "The rule applies to inbound traffic.", + "description": "The rule applies to inbound traffic." + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_direction_out", + "displayName": "The rule applies to outbound traffic.", + "description": "The rule applies to outbound traffic." + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_enabled", + "displayName": "Enabled", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_enabled_0", + "displayName": "Disabled", + "description": "Disabled" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_enabled_1", + "displayName": "Enabled", + "description": "Enabled" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_firewallrulename", + "displayName": null, + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_localaddressranges", + "displayName": "Local Address Ranges", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_localportranges", + "displayName": "Local Port Ranges", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_name", + "displayName": "Name", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_priority", + "displayName": "Priority", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_profiles", + "displayName": "Profiles", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_profiles_1", + "displayName": "FWPROFILETYPEDOMAIN: This value represents the profile for networks that are connected to domains.", + "description": "FW_PROFILE_TYPE_DOMAIN: This value represents the profile for networks that are connected to domains." + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_profiles_2", + "displayName": "FWPROFILETYPESTANDARD: This value represents the standard profile for networks. These networks are classified as private by the administrators in the server host. The classification happens the first time the host connects to the network. Usually these networks are behind Network Address Translation (NAT) devices, routers, and other edge devices, and they are in a private location, such as a home or an office. AND FWPROFILETYPEPRIVATE: This value represents the profile for private networks, which is represented by the same value as that used for FWPROFILETYPESTANDARD.", + "description": "FW_PROFILE_TYPE_STANDARD: This value represents the standard profile for networks. These networks are classified as private by the administrators in the server host. The classification happens the first time the host connects to the network. Usually these networks are behind Network Address Translation (NAT) devices, routers, and other edge devices, and they are in a private location, such as a home or an office. AND FW_PROFILE_TYPE_PRIVATE: This value represents the profile for private networks, which is represented by the same value as that used for FW_PROFILE_TYPE_STANDARD." + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_profiles_4", + "displayName": "FWPROFILETYPEPUBLIC: This value represents the profile for public networks. These networks are classified as public by the administrators in the server host. The classification happens the first time the host connects to the network. Usually these networks are those at airports, coffee shops, and other public places where the peers in the network or the network administrator are not trusted.", + "description": "FW_PROFILE_TYPE_PUBLIC: This value represents the profile for public networks. These networks are classified as public by the administrators in the server host. The classification happens the first time the host connects to the network. Usually these networks are those at airports, coffee shops, and other public places where the peers in the network or the network administrator are not trusted." + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_profiles_2147483647", + "displayName": "FWPROFILETYPEALL: This value represents all these network sets and any future network sets.", + "description": "FW_PROFILE_TYPE_ALL: This value represents all these network sets and any future network sets." + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_protocol", + "displayName": "Protocol", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_remoteaddressranges", + "displayName": "Remote Address Ranges", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_remoteportranges", + "displayName": "Remote Port Ranges", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_vmcreatorid", + "displayName": "Target", + "options": { + "id": "vendor_msft_firewall_mdmstore_hypervfirewallrules_{firewallrulename}_vmcreatorid_wsl", + "displayName": "Windows Subsystem for Linux", + "description": "Windows Subsystem for Linux" + } + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}", + "displayName": "VM Creator Id", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_allowhostpolicymerge", + "displayName": "Allow Host Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_allowhostpolicymerge_false", + "displayName": "AllowHostPolicyMerge Off", + "description": "AllowHostPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_allowhostpolicymerge_true", + "displayName": "AllowHostPolicyMerge On", + "description": "AllowHostPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_allowlocalpolicymerge", + "displayName": "Allow Local Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_allowlocalpolicymerge_false", + "displayName": "AllowLocalPolicyMerge Off", + "description": "AllowLocalPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_allowlocalpolicymerge_true", + "displayName": "AllowLocalPolicyMerge On", + "description": "AllowLocalPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_defaultinboundaction", + "displayName": "Default Inbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_defaultinboundaction_0", + "displayName": "Allow Inbound By Default", + "description": "Allow Inbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_defaultinboundaction_1", + "displayName": "Block Inbound By Default", + "description": "Block Inbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_defaultoutboundaction", + "displayName": "Default Outbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_defaultoutboundaction_0", + "displayName": "Allow Outbound By Default", + "description": "Allow Outbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_defaultoutboundaction_1", + "displayName": "Block Outbound By Default", + "description": "Block Outbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_enablefirewall", + "displayName": "Enable Domain Network Firewall", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_enablefirewall_false", + "displayName": "False", + "description": "Disable Firewall" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_domainprofile_enablefirewall_true", + "displayName": "True", + "description": "Enable Firewall" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_enableloopback", + "displayName": "Enable Loopback", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_enableloopback_false", + "displayName": "Disable loopback", + "description": "Disable loopback" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_enableloopback_true", + "displayName": "Enable loopback", + "description": "Enable loopback" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_allowlocalpolicymerge", + "displayName": "Allow Local Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_allowlocalpolicymerge_false", + "displayName": "AllowLocalPolicyMerge Off", + "description": "AllowLocalPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_allowlocalpolicymerge_true", + "displayName": "AllowLocalPolicyMerge On", + "description": "AllowLocalPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_defaultinboundaction", + "displayName": "Default Inbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_defaultinboundaction_0", + "displayName": "Allow Inbound By Default", + "description": "Allow Inbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_defaultinboundaction_1", + "displayName": "Block Inbound By Default", + "description": "Block Inbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_defaultoutboundaction", + "displayName": "Default Outbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_defaultoutboundaction_0", + "displayName": "Allow Outbound By Default", + "description": "Allow Outbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_defaultoutboundaction_1", + "displayName": "Block Outbound By Default", + "description": "Block Outbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_enablefirewall", + "displayName": "Enable Private Network Firewall", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_enablefirewall_false", + "displayName": "False", + "description": "Disable Firewall" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_privateprofile_enablefirewall_true", + "displayName": "True", + "description": "Enable Firewall" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_allowlocalpolicymerge", + "displayName": "Allow Local Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_allowlocalpolicymerge_false", + "displayName": "AllowLocalPolicyMerge Off", + "description": "AllowLocalPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_allowlocalpolicymerge_true", + "displayName": "AllowLocalPolicyMerge On", + "description": "AllowLocalPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_defaultinboundaction", + "displayName": "Default Inbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_defaultinboundaction_0", + "displayName": "Allow Inbound By Default", + "description": "Allow Inbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_defaultinboundaction_1", + "displayName": "Block Inbound By Default", + "description": "Block Inbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_defaultoutboundaction", + "displayName": "Default Outbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_defaultoutboundaction_0", + "displayName": "Allow Outbound By Default", + "description": "Allow Outbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_defaultoutboundaction_1", + "displayName": "Block Outbound By Default", + "description": "Block Outbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_enablefirewall", + "displayName": "Enable Public Network Firewall", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_enablefirewall_false", + "displayName": "False", + "description": "Disable Hyper-V Firewall" + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_publicprofile_enablefirewall_true", + "displayName": "True", + "description": "Enable Hyper-V Firewall" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_target", + "displayName": "Target", + "options": { + "id": "vendor_msft_firewall_mdmstore_hypervvmsettings_{vmcreatorid}_target_wsl", + "displayName": "Windows Subsystem for Linux", + "description": "Windows Subsystem for Linux" + } + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_allowlocalipsecpolicymerge", + "displayName": "Allow Local Ipsec Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_allowlocalipsecpolicymerge_false", + "displayName": "False", + "description": "AllowLocalIpsecPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_allowlocalipsecpolicymerge_true", + "displayName": "True", + "description": "AllowLocalIpsecPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_allowlocalpolicymerge", + "displayName": "Allow Local Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_allowlocalpolicymerge_false", + "displayName": "False", + "description": "AllowLocalPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_allowlocalpolicymerge_true", + "displayName": "True", + "description": "AllowLocalPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_authappsallowuserprefmerge", + "displayName": "Auth Apps Allow User Pref Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_authappsallowuserprefmerge_false", + "displayName": "False", + "description": "AuthAppsAllowUserPrefMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_authappsallowuserprefmerge_true", + "displayName": "True", + "description": "AuthAppsAllowUserPrefMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_defaultinboundaction", + "displayName": "Default Inbound Action for Private Profile", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_defaultinboundaction_0", + "displayName": "Allow", + "description": "Allow Inbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_defaultinboundaction_1", + "displayName": "Block", + "description": "Block Inbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_defaultoutboundaction", + "displayName": "Default Outbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_defaultoutboundaction_0", + "displayName": "Allow", + "description": "Allow Outbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_defaultoutboundaction_1", + "displayName": "Block", + "description": "Block Outbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disableinboundnotifications", + "displayName": "Disable Inbound Notifications", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disableinboundnotifications_false", + "displayName": "False", + "description": "Firewall May Display Notification" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disableinboundnotifications_true", + "displayName": "True", + "description": "Firewall Must Not Display Notification" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disablestealthmode", + "displayName": "Disable Stealth Mode", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disablestealthmode_false", + "displayName": "False", + "description": "Use Stealth Mode" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disablestealthmode_true", + "displayName": "True", + "description": "Disable Stealth Mode" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disablestealthmodeipsecsecuredpacketexemption", + "displayName": "Disable Stealth Mode Ipsec Secured Packet Exemption", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disablestealthmodeipsecsecuredpacketexemption_false", + "displayName": "False", + "description": "FALSE" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disablestealthmodeipsecsecuredpacketexemption_true", + "displayName": "True", + "description": "TRUE" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disableunicastresponsestomulticastbroadcast", + "displayName": "Disable Unicast Responses To Multicast Broadcast", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disableunicastresponsestomulticastbroadcast_false", + "displayName": "False", + "description": "Unicast Responses Not Blocked" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_disableunicastresponsestomulticastbroadcast_true", + "displayName": "True", + "description": "Unicast Responses Blocked" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablefirewall", + "displayName": "Enable Private Network Firewall", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablefirewall_false", + "displayName": "False", + "description": "Disable Firewall" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablefirewall_true", + "displayName": "True", + "description": "Enable Firewall" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogdroppedpackets", + "displayName": "Enable Log Dropped Packets", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogdroppedpackets_false", + "displayName": "Disable Logging Of Dropped Packets", + "description": "Disable Logging Of Dropped Packets" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogdroppedpackets_true", + "displayName": "Enable Logging Of Dropped Packets", + "description": "Enable Logging Of Dropped Packets" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogignoredrules", + "displayName": "Enable Log Ignored Rules", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogignoredrules_false", + "displayName": "Disable Logging Of Ignored Rules", + "description": "Disable Logging Of Ignored Rules" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogignoredrules_true", + "displayName": "Enable Logging Of Ignored Rules", + "description": "Enable Logging Of Ignored Rules" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogsuccessconnections", + "displayName": "Enable Log Success Connections", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogsuccessconnections_false", + "displayName": "Disable Logging Of Successful Connections", + "description": "Disable Logging Of Successful Connections" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_enablelogsuccessconnections_true", + "displayName": "Enable Logging Of Successful Connections", + "description": "Enable Logging Of Successful Connections" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_globalportsallowuserprefmerge", + "displayName": "Global Ports Allow User Pref Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_globalportsallowuserprefmerge_false", + "displayName": "False", + "description": "GlobalPortsAllowUserPrefMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_globalportsallowuserprefmerge_true", + "displayName": "True", + "description": "GlobalPortsAllowUserPrefMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_logfilepath", + "displayName": "Log File Path", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_logmaxfilesize", + "displayName": "Log Max File Size", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_shielded", + "displayName": "Shielded", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_shielded_false", + "displayName": "False", + "description": "Shielding Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_privateprofile_shielded_true", + "displayName": "True", + "description": "Shielding On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalipsecpolicymerge", + "displayName": "Allow Local Ipsec Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalipsecpolicymerge_false", + "displayName": "False", + "description": "AllowLocalIpsecPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalipsecpolicymerge_true", + "displayName": "True", + "description": "AllowLocalIpsecPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalpolicymerge", + "displayName": "Allow Local Policy Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalpolicymerge_false", + "displayName": "False", + "description": "AllowLocalPolicyMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_allowlocalpolicymerge_true", + "displayName": "True", + "description": "AllowLocalPolicyMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_authappsallowuserprefmerge", + "displayName": "Auth Apps Allow User Pref Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_authappsallowuserprefmerge_false", + "displayName": "False", + "description": "AuthAppsAllowUserPrefMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_authappsallowuserprefmerge_true", + "displayName": "True", + "description": "AuthAppsAllowUserPrefMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_defaultinboundaction", + "displayName": "Default Inbound Action for Public Profile", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_defaultinboundaction_0", + "displayName": "Allow", + "description": "Allow Inbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_defaultinboundaction_1", + "displayName": "Block", + "description": "Block Inbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_defaultoutboundaction", + "displayName": "Default Outbound Action", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_defaultoutboundaction_0", + "displayName": "Allow", + "description": "Allow Outbound By Default" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_defaultoutboundaction_1", + "displayName": "Block", + "description": "Block Outbound By Default" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disableinboundnotifications", + "displayName": "Disable Inbound Notifications", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disableinboundnotifications_false", + "displayName": "False", + "description": "Firewall May Display Notification" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disableinboundnotifications_true", + "displayName": "True", + "description": "Firewall Must Not Display Notification" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disablestealthmode", + "displayName": "Disable Stealth Mode", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disablestealthmode_false", + "displayName": "False", + "description": "Use Stealth Mode" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disablestealthmode_true", + "displayName": "True", + "description": "Disable Stealth Mode" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disablestealthmodeipsecsecuredpacketexemption", + "displayName": "Disable Stealth Mode Ipsec Secured Packet Exemption", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disablestealthmodeipsecsecuredpacketexemption_false", + "displayName": "False", + "description": "FALSE" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disablestealthmodeipsecsecuredpacketexemption_true", + "displayName": "True", + "description": "TRUE" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disableunicastresponsestomulticastbroadcast", + "displayName": "Disable Unicast Responses To Multicast Broadcast", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disableunicastresponsestomulticastbroadcast_false", + "displayName": "False", + "description": "Unicast Responses Not Blocked" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_disableunicastresponsestomulticastbroadcast_true", + "displayName": "True", + "description": "Unicast Responses Blocked" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablefirewall", + "displayName": "Enable Public Network Firewall", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablefirewall_false", + "displayName": "False", + "description": "Disable Firewall" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablefirewall_true", + "displayName": "True", + "description": "Enable Firewall" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogdroppedpackets", + "displayName": "Enable Log Dropped Packets", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogdroppedpackets_false", + "displayName": "Disable Logging Of Dropped Packets", + "description": "Disable Logging Of Dropped Packets" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogdroppedpackets_true", + "displayName": "Enable Logging Of Dropped Packets", + "description": "Enable Logging Of Dropped Packets" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogignoredrules", + "displayName": "Enable Log Ignored Rules", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogignoredrules_false", + "displayName": "Disable Logging Of Ignored Rules", + "description": "Disable Logging Of Ignored Rules" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogignoredrules_true", + "displayName": "Enable Logging Of Ignored Rules", + "description": "Enable Logging Of Ignored Rules" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogsuccessconnections", + "displayName": "Enable Log Success Connections", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogsuccessconnections_false", + "displayName": "Disable Logging Of Successful Connections", + "description": "Disable Logging Of Successful Connections" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_enablelogsuccessconnections_true", + "displayName": "Enable Logging Of Successful Connections", + "description": "Enable Logging Of Successful Connections" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_globalportsallowuserprefmerge", + "displayName": "Global Ports Allow User Pref Merge", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_globalportsallowuserprefmerge_false", + "displayName": "False", + "description": "GlobalPortsAllowUserPrefMerge Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_globalportsallowuserprefmerge_true", + "displayName": "True", + "description": "GlobalPortsAllowUserPrefMerge On" + } + ] + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_logfilepath", + "displayName": "Log File Path", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_logmaxfilesize", + "displayName": "Log Max File Size", + "options": null + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_shielded", + "displayName": "Shielded", + "options": [ + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_shielded_false", + "displayName": "False", + "description": "Shielding Off" + }, + { + "id": "vendor_msft_firewall_mdmstore_publicprofile_shielded_true", + "displayName": "True", + "description": "Shielding On" + } + ] + }, + { + "id": "vendor_msft_personalization_companylogourl", + "displayName": "Company Logo Url", + "options": null + }, + { + "id": "vendor_msft_personalization_companyname", + "displayName": "Company Name", + "options": null + }, + { + "id": "vendor_msft_personalization_desktopimageurl", + "displayName": "Desktop Image Url", + "options": null + }, + { + "id": "vendor_msft_personalization_lockscreenimageurl", + "displayName": "Lock Screen Image Url", + "options": null + }, + { + "id": "vendor_msft_sharedpc_accountmodel", + "displayName": "Account Model", + "options": [ + { + "id": "vendor_msft_sharedpc_accountmodel_0", + "displayName": "Guest", + "description": null + }, + { + "id": "vendor_msft_sharedpc_accountmodel_1", + "displayName": "Domain", + "description": null + }, + { + "id": "vendor_msft_sharedpc_accountmodel_2", + "displayName": "Guest and Domain", + "description": null + } + ] + }, + { + "id": "vendor_msft_sharedpc_deletionpolicy", + "displayName": "Deletion Policy", + "options": [ + { + "id": "vendor_msft_sharedpc_deletionpolicy_0", + "displayName": "Delete immediately", + "description": null + }, + { + "id": "vendor_msft_sharedpc_deletionpolicy_1", + "displayName": "Delete at disk space threshold", + "description": null + }, + { + "id": "vendor_msft_sharedpc_deletionpolicy_2", + "displayName": "Delete at disk space threshold and inactive threshold", + "description": null + } + ] + }, + { + "id": "vendor_msft_sharedpc_disklevelcaching", + "displayName": "Disk Level Caching", + "options": null + }, + { + "id": "vendor_msft_sharedpc_diskleveldeletion", + "displayName": "Disk Level Deletion", + "options": null + }, + { + "id": "vendor_msft_sharedpc_enableaccountmanager", + "displayName": "Enable Account Manager", + "options": [ + { + "id": "vendor_msft_sharedpc_enableaccountmanager_true", + "displayName": "true", + "description": null + }, + { + "id": "vendor_msft_sharedpc_enableaccountmanager_false", + "displayName": "false", + "description": null + } + ] + }, + { + "id": "vendor_msft_sharedpc_enablesharedpcmode", + "displayName": "Enable Shared PC Mode", + "options": [ + { + "id": "vendor_msft_sharedpc_enablesharedpcmode_true", + "displayName": "true", + "description": null + }, + { + "id": "vendor_msft_sharedpc_enablesharedpcmode_false", + "displayName": "false", + "description": null + } + ] + }, + { + "id": "vendor_msft_sharedpc_inactivethreshold", + "displayName": "Inactive Threshold", + "options": null + }, + { + "id": "vendor_msft_sharedpc_kioskmodeaumid", + "displayName": "Kiosk Mode AUMID", + "options": null + }, + { + "id": "vendor_msft_sharedpc_kioskmodeusertiledisplaytext", + "displayName": "Kiosk Mode User Tile Display Text", + "options": null + }, + { + "id": "vendor_msft_sharedpc_maintenancestarttime", + "displayName": "Maintenance Start Time", + "options": null + }, + { + "id": "vendor_msft_sharedpc_restrictlocalstorage", + "displayName": "Restrict Local Storage", + "options": [ + { + "id": "vendor_msft_sharedpc_restrictlocalstorage_true", + "displayName": "true", + "description": null + }, + { + "id": "vendor_msft_sharedpc_restrictlocalstorage_false", + "displayName": "false", + "description": null + } + ] + }, + { + "id": "vendor_msft_sharedpc_setedupolicies", + "displayName": "Set Edu Policies", + "options": [ + { + "id": "vendor_msft_sharedpc_setedupolicies_true", + "displayName": "true", + "description": null + }, + { + "id": "vendor_msft_sharedpc_setedupolicies_false", + "displayName": "false", + "description": null + } + ] + }, + { + "id": "vendor_msft_sharedpc_setpowerpolicies", + "displayName": "Set Power Policies", + "options": [ + { + "id": "vendor_msft_sharedpc_setpowerpolicies_true", + "displayName": "true", + "description": null + }, + { + "id": "vendor_msft_sharedpc_setpowerpolicies_false", + "displayName": "false", + "description": null + } + ] + }, + { + "id": "vendor_msft_sharedpc_signinonresume", + "displayName": "Sign In On Resume", + "options": [ + { + "id": "vendor_msft_sharedpc_signinonresume_true", + "displayName": "true", + "description": null + }, + { + "id": "vendor_msft_sharedpc_signinonresume_false", + "displayName": "false", + "description": null + } + ] + }, + { + "id": "vendor_msft_tenantlockdown_requirenetworkinoobe", + "displayName": "Require Network In OOBE (Device)", + "options": [ + { + "id": "vendor_msft_tenantlockdown_requirenetworkinoobe_true", + "displayName": "true", + "description": null + }, + { + "id": "vendor_msft_tenantlockdown_requirenetworkinoobe_false", + "displayName": "false", + "description": null + } + ] + }, + { + "id": "vendor_msft_windowslicensing_devicelicensingservice_licensetype", + "displayName": "License Type", + "options": [ + { + "id": "vendor_msft_windowslicensing_devicelicensingservice_licensetype_0", + "displayName": "User Based License", + "description": "User Based License" + }, + { + "id": "vendor_msft_windowslicensing_devicelicensingservice_licensetype_1", + "displayName": "Device Based License", + "description": "Device Based License" + } + ] + } +] diff --git a/src/data/standards.json b/src/data/standards.json index 4b12a7181b10..3bce57411d37 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -7,24 +7,28 @@ "docsDescription": "", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.MailContacts.GeneralContact", - "label": "General Contact" + "label": "General Contact", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.MailContacts.SecurityContact", - "label": "Security Contact" + "label": "Security Contact", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.MailContacts.MarketingContact", - "label": "Marketing Contact" + "label": "Marketing Contact", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.MailContacts.TechContact", - "label": "Technical Contact" + "label": "Technical Contact", + "required": false } ], "label": "Set contact e-mails", @@ -69,25 +73,28 @@ "helpText": "Sets the branding for the tenant. This includes the login page, and the Office 365 portal.", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.Branding.signInPageText", - "label": "Sign-in page text" + "label": "Sign-in page text", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.Branding.usernameHintText", - "label": "Username hint Text" + "label": "Username hint Text", + "required": false }, { - "type": "boolean", + "type": "switch", "name": "standards.Branding.hideAccountResetCredentials", "label": "Hide self-service password reset" }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Visual Template", "name": "standards.Branding.layoutTemplateType", - "values": [ + "options": [ { "label": "Full-screen background", "value": "default" @@ -99,12 +106,12 @@ ] }, { - "type": "boolean", + "type": "switch", "name": "standards.Branding.isHeaderShown", "label": "Show header" }, { - "type": "boolean", + "type": "switch", "name": "standards.Branding.isFooterShown", "label": "Show footer" } @@ -186,10 +193,11 @@ "helpText": "Enables and sets Idle session timeout for Microsoft 365 to 1 hour. This policy affects most M365 web apps", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.ActivityBasedTimeout.timeout", - "values": [ + "options": [ { "label": "1 Hour", "value": "01:00:00" @@ -227,7 +235,7 @@ "docsDescription": "Uses the CIPP functionality that deploys applications across an entire tenant base as a standard.", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.AppDeploy.appids", "label": "Application IDs, comma separated" } @@ -285,10 +293,11 @@ "docsDescription": "Sets the Authenticator Lite state to enabled. This allows users to use the Authenticator Lite built into the Outlook app instead of the full Authenticator app.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.PWcompanionAppAllowedState.state", - "values": [ + "options": [ { "label": "Enabled", "value": "enabled" @@ -353,10 +362,11 @@ "docsDescription": "Enables Temporary Password generation for the tenant.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select TAP Lifetime", "name": "standards.TAP.config", - "values": [ + "options": [ { "label": "Only Once", "value": "true" @@ -394,10 +404,11 @@ "helpText": "Sets the state of the Cross-tenant access setting to trust external MFA. This allows guest users to use their home tenant MFA to access your tenant.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.ExternalMFATrusted.state", - "values": [ + "options": [ { "label": "Enabled", "value": "true" @@ -455,10 +466,11 @@ "docsDescription": "Sets the state of the registration campaign for the tenant. If enabled nudges users to set up the Microsoft Authenticator during sign-in.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.NudgeMFA.state", - "values": [ + "options": [ { "label": "Enabled", "value": "enabled" @@ -539,9 +551,10 @@ "helpText": "This standard disables all self service licenses and enables all exclusions", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.DisableSelfServiceLicenses.Exclusions", - "label": "License Ids to exclude from this standard" + "label": "License Ids to exclude from this standard", + "required": false } ], "label": "Disable Self Service Licensing", @@ -570,9 +583,10 @@ "docsDescription": "Requires users to get administrator consent before sharing data with applications. You can preapprove specific applications.", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.OauthConsent.AllowedApps", - "label": "Allowed application IDs, comma separated" + "label": "Allowed application IDs, comma separated", + "required": false } ], "label": "Require admin consent for applications (Prevent OAuth phishing)", @@ -593,6 +607,43 @@ "powershellEquivalent": "Update-MgPolicyAuthorizationPolicy", "recommendedBy": [] }, + { + "name": "standards.GuestInvite", + "cat": "Entra (AAD) Standards", + "tag": ["mediumimpact"], + "helpText": "This setting controls who can invite guests to your directory to collaborate on resources secured by your company, such as SharePoint sites or Azure resources.", + "addedComponent": [ + { + "type": "autoComplete", + "multiple": false, + "label": "Who can send invites?", + "name": "standards.GuestInvite.allowInvitesFrom", + "options": [ + { + "label": "Everyone", + "value": "everyone" + }, + { + "label": "Admins, Guest inviters and All Members", + "value": "adminsGuestInvitersAndAllMembers" + }, + { + "label": "Admins and Guest inviters", + "value": "adminsAndGuestInviters" + }, + { + "label": "None", + "value": "none" + } + ] + } + ], + "label": "Guest Invite setting", + "impact": "Medium Impact", + "impactColour": "warning", + "powershellEquivalent": "", + "recommendedBy": [] + }, { "name": "standards.UndoOauth", "cat": "Entra (AAD) Standards", @@ -689,7 +740,7 @@ "docsDescription": "Sets the e-mail address to which outbound spam alerts are sent.", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.OutBoundSpamAlert.OutboundSpamContact", "label": "Outbound spam contact" } @@ -721,10 +772,11 @@ "docsDescription": "Sets the global quarantine notification interval for the tenant. This is the time between the quarantine notification emails are sent out to users. Default is 24 hours.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.GlobalQuarantineNotifications.NotificationInterval", - "values": [ + "options": [ { "label": "4 hours", "value": "04:00:00" @@ -767,10 +819,11 @@ "docsDescription": "Sets the default Focused Inbox state for the tenant. This can be overridden by the user in their Outlook settings. For more information, see [Microsoft's documentation.](https://support.microsoft.com/en-us/office/focused-inbox-for-outlook-f445ad7f-02f4-4294-a82e-71d8964e3978)", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.FocusedInbox.state", - "values": [ + "options": [ { "label": "Enabled", "value": "enabled" @@ -796,10 +849,11 @@ "docsDescription": "Sets the default state for Cloud Message Recall for the tenant. By default this is enabled. You can read more about the feature [here.](https://techcommunity.microsoft.com/t5/exchange-team-blog/cloud-based-message-recall-in-exchange-online/ba-p/3744714)", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.CloudMessageRecall.state", - "values": [ + "options": [ { "label": "Enabled", "value": "true" @@ -862,10 +916,11 @@ "docsDescription": "Adds or removes indicators to e-mail messages received from external senders in Outlook. You can read more about this feature on [Microsoft's Exchange Team Blog.](https://techcommunity.microsoft.com/t5/exchange-team-blog/native-external-sender-callouts-on-email-in-outlook/ba-p/2250098)", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.SpoofWarn.state", - "values": [ + "options": [ { "label": "Enabled", "value": "enabled" @@ -880,7 +935,7 @@ "label": "Enable or disable 'external' warning in Outlook", "impact": "Low Impact", "impactColour": "info", - "powershellEquivalent": "et-ExternalInOutlook –Enabled $true or $false", + "powershellEquivalent": "et-ExternalInOutlook \u2013Enabled $true or $false", "recommendedBy": ["CIS"] }, { @@ -910,10 +965,11 @@ "helpText": "Sets the default state for automatically turning meetings into Teams meetings for the tenant. This can be overridden by the user in Outlook.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.TeamsMeetingsByDefault.state", - "values": [ + "options": [ { "label": "Enabled", "value": "true" @@ -1019,10 +1075,11 @@ }, "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select Sharing Level", "name": "standards.calDefault.permissionlevel", - "values": [ + "options": [ { "label": "Owner - The user can create, read, edit, and delete all items in the folder, and create subfolders. The user is both folder owner and folder contact.", "value": "Owner" @@ -1109,10 +1166,11 @@ "helpText": "Sets the shorten meetings settings on a tenant level. This will shorten meetings by the selected amount of minutes. Valid values are 0 to 29. Short meetings are under 60 minutes, long meetings are over 60 minutes.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.ShortenMeetings.ShortenEventScopeDefault", - "values": [ + "options": [ { "label": "Disabled/None", "value": "None" @@ -1154,10 +1212,11 @@ "docsDescription": "", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.Bookings.state", - "values": [ + "options": [ { "label": "Enabled", "value": "true" @@ -1239,10 +1298,11 @@ "docsDescription": "Set the state of the built-in Report button in Outlook. This gives the users the ability to report emails as spam or phish.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select value", "name": "standards.UserSubmissions.state", - "values": [ + "options": [ { "label": "Enabled", "value": "enable" @@ -1254,8 +1314,9 @@ ] }, { - "type": "input", + "type": "textField", "name": "standards.UserSubmissions.email", + "required": false, "label": "Destination email address" } ], @@ -1299,7 +1360,7 @@ "docsDescription": "Sets a e-mail address to alert when a User requests to release a quarantined message. This is useful for monitoring and ensuring that the correct messages are released.", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.QuarantineRequestAlert.NotifyUser", "label": "E-mail to receive the alert" } @@ -1317,17 +1378,17 @@ "helpText": "This creates a safelink policy that automatically scans, tracks, and and enables safe links for Email, Office, and Teams for both external and internal senders", "addedComponent": [ { - "type": "boolean", + "type": "switch", "label": "AllowClickThrough", "name": "standards.SafeLinksPolicy.AllowClickThrough" }, { - "type": "boolean", + "type": "switch", "label": "DisableUrlRewrite", "name": "standards.SafeLinksPolicy.DisableUrlRewrite" }, { - "type": "boolean", + "type": "switch", "label": "EnableOrganizationBranding", "name": "standards.SafeLinksPolicy.EnableOrganizationBranding" } @@ -1361,34 +1422,35 @@ "default": 1 }, { - "type": "boolean", + "type": "switch", "label": "Show first contact safety tip", "name": "standards.AntiPhishPolicy.EnableFirstContactSafetyTips", "default": true }, { - "type": "boolean", + "type": "switch", "label": "Show user impersonation safety tip", "name": "standards.AntiPhishPolicy.EnableSimilarUsersSafetyTips", "default": true }, { - "type": "boolean", + "type": "switch", "label": "Show domain impersonation safety tip", "name": "standards.AntiPhishPolicy.EnableSimilarDomainsSafetyTips", "default": true }, { - "type": "boolean", + "type": "switch", "label": "Show user impersonation unusual characters safety tip", "name": "standards.AntiPhishPolicy.EnableUnusualCharactersSafetyTips", "default": true }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "If the message is detected as spoof by spoof intelligence", "name": "standards.AntiPhishPolicy.AuthenticationFailAction", - "values": [ + "options": [ { "label": "Quarantine the message", "value": "Quarantine" @@ -1400,10 +1462,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Quarantine policy for Spoof", "name": "standards.AntiPhishPolicy.SpoofQuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1419,10 +1482,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "If a message is detected as user impersonation", "name": "standards.AntiPhishPolicy.TargetedUserProtectionAction", - "values": [ + "options": [ { "label": "Move to Junk Folder", "value": "MoveToJmf" @@ -1438,10 +1502,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Quarantine policy for user impersonation", "name": "standards.AntiPhishPolicy.TargetedUserQuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1457,10 +1522,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "If a message is detected as domain impersonation", "name": "standards.AntiPhishPolicy.TargetedDomainProtectionAction", - "values": [ + "options": [ { "label": "Move to Junk Folder", "value": "MoveToJmf" @@ -1476,10 +1542,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Quarantine policy for domain impersonation", "name": "standards.AntiPhishPolicy.TargetedDomainQuarantineTag", - "values": [ + "options": [ { "label": "DefaultFullAccessWithNotificationPolicy", "value": "DefaultFullAccessWithNotificationPolicy" @@ -1495,10 +1562,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "If Mailbox Intelligence detects an impersonated user", "name": "standards.AntiPhishPolicy.MailboxIntelligenceProtectionAction", - "values": [ + "options": [ { "label": "Move to Junk Folder", "value": "MoveToJmf" @@ -1514,10 +1582,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Apply quarantine policy", "name": "standards.AntiPhishPolicy.MailboxIntelligenceQuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1552,10 +1621,11 @@ "helpText": "This creates a Safe Attachment policy", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Action", "name": "standards.SafeAttachmentPolicy.Action", - "values": [ + "options": [ { "label": "Allow", "value": "Allow" @@ -1571,10 +1641,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "QuarantineTag", "name": "standards.SafeAttachmentPolicy.QuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1590,14 +1661,15 @@ ] }, { - "type": "boolean", + "type": "switch", "label": "Redirect", "name": "standards.SafeAttachmentPolicy.Redirect" }, { - "type": "input", + "type": "textField", "name": "standards.SafeAttachmentPolicy.RedirectAddress", - "label": "Redirect Address" + "label": "Redirect Address", + "required": false } ], "label": "Default Safe Attachment Policy", @@ -1613,10 +1685,11 @@ "helpText": "This creates a Atp policy that enables Defender for Office 365 for Sharepoint, OneDrive and Microsoft Teams.", "addedComponent": [ { - "type": "boolean", + "type": "switch", "label": "Allow people to click through Protected View even if Safe Documents identified the file as malicious", "name": "standards.AtpPolicyForO365.AllowSafeDocsOpen", - "default": false + "default": false, + "required": false } ], "label": "Default Atp Policy For O365", @@ -1632,10 +1705,11 @@ "helpText": "This creates a Malware filter policy that enables the default File filter and Zero-hour auto purge for malware.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "FileTypeAction", "name": "standards.MalwareFilterPolicy.FileTypeAction", - "values": [ + "options": [ { "label": "Reject", "value": "Reject" @@ -1647,15 +1721,17 @@ ] }, { - "type": "input", + "type": "textField", "name": "standards.MalwareFilterPolicy.OptionalFileTypes", + "required": false, "label": "Optional File Types, Comma separated" }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "QuarantineTag", "name": "standards.MalwareFilterPolicy.QuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1671,23 +1747,27 @@ ] }, { - "type": "boolean", + "type": "switch", "label": "Enable Internal Sender Admin Notifications", + "required": false, "name": "standards.MalwareFilterPolicy.EnableInternalSenderAdminNotifications" }, { - "type": "input", + "type": "textField", "name": "standards.MalwareFilterPolicy.InternalSenderAdminAddress", + "required": false, "label": "Internal Sender Admin Address" }, { - "type": "boolean", + "type": "switch", "label": "Enable External Sender Admin Notifications", + "required": false, "name": "standards.MalwareFilterPolicy.EnableExternalSenderAdminNotifications" }, { - "type": "input", + "type": "textField", "name": "standards.MalwareFilterPolicy.ExternalSenderAdminAddress", + "required": false, "label": "External Sender Admin Address" } ], @@ -1710,10 +1790,11 @@ "default": 7 }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Spam Action", "name": "standards.SpamFilterPolicy.SpamAction", - "values": [ + "options": [ { "label": "Quarantine the message", "value": "Quarantine" @@ -1725,10 +1806,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Spam Quarantine Tag", "name": "standards.SpamFilterPolicy.SpamQuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1744,10 +1826,10 @@ ] }, { - "type": "Select", + "type": "autoComplete", "label": "High Confidence Spam Action", "name": "standards.SpamFilterPolicy.HighConfidenceSpamAction", - "values": [ + "options": [ { "label": "Quarantine the message", "value": "Quarantine" @@ -1759,10 +1841,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "High Confidence Spam Quarantine Tag", "name": "standards.SpamFilterPolicy.HighConfidenceSpamQuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1778,10 +1861,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Bulk Spam Action", "name": "standards.SpamFilterPolicy.BulkSpamAction", - "values": [ + "options": [ { "label": "Quarantine the message", "value": "Quarantine" @@ -1793,10 +1877,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Bulk Quarantine Tag", "name": "standards.SpamFilterPolicy.BulkQuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1812,10 +1897,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Phish Spam Action", "name": "standards.SpamFilterPolicy.PhishSpamAction", - "values": [ + "options": [ { "label": "Quarantine the message", "value": "Quarantine" @@ -1827,10 +1913,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Phish Quarantine Tag", "name": "standards.SpamFilterPolicy.PhishQuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1846,10 +1933,11 @@ ] }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "High Confidence Phish Quarantine Tag", "name": "standards.SpamFilterPolicy.HighConfidencePhishQuarantineTag", - "values": [ + "options": [ { "label": "AdminOnlyAccessPolicy", "value": "AdminOnlyAccessPolicy" @@ -1896,54 +1984,63 @@ "helpText": "Sets the branding profile for the Intune Company Portal app. This is a tenant wide setting and overrules any settings set on the app level.", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.intuneBrandingProfile.displayName", - "label": "Organization name" + "label": "Organization name", + "required": false }, { - "type": "boolean", + "type": "switch", "name": "standards.intuneBrandingProfile.showLogo", "label": "Show logo" }, { - "type": "boolean", + "type": "switch", "name": "standards.intuneBrandingProfile.showDisplayNameNextToLogo", - "label": "Show organization name next to logo" + "label": "Show organization name next to logo", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.intuneBrandingProfile.contactITName", - "label": "Contact IT name" + "label": "Contact IT name", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.intuneBrandingProfile.contactITPhoneNumber", - "label": "Contact IT phone number" + "label": "Contact IT phone number", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.intuneBrandingProfile.contactITEmailAddress", - "label": "Contact IT email address" + "label": "Contact IT email address", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.intuneBrandingProfile.contactITNotes", - "label": "Contact IT notes" + "label": "Contact IT notes", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.intuneBrandingProfile.onlineSupportSiteName", - "label": "Online support site name" + "label": "Online support site name", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.intuneBrandingProfile.onlineSupportSiteUrl", - "label": "Online support site URL" + "label": "Online support site URL", + "required": false }, { - "type": "input", + "type": "textField", "name": "standards.intuneBrandingProfile.privacyUrl", - "label": "Privacy statement URL" + "label": "Privacy statement URL", + "required": false } ], "label": "Set Intune Company Portal branding profile", @@ -1952,6 +2049,40 @@ "powershellEquivalent": "Graph API", "recommendedBy": [] }, + { + "name": "standards.IntuneComplianceSettings", + "cat": "Intune Standards", + "tag": ["lowimpact"], + "helpText": "Sets the mark devices with no compliance policy assigned as compliance/non compliant and Compliance status validity period.", + "addedComponent": [ + { + "type": "autoComplete", + "multiple": false, + "name": "standards.IntuneComplianceSettings.secureByDefault", + "label": "Mark devices with no compliance policy as", + "options": [ + { + "label": "Compliant", + "value": "false" + }, + { + "label": "Non-Compliant", + "value": "true" + } + ] + }, + { + "type": "number", + "name": "standards.IntuneComplianceSettings.deviceComplianceCheckinThresholdDays", + "label": "Compliance status validity period (days)" + } + ], + "label": "Set Intune Compliance Settings", + "impact": "Low Impact", + "impactColour": "info", + "powershellEquivalent": "", + "recommendedBy": [] + }, { "name": "standards.intuneDeviceReg", "cat": "Intune Standards", @@ -1989,10 +2120,11 @@ "docsDescription": "When a OneDrive user gets deleted, the personal SharePoint site is saved for selected amount of time that data can be retrieved from it.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "name": "standards.DeletedUserRentention.Days", "label": "Retention time (Default 30 days)", - "values": [ + "options": [ { "label": "30 days", "value": "30" @@ -2159,10 +2291,11 @@ "helpText": "If disabled, the button Add shortcut to OneDrive will be removed and users in the tenant will no longer be able to add new shortcuts to their OneDrive. Existing shortcuts will remain functional", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Add Shortcuts To OneDrive button state", "name": "standards.DisableAddShortcutsToOneDrive.state", - "values": [ + "options": [ { "label": "Disabled", "value": "true" @@ -2187,10 +2320,11 @@ "helpText": "If disabled, users in the tenant will no longer be able to use the Sync button to sync SharePoint content on all sites. However, existing synced content will remain functional on the user's computer.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "SharePoint Sync Button state", "name": "standards.SPSyncButtonState.state", - "values": [ + "options": [ { "label": "Disabled", "value": "true" @@ -2228,10 +2362,11 @@ "helpText": "Sets the default sharing level for OneDrive and Sharepoint. This is a tenant wide setting and overrules any settings set on the site level", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "label": "Select Sharing Level", "name": "standards.sharingCapability.Level", - "values": [ + "options": [ { "label": "Users can share only with people in the organization. No external sharing is allowed.", "value": "disabled" @@ -2290,7 +2425,7 @@ "helpText": "Sets the file extensions that are excluded from syncing with OneDrive. These files will be blocked from upload. '*.' is automatically added to the extension and can be omitted.", "addedComponent": [ { - "type": "input", + "type": "textField", "name": "standards.ExcludedfileExt.ext", "label": "Extensions, Comma separated" } @@ -2332,10 +2467,11 @@ "helpText": "Restricts sharing to only users with the specified domain. This is useful for organizations that only want to share with their own domain.", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "name": "standards.sharingDomainRestriction.Mode", "label": "Limit external sharing by domains", - "values": [ + "options": [ { "label": "Off", "value": "none" @@ -2351,9 +2487,10 @@ ] }, { - "type": "input", + "type": "textField", "name": "standards.sharingDomainRestriction.Domains", - "label": "Domains to allow/block, comma separated" + "label": "Domains to allow/block, comma separated", + "required": false } ], "label": "Restrict sharing to a specific domain", @@ -2369,10 +2506,11 @@ "helpText": "Defines the CIS recommended global meeting policy for Teams. This includes AllowAnonymousUsersToJoinMeeting, AllowAnonymousUsersToStartMeeting, AutoAdmittedUsers, AllowPSTNUsersToBypassLobby, MeetingChatEnabledType, DesignatedPresenterRoleMode, AllowExternalParticipantGiveRequestControl", "addedComponent": [ { - "type": "Select", + "type": "autoComplete", + "multiple": false, "name": "standards.TeamsGlobalMeetingPolicy.DesignatedPresenterRoleMode", "label": "Default value of the `Who can present?`", - "values": [ + "options": [ { "label": "EveryoneUserOverride", "value": "EveryoneUserOverride" @@ -2390,6 +2528,31 @@ "value": "OrganizerOnlyUserOverride" } ] + }, + { + "type": "switch", + "name": "standards.TeamsGlobalMeetingPolicy.AllowAnonymousUsersToJoinMeeting", + "label": "Allow anonymous users to join meeting" + }, + { + "type": "autoComplete", + "multiple": false, + "name": "standards.TeamsGlobalMeetingPolicy.MeetingChatEnabledType", + "label": "Meeting chat policy", + "options": [ + { + "label": "On for everyone", + "value": "Enabled" + }, + { + "label": "On for everyone but anonymous users", + "value": "EnabledExceptAnonymous" + }, + { + "label": "Off for everyone", + "value": "Disabled" + } + ] } ], "label": "Define Global Meeting Policy for Teams", @@ -2406,7 +2569,7 @@ "docsDescription": "Teams channel email addresses are an optional feature that allows users to email the Teams channel directly.", "addedComponent": [ { - "type": "boolean", + "type": "switch", "name": "standards.TeamsEmailIntegration.AllowEmailIntoChannel", "label": "Allow channel emails" } @@ -2424,27 +2587,27 @@ "helpText": "Ensure external file sharing in Teams is enabled for only approved cloud storage services.", "addedComponent": [ { - "type": "boolean", + "type": "switch", "name": "standards.TeamsExternalFileSharing.AllowGoogleDrive", "label": "Allow Google Drive" }, { - "type": "boolean", + "type": "switch", "name": "standards.TeamsExternalFileSharing.AllowShareFile", "label": "Allow ShareFile" }, { - "type": "boolean", + "type": "switch", "name": "standards.TeamsExternalFileSharing.AllowBox", "label": "Allow Box" }, { - "type": "boolean", + "type": "switch", "name": "standards.TeamsExternalFileSharing.AllowDropBox", "label": "Allow Dropbox" }, { - "type": "boolean", + "type": "switch", "name": "standards.TeamsExternalFileSharing.AllowEgnyte", "label": "Allow Egnyte" } @@ -2455,6 +2618,35 @@ "powershellEquivalent": "Set-CsTeamsClientConfiguration -AllowGoogleDrive $false -AllowShareFile $false -AllowBox $false -AllowDropBox $false -AllowEgnyte $false", "recommendedBy": ["CIS 3.0"] }, + { + "name": "standards.TeamsEnrollUser", + "cat": "Teams Standards", + "tag": ["lowimpact"], + "helpText": "Controls whether users with this policy can set the voice profile capture and enrollment through the Recognition tab in their Teams client settings.", + "docsDescription": "Controls whether users with this policy can set the voice profile capture and enrollment through the Recognition tab in their Teams client settings.", + "addedComponent": [ + { + "type": "autoComplete", + "name": "standards.TeamsEnrollUser.EnrollUserOverride", + "label": "Voice and Face Enrollment", + "options": [ + { + "label": "Disabled", + "value": "Disabled" + }, + { + "label": "Enabled", + "value": "Enabled" + } + ] + } + ], + "label": "Default voice and face enrollment", + "impact": "Low Impact", + "impactColour": "info", + "powershellEquivalent": "Set-CsTeamsMeetingPolicy -Identity Global -EnrollUserOverride $false", + "recommendedBy": [] + }, { "name": "standards.TeamsExternalAccessPolicy", "cat": "Teams Standards", @@ -2463,17 +2655,17 @@ "docsDescription": "Sets the properties of the Global external access policy. External access policies determine whether or not your users can: 1) communicate with users who have Session Initiation Protocol (SIP) accounts with a federated organization; 2) communicate with users who are using custom applications built with Azure Communication Services; 3) access Skype for Business Server over the Internet, without having to log on to your internal network; 4) communicate with users who have SIP accounts with a public instant messaging (IM) provider such as Skype; and, 5) communicate with people who are using Teams with an account that's not managed by an organization.", "addedComponent": [ { - "type": "boolean", + "type": "switch", "name": "standards.TeamsExternalAccessPolicy.EnableFederationAccess", "label": "Allow communication from trusted organizations" }, { - "type": "boolean", + "type": "switch", "name": "standards.TeamsExternalAccessPolicy.EnablePublicCloudAccess", "label": "Allow user to communicate with Skype users" }, { - "type": "boolean", + "type": "switch", "name": "standards.TeamsExternalAccessPolicy.EnableTeamsConsumerAccess", "label": "Allow communication with unmanaged Teams accounts" } @@ -2492,20 +2684,21 @@ "docsDescription": "Sets the properties of the Global federation configuration. Federation configuration settings determine whether or not your users can communicate with users who have SIP accounts with a federated organization.", "addedComponent": [ { - "type": "boolean", + "type": "switch", "name": "standards.TeamsFederationConfiguration.AllowTeamsConsumer", "label": "Allow users to communicate with other organizations" }, { - "type": "boolean", + "type": "switch", "name": "standards.TeamsFederationConfiguration.AllowPublicUsers", "label": "Allow users to communicate with Skype Users" }, { - "type": "Select", + "type": "autoComplete", + "multiple": false, "name": "standards.TeamsFederationConfiguration.DomainControl", "label": "Communication Mode", - "values": [ + "options": [ { "label": "Allow all external domains", "value": "AllowAllExternal" @@ -2525,9 +2718,10 @@ ] }, { - "type": "input", + "type": "textField", "name": "standards.TeamsFederationConfiguration.DomainList", - "label": "Domains, Comma separated" + "label": "Domains, Comma separated", + "required": false } ], "label": "Federation Configuration for Microsoft Teams", @@ -2535,5 +2729,414 @@ "impactColour": "warning", "powershellEquivalent": "Set-CsTenantFederationConfiguration", "recommendedBy": [] + }, + { + "name": "standards.TeamsMessagingPolicy", + "cat": "Teams Standards", + "tag": ["mediumimpact"], + "helpText": "Sets the properties of the Global messaging policy.", + "docsDescription": "Sets the properties of the Global messaging policy. Messaging policies control which chat and channel messaging features are available to users in Teams.", + "addedComponent": [ + { + "type": "switch", + "name": "standards.TeamsMessagingPolicy.AllowOwnerDeleteMessage", + "label": "Allow Owner to Delete Messages", + "default": false + }, + { + "type": "switch", + "name": "standards.TeamsMessagingPolicy.AllowUserDeleteMessage", + "label": "Allow User to Delete Messages", + "default": true + }, + { + "type": "switch", + "name": "standards.TeamsMessagingPolicy.AllowUserEditMessage", + "label": "Allow User to Edit Messages", + "default": true + }, + { + "type": "switch", + "name": "standards.TeamsMessagingPolicy.AllowUserDeleteChat", + "label": "Allow User to Delete Chats", + "default": true + }, + { + "type": "autoComplete", + "multiple": false, + "name": "standards.TeamsMessagingPolicy.ReadReceiptsEnabledType", + "label": "Read Receipts Enabled Type", + "options": [ + { + "label": "User controlled", + "value": "UserPreference" + }, + { + "label": "Turned on for everyone", + "value": "Everyone" + }, + { + "label": "Turned off for everyone", + "value": "None" + } + ] + }, + { + "type": "switch", + "name": "standards.TeamsMessagingPolicy.CreateCustomEmojis", + "label": "Allow Creating Custom Emojis", + "default": true + }, + { + "type": "switch", + "name": "standards.TeamsMessagingPolicy.DeleteCustomEmojis", + "label": "Allow Deleting Custom Emojis", + "default": false + }, + { + "type": "switch", + "name": "standards.TeamsMessagingPolicy.AllowSecurityEndUserReporting", + "label": "Allow reporting message as security concern", + "default": true + }, + { + "type": "switch", + "name": "standards.TeamsMessagingPolicy.AllowCommunicationComplianceEndUserReporting", + "label": "Allow reporting message as inappropriate content", + "default": true + } + ], + "label": "Global Messaging Policy for Microsoft Teams", + "impact": "Medium Impact", + "impactColour": "warning", + "powershellEquivalent": "Set-CsTeamsMessagingPolicy", + "recommendedBy": [] + }, + { + "name": "standards.AutopilotStatusPage", + "cat": "Device Management Standards", + "tag": ["lowimpact"], + "disabledFeatures": { + "report": true, + "warn": true, + "remediate": false + }, + "helpText": "Deploy the Autopilot Status Page, which shows progress during device setup through Autopilot.", + "docsDescription": "This standard allows configuration of the Autopilot Status Page, providing users with a visual representation of the progress during device setup. It includes options like timeout, logging, and retry settings.", + "addedComponent": [ + { + "type": "number", + "name": "standards.AutopilotStatusPage.TimeOutInMinutes", + "label": "Timeout in minutes", + "default": 60 + }, + { + "type": "textField", + "name": "standards.AutopilotStatusPage.ErrorMessage", + "label": "Custom Error Message" + }, + { + "type": "switch", + "name": "standards.AutopilotStatusPage.ShowProgress", + "label": "Show progress to users", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotStatusPage.EnableLog", + "label": "Turn on log collection", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotStatusPage.OBEEOnly", + "label": "Show status page only with OOBE setup", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotStatusPage.BlockDevice", + "label": "Block device usage during setup", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotStatusPage.AllowRetry", + "label": "Allow retry", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotStatusPage.AllowReset", + "label": "Allow reset", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotStatusPage.AllowFail", + "label": "Allow users to use device if setup fails", + "default": true + } + ], + "label": "Enable Autopilot Status Page", + "impact": "Low Impact", + "impactColour": "info", + "recommendedBy": [] + }, + { + "name": "standards.AutopilotProfile", + "cat": "Device Management Standards", + "tag": ["lowimpact"], + "disabledFeatures": { + "report": true, + "warn": true, + "remediate": false + }, + "helpText": "Assign the appropriate Autopilot profile to streamline device deployment.", + "docsDescription": "This standard allows the deployment of Autopilot profiles to devices, including settings such as unique name templates, language options, and local admin privileges.", + "addedComponent": [ + { + "type": "textField", + "name": "standards.AutopilotProfile.DisplayName", + "label": "Profile Display Name" + }, + { + "type": "textField", + "name": "standards.AutopilotProfile.Description", + "label": "Profile Description" + }, + { + "type": "textField", + "name": "standards.AutopilotProfile.DeviceNameTemplate", + "label": "Unique Device Name Template" + }, + { + "type": "autoComplete", + "multiple": false, + "name": "standards.AutopilotProfile.Languages", + "label": "Languages", + "api": { + "url": "/languageList.json", + "labelField": "language", + "valueField": "tag" + } + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.CollectHash", + "label": "Convert all targeted devices to Autopilot", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.AssignToAllDevices", + "label": "Assign to all devices", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.SelfDeployingMode", + "label": "Enable Self-deploying Mode", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.HideTerms", + "label": "Hide Terms and Conditions", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.HidePrivacy", + "label": "Hide Privacy Settings", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.HideChangeAccount", + "label": "Hide Change Account Options", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.NotLocalAdmin", + "label": "Setup user as a standard user (not local admin)", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.AllowWhiteGlove", + "label": "Allow White Glove OOBE", + "default": true + }, + { + "type": "switch", + "name": "standards.AutopilotProfile.AutoKeyboard", + "label": "Automatically configure keyboard", + "default": true + } + ], + "label": "Enable Autopilot Profile", + "impact": "Low Impact", + "impactColour": "info", + "recommendedBy": [] + }, + { + "name": "standards.IntuneTemplate", + "cat": "Templates", + "label": "Intune Template", + "multiple": true, + "disabledFeatures": { + "report": true, + "warn": true, + "remediate": false + }, + "impact": "High", + "helpText": "Deploy and manage Intune templates across devices.", + "addedComponent": [ + { + "type": "autoComplete", + "multiple": false, + "name": "TemplateList", + "label": "Select Intune Template", + "api": { + "url": "/api/ListIntuneTemplates", + "labelField": "Displayname", + "valueField": "GUID", + "queryKey": "languages" + } + }, + { + "name": "AssignTo", + "label": "Who should this template be assigned to?", + "type": "radio", + "options": [ + { "label": "Do not assign", "value": "On" }, + { "label": "Assign to all users", "value": "allLicensedUsers" }, + { "label": "Assign to all devices", "value": "AllDevices" }, + { "label": "Assign to all users and devices", "value": "AllDevicesAndUsers" }, + { "label": "Assign to Custom Group", "value": "customGroup" } + ] + }, + { + "type": "textField", + "required": false, + "name": "customGroup", + "label": "Enter the custom group name if you selected 'Assign to Custom Group'. Wildcards are allowed." + } + ] + }, + { + "name": "standards.TransportRuleTemplate", + "label": "Transport Rule Template", + "cat": "Templates", + "disabledFeatures": { + "report": true, + "warn": true, + "remediate": false + }, + "impact": "Medium", + "helpText": "Deploy transport rules to manage email flow.", + "addedComponent": [ + { + "type": "autoComplete", + "name": "transportRuleTemplate", + "label": "Select Transport Rule Template", + "api": { + "url": "/api/ListTransportRulesTemplates", + "labelField": "name", + "valueField": "GUID", + "queryKey": "ListTransportRulesTemplates" + } + } + ] + }, + { + "name": "standards.ConditionalAccessTemplate", + "label": "Conditional Access Template", + "cat": "Templates", + "multiple": true, + "disabledFeatures": { + "report": true, + "warn": true, + "remediate": false + }, + "impact": "High", + "helpText": "Manage conditional access policies for better security.", + "addedComponent": [ + { + "type": "autoComplete", + "name": "TemplateList", + "multiple": false, + "label": "Select Conditional Access Template", + "api": { + "url": "/api/ListCATemplates", + "labelField": "displayName", + "valueField": "GUID", + "queryKey": "ListCATemplates" + } + }, + { + "name": "state", + "label": "What state should we deploy this template in?", + "type": "radio", + "options": [ + { "value": "donotchange", "label": "Do not change state" }, + { "value": "Enabled", "label": "Set to enabled" }, + { "value": "Disabled", "label": "Set to disabled" }, + { "value": "enabledForReportingButNotEnforced", "label": "Set to report only" } + ] + } + ] + }, + { + "name": "standards.ExchangeConnectorTemplate", + "label": "Exchange Connector Template", + "disabledFeatures": { + "report": true, + "warn": true, + "remediate": false + }, + "impact": "Medium", + "helpText": "Deploy and manage Exchange connectors.", + "addedComponent": [ + { + "type": "autoComplete", + "name": "exConnectorTemplate", + "label": "Select Exchange Connector Template", + "api": { + "url": "/api/ListExConnectorTemplates", + "labelField": "name", + "valueField": "GUID", + "queryKey": "ListExConnectorTemplates" + } + } + ] + }, + { + "name": "standards.GroupTemplate", + "label": "Group Template", + "multi": true, + "cat": "Templates", + "disabledFeatures": { + "report": true, + "warn": true, + "remediate": false + }, + "impact": "Medium", + "helpText": "Deploy and manage group templates.", + "addedComponent": [ + { + "type": "autoComplete", + "name": "groupTemplate", + "label": "Select Group Template", + "api": { + "url": "/api/ListGroupTemplates", + "labelField": "Displayname", + "valueField": "GUID", + "queryKey": "ListGroupTemplates" + } + } + ] } ] diff --git a/src/data/translator.json b/src/data/translator.json deleted file mode 100644 index 6144de6d1a7d..000000000000 --- a/src/data/translator.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "accessrights": "AccessRights", - "accountenabled": "Enabled", - "acquisitiondate": "Purchased on", - "actions": "Actions", - "activateddatetime": "Activated", - "activationstate": "Activation State", - "activesyncenabled": "ActiveSync Enabled", - "additionalemailaddresses": "Additional Email Addresses", - "affecteddevices": "Affected Devices Names", - "affecteddevicescount": "# Affected Devices", - "allocated": "Allocated (GB)", - "applicationid": "Application ID", - "assignedlicenses": "Licenses", - "assignedto": "Assigned to User", - "autoextendduration": "Auto Extend", - "avgseconds": "Avg (seconds)", - "builtincontrols": "Built-in Controls", - "callcount": "Call Count", - "cippconnectortype": "Type", - "clientapptypes": "Client App Types", - "clienttype": "Client Type", - "clientversion": "Client Version", - "command": "Command", - "comment": "Comment", - "companyname": "Company", - "created": " Created Date (Local)", - "createddatetime": "Created", - "customer/displayname": "Tenant", - "cveid": "CVE ID", - "date": "Date", - "defaultdomainname": "Default Domain", - "desc": "Description", - "deviceaccessstate": "Access State", - "devicefriendlyname": "Friendly Name", - "devicemodel": "Model", - "deviceos": "OS", - "devicetype": "Device Type", - "dkimenabled": "DKIM Enabled", - "dmarcactionpolicy": "DMARC Action Policy", - "dmarcpercentagepass": "DMARC % Pass", - "dmarcpresent": "DMARC Present", - "dnssecpresent": "DNSSec Enabled", - "domain": "Domain", - "ecpenabled": "ECP Enabled", - "enddatetime": "End", - "ewsenabled": "EWS Enabled", - "excludeapplications": "Exclude Applications", - "excluded": "Excluded", - "excludedate": "Exclude Date", - "excludegroups": "Exclude Groups", - "excludelocations": "Exclude Locations", - "excludeplatforms": "Platform Exc", - "excludeuser": "Exclude User", - "excludeusers": "Exclude Users", - "executedtime": "Last executed time", - "execution": "Execute", - "executioncount": "Executions", - "exploitabilitylevel": "Exploit Publicly Available", - "filecount": "File Count (Total)", - "firstsync": "First Sync", - "forwardto": "Forwards To", - "grantcontrolsoperator": "Control Operator", - "guid": "GUID", - "hasarchive": "Archiving Enabled", - "identity": "Identity", - "if": "If", - "imapenabled": "IMAP Enabled", - "includeapplications": "Include Applications", - "includegroups": "Include Groups", - "includelocations": "Include Locations", - "includeplatforms": "Platform Inc", - "includeunknowncountriesandregions": "Include Unknown Countries", - "includeusers": "Include Users", - "isocountrycode": "Country", - "isoperatorconnect": "Operator Connect", - "istransportrulescoped": "Only apply via transport rules", - "itemcount": "Item Count (Total)", - "lastactive": "Last Active", - "lastsuccesssync": "Last Succesfull Sync", - "lastsyncattempt": "Last Sync Attempt", - "mail": "Email", - "mailboxownerid": "Mailbox", - "mailnickname": "Mail nickname", - "mailprovider": "Mail Provider", - "mapienabled": "MAPI Enabled", - "maxseconds": "Max (seconds)", - "meetingcount": "Meeting Count", - "modifieddatetime": "Last Modified", - "mxpasstest": "MX Pass Test", - "numbertype": "Number Type", - "objectid": "Object ID", - "onpremisessyncenabled": "AD Synced", - "osplatform": "Platform", - "owaenabled": "OWA Enabled", - "parameters": "Parameters", - "placename": "Location", - "policyname": "Blocked by Policy", - "popenabled": "POP Enabled", - "postexecution": "Sending to", - "primarysmtpaddress": "Primary E-mail", - "product_display_name": "Display Name", - "quickscanoverdue": "CVSS Score", - "quotagb": "Quota (GB)", - "quotaused": "Quota Used(%)", - "rangeorlocation": "Locations or IPs", - "receivedtime": "Received on", - "recipientaddress": "Recipient", - "recipienttype": "Mailbox Type", - "recipienttypedetails": "Recipient Type Details", - "recurrence": "Recurrence", - "requestdate": "Request Date", - "requestreason": "Reason", - "requeststatus": "Status", - "requestuser": "Requester", - "scheduledtime": "Scheduled Time", - "scope": "Scope (Permissions)", - "scorepercentage": "Security Score", - "securityupdateavailable": "Update Available", - "senderaddress": "Sender", - "senderipaddresses": "Sender IP Addresses", - "service": "Service", - "smarthost": "Smarthost", - "softwarename": "Application Name", - "softwarevendor": "Vendor", - "spfpassall": "SPF Pass Test", - "startat": "Migration Started at", - "starttime": "Permissions Granted (Local)", - "state": "State", - "storageusedinbytes": "Used Space (GB)", - "subject": "Subject", - "tags": "Tags", - "taskstate": "Task State", - "teamschat": "Chat Count", - "telephonenumber": "Phone Number", - "template": "Root Template", - "tenantid": "Tenant ID", - "tenantname": "Tenant Name", - "tlsdomain": "TLS Domain", - "tlssendercertificatename": "Inbound Connector Hostname", - "tlssettings": "TLS Settings", - "totalseconds": "Total (seconds)", - "upn": "UPN", - "url": "URL", - "usedgb": "Used (GB)", - "user": "User", - "userprincipalname": "User Prinicipal Name", - "usertype": "User Type", - "visibility": "Visibility", - "vulnerabilityseveritylevel": "Severity", - "locationinfo": "Location Info" -} diff --git a/src/helpers.js b/src/helpers.js deleted file mode 100644 index 3b746312e3c3..000000000000 --- a/src/helpers.js +++ /dev/null @@ -1,22 +0,0 @@ -export function isPromise(obj) { - return ( - !!obj && - (typeof obj === 'object' || typeof obj === 'function') && - typeof obj.then === 'function' - ) -} - -/** - * Convert search params object into a string: - * ```js - * queryString({key: 'value', key2: 'value2'}) - * // ==> ?key=value&key2=value2 - * ``` - * @param {object} searchParams - * @returns {string} - */ -export function queryString(searchParams) { - const params = new URLSearchParams() - Object.keys(searchParams).forEach((key) => params.append(key, searchParams[key])) - return '?' + params.toString() -} diff --git a/src/hooks/use-auth.js b/src/hooks/use-auth.js new file mode 100644 index 000000000000..0b8e687f758c --- /dev/null +++ b/src/hooks/use-auth.js @@ -0,0 +1,4 @@ +import { useContext } from 'react'; +import { AuthContext } from '../contexts/auth/jwt-context'; + +export const useAuth = () => useContext(AuthContext); diff --git a/src/hooks/use-dialog.js b/src/hooks/use-dialog.js new file mode 100644 index 000000000000..2e88f6adfd62 --- /dev/null +++ b/src/hooks/use-dialog.js @@ -0,0 +1,28 @@ +import { useCallback, useState } from 'react'; + +export function useDialog() { + const [state, setState] = useState({ + open: false, + data: undefined + }); + + const handleOpen = useCallback((data) => { + setState({ + open: true, + data + }); + }, []); + + const handleClose = useCallback(() => { + setState({ + open: false + }); + }, []); + + return { + data: state.data, + handleClose, + handleOpen, + open: state.open + }; +} diff --git a/src/hooks/use-filters.js b/src/hooks/use-filters.js new file mode 100644 index 000000000000..57faa1de4023 --- /dev/null +++ b/src/hooks/use-filters.js @@ -0,0 +1,143 @@ +import { useCallback, useEffect, useMemo, useState } from 'react'; + +const emptyFilter = { + operator: undefined, + property: '', + value: undefined +}; + +const validateFilter = (filter) => { + // Filters need an operator and a property + if (!filter.operator || !filter.property) { + return false; + } + + // isBlank and isPresent operators cannot have a value + if (filter.operator === 'isBlank' || filter.operator === 'isPresent') { + return typeof filter.value === 'undefined'; + } + + // Other operators require a value + if (typeof filter.value === 'undefined') { + return false; + } + + return true; +}; + +export const useFilters = (operators = [], properties = [], initialFilters = []) => { + const [filters, setFilters] = useState([]); + + useEffect(() => { + setFilters(initialFilters.length > 0 + ? initialFilters + : [emptyFilter]); + }, [initialFilters]); + + const valid = useMemo(() => { + let passedAll = true; + + for (let i = 0; i < filters.length; i++) { + const passed = validateFilter(filters[i]); + + if (!passed) { + passedAll = false; + break; + } + } + + return passedAll; + }, [filters]); + + const handleFilterAdd = useCallback((index) => { + setFilters((prevState) => { + const filters = [...prevState]; + + filters.splice(index, 0, emptyFilter); + + return filters; + }); + }, []); + + const handleOperatorChange = useCallback((index, name) => { + // Ensure operator is allowed + + const operator = operators.find((operator) => operator.name === name); + + if (!operator) { + return; + } + + setFilters((prevState) => { + const filters = [...prevState]; + + filters[index] = { + ...filters[index], + operator: name + }; + + return filters; + }); + }, [operators]); + + const handlePropertyChange = useCallback((index, name) => { + // Ensure property is allowed + + const property = properties.find((property) => property.name === name); + + if (!property) { + return; + } + + setFilters((prevState) => { + const filters = [...prevState]; + + filters[index] = { + operator: undefined, + property: name, + value: undefined + }; + + return filters; + }); + }, [properties]); + + const handleValueChange = useCallback((index, value) => { + setFilters((prevState) => { + const filters = [...prevState]; + + filters[index] = { + ...filters[index], + value + }; + + return filters; + }); + }, []); + + const handleFiltersClear = useCallback(() => { + setFilters([emptyFilter]); + }, []); + + const handleFilterRemove = useCallback((index) => { + if (filters.length === 1) { + setFilters([emptyFilter]); + return; + } + + setFilters((prevState) => { + return prevState.filter((filter, _index) => _index !== index); + }); + }, [filters]); + + return { + filters, + handleFilterAdd, + handleFilterRemove, + handleFiltersClear, + handleOperatorChange, + handlePropertyChange, + handleValueChange, + valid + }; +}; diff --git a/src/hooks/use-mocked-user.js b/src/hooks/use-mocked-user.js new file mode 100644 index 000000000000..262df3fd1b1b --- /dev/null +++ b/src/hooks/use-mocked-user.js @@ -0,0 +1,10 @@ +export const useMockedUser = () => { + // To get the user from the authContext, you can use + // `const { user } = useAuth();` + return { + id: '5e86809283e28b96d2d38537', + avatar: '/assets/avatars/avatar-chen-simmons.jpg', + name: 'Chen Simmons', + email: 'chen.simmons@devias.io' + }; +}; diff --git a/src/hooks/use-mounted.js b/src/hooks/use-mounted.js new file mode 100644 index 000000000000..8274d16fff3d --- /dev/null +++ b/src/hooks/use-mounted.js @@ -0,0 +1,15 @@ +import { useCallback, useEffect, useRef } from 'react'; + +export const useMounted = () => { + const isMounted = useRef(false); + + useEffect(() => { + isMounted.current = true; + + return () => { + isMounted.current = false; + }; + }, []); + + return useCallback(() => isMounted.current, []); +}; diff --git a/src/hooks/use-page-view.js b/src/hooks/use-page-view.js new file mode 100644 index 000000000000..c4365337c92a --- /dev/null +++ b/src/hooks/use-page-view.js @@ -0,0 +1,3 @@ +import { useEffect } from "react"; + +export const usePageView = () => {}; diff --git a/src/hooks/use-popover.js b/src/hooks/use-popover.js new file mode 100644 index 000000000000..a374004c9564 --- /dev/null +++ b/src/hooks/use-popover.js @@ -0,0 +1,26 @@ +import { useCallback, useRef, useState } from 'react'; + +export function usePopover() { + const anchorRef = useRef(null); + const [open, setOpen] = useState(false); + + const handleOpen = useCallback(() => { + setOpen(true); + }, []); + + const handleClose = useCallback(() => { + setOpen(false); + }, []); + + const handleToggle = useCallback(() => { + setOpen((prevState) => !prevState); + }, []); + + return { + anchorRef, + handleClose, + handleOpen, + handleToggle, + open + }; +} diff --git a/src/hooks/use-securescore.js b/src/hooks/use-securescore.js new file mode 100644 index 000000000000..2394fa98ed0a --- /dev/null +++ b/src/hooks/use-securescore.js @@ -0,0 +1,112 @@ +import { useEffect, useState } from "react"; +import { ApiGetCall } from "../api/ApiCall"; +import { useSettings } from "./use-settings"; +import standards from "/src/data/standards.json"; + +export function useSecureScore() { + const currentTenant = useSettings().currentTenant; + if (currentTenant === "AllTenants") { + return { + controlScore: { isFetching: false, isSuccess: false, data: { Results: [] } }, + secureScore: { isFetching: false, isSuccess: false, data: { Results: [] } }, + translatedData: [], + isFetching: true, + isSuccess: false, + }; + } + + const [translatedData, setTranslatedData] = useState([]); + const [isSuccess, setIsSuccess] = useState(false); + const [isFetching, setIsFetching] = useState(false); + const controlScore = ApiGetCall({ + url: "/api/ListGraphRequest", + data: { + Endpoint: "security/secureScoreControlProfiles", + tenantFilter: currentTenant, + $count: true, + $top: 999, + }, + queryKey: `controlScore-${currentTenant}`, + }); + + const secureScore = ApiGetCall({ + url: "/api/ListGraphRequest", + data: { + Endpoint: "security/secureScores", + tenantFilter: currentTenant, + $count: true, + noPagination: true, + $top: 7, + }, + queryKey: `secureScore-${currentTenant}`, + }); + + useEffect(() => { + if (controlScore.isFetching || secureScore.isFetching) { + setIsFetching(true); + } else { + setIsFetching(false); + } + }, [controlScore.isFetching, secureScore.isFetching]); + + useEffect(() => { + if (controlScore.isSuccess && secureScore.isSuccess) { + const secureScoreData = secureScore.data.Results[0]; + const updatedControlScores = secureScoreData.controlScores.map((control) => { + const translation = controlScore.data.Results?.find( + (controlTranslation) => controlTranslation.id === control.controlName + ); + const remediation = standards.find((standard) => + standard.tag?.includes(control.controlName) + ); + return { + ...control, + title: translation?.title, + threats: translation?.threats, + complianceInformation: translation?.complianceInformation, + actionUrl: remediation + ? //this needs to be updated to be a direct url to apply this standard. + "/tenant/standards/list-applied-standards" + : translation?.actionUrl, + remediation: remediation + ? `1. Enable the CIPP Standard: ${remediation.label}` + : translation?.remediation, + remediationImpact: translation?.remediationImpact, + implementationCost: translation?.implementationCost, + tier: translation?.tier, + userImpact: translation?.userImpact, + vendorInformation: translation?.vendorInformation, + controlStateUpdates: translation?.controlStateUpdates //remove each controlStateUpdate that has the state 'default' as it is not relevant. + ? translation.controlStateUpdates.filter((update) => update.state !== "Default") + : [], + }; + }); + updatedControlScores.sort((a, b) => b.scoreInPercentage - a.scoreInPercentage); + setTranslatedData({ + ...secureScoreData, + //secureScoreData.currentscore is the current score, secureScoreData.maxscore is the max score. calculate % reached. + percentageCurrent: Math.round( + (secureScoreData.currentScore / secureScoreData.maxScore) * 100 + ), + percentageVsAllTenants: Math.round( + (secureScoreData.averageComparativeScores?.[0]?.averageScore / secureScoreData.maxScore) * + 100 + ), + percentageVsSimilar: Math.round( + (secureScoreData.averageComparativeScores?.[1]?.averageScore / secureScoreData.maxScore) * + 100 + ), + controlScores: updatedControlScores, + }); + setIsSuccess(true); + } + }, [controlScore.isSuccess, secureScore.isSuccess, controlScore.data, secureScore.data]); + + return { + controlScore, + secureScore, + translatedData, + isFetching, + isSuccess, + }; +} diff --git a/src/hooks/use-selection.js b/src/hooks/use-selection.js new file mode 100644 index 000000000000..f6b5fef49f74 --- /dev/null +++ b/src/hooks/use-selection.js @@ -0,0 +1,35 @@ +import { useCallback, useEffect, useState } from 'react'; + +export const useSelection = (items = []) => { + const [selected, setSelected] = useState([]); + + useEffect(() => { + setSelected([]); + }, [items]); + + const handleSelectAll = useCallback(() => { + setSelected([...items]); + }, [items]); + + const handleSelectOne = useCallback((item) => { + setSelected((prevState) => [...prevState, item]); + }, []); + + const handleDeselectAll = useCallback(() => { + setSelected([]); + }, []); + + const handleDeselectOne = useCallback((item) => { + setSelected((prevState) => { + return prevState.filter((_item) => _item !== item); + }); + }, []); + + return { + handleDeselectAll, + handleDeselectOne, + handleSelectAll, + handleSelectOne, + selected + }; +}; diff --git a/src/hooks/use-settings.js b/src/hooks/use-settings.js new file mode 100644 index 000000000000..39e4f9b60b64 --- /dev/null +++ b/src/hooks/use-settings.js @@ -0,0 +1,4 @@ +import { useContext } from 'react'; +import { SettingsContext } from '../contexts/settings-context'; + +export const useSettings = () => useContext(SettingsContext); diff --git a/src/hooks/use-window-scroll.js b/src/hooks/use-window-scroll.js new file mode 100644 index 000000000000..3f3172fae595 --- /dev/null +++ b/src/hooks/use-window-scroll.js @@ -0,0 +1,16 @@ +import { useEffect } from 'react'; +import { throttle } from 'lodash'; + +export const useWindowScroll = (config) => { + useEffect(() => { + const { handler, delay } = config; + + const withThrottle = throttle(handler, delay); + + window.addEventListener('scroll', withThrottle); + + return () => { + window.removeEventListener('scroll', withThrottle); + }; + }, [config]); +}; diff --git a/src/hooks/useConfirmModal.jsx b/src/hooks/useConfirmModal.jsx deleted file mode 100644 index d5ceb299c9ce..000000000000 --- a/src/hooks/useConfirmModal.jsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react' -import { ModalService } from 'src/components/utilities' - -export default function useConfirmModal({ - body, - onConfirm = () => {}, - confirmLabel = 'Continue', - cancelLabel = 'Cancel', -}) { - const showModal = () => - ModalService.confirm({ - title: 'Confirm', - body:
    {body}
    , - onConfirm, - confirmLabel, - cancelLabel, - size: 'xl', - }) - - return showModal -} diff --git a/src/hooks/useNavFavouriteCheck.jsx b/src/hooks/useNavFavouriteCheck.jsx deleted file mode 100644 index dc53534dfddc..000000000000 --- a/src/hooks/useNavFavouriteCheck.jsx +++ /dev/null @@ -1,55 +0,0 @@ -import { CNavGroup, CNavItem, CNavTitle } from '@coreui/react' -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { useSelector } from 'react-redux' -import routes from 'src/routes' - -export const useNavFavouriteCheck = (navigation) => { - const favourites = useSelector((state) => state.app.userSettingsDefaults?.favourites) - const recentPages = useSelector((state) => state.app.recentPages) - const newNavigation = [{ component: CNavTitle, name: 'Home' }] - if (Array.isArray(favourites)) { - newNavigation.push({ - component: CNavGroup, - section: 'favourites', - name: 'Favourites', - to: '/favorites', - icon: , - items: favourites.map((item) => { - //console.log(item) - return { - name: item.value.name, - to: item.value.to, - component: CNavItem, - } - }), - }) - } - if (Array.isArray(recentPages)) { - var items = [] - - recentPages.map((path) => { - const item = routes.find((route) => route.path.toLowerCase() === path.toLowerCase()) - if (item?.path) { - items.push({ - name: item.name, - to: item.path, - component: CNavItem, - }) - } - }) - if (items.length > 0) { - items = items.slice(0, 5) - newNavigation.push({ - component: CNavGroup, - section: 'recent', - name: 'Recent Pages', - to: '/recent', - icon: , - items: items, - }) - } - } - newNavigation.push(...navigation) - - return newNavigation -} diff --git a/src/hooks/useQuery.jsx b/src/hooks/useQuery.jsx deleted file mode 100644 index 7d54679fc83c..000000000000 --- a/src/hooks/useQuery.jsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import { useLocation } from 'react-router-dom' - -function useQuery() { - const { search } = useLocation() - - return React.useMemo(() => new URLSearchParams(search), [search]) -} - -export default useQuery diff --git a/src/hooks/useRouteNavCompare.jsx b/src/hooks/useRouteNavCompare.jsx deleted file mode 100644 index 27fc1f9a3a14..000000000000 --- a/src/hooks/useRouteNavCompare.jsx +++ /dev/null @@ -1,33 +0,0 @@ -import { useLoadClientPrincipalQuery } from 'src/store/api/auth' -import { useDispatch } from 'react-redux' -import { updateAccessToken } from 'src/store/features/auth' -import routes from 'src/routes' - -export const useRouteNavCompare = (navigation) => { - const dispatch = useDispatch() - const { data: profile, isFetching } = useLoadClientPrincipalQuery() - if (isFetching) { - return { isLoading: true, component: null } - } - dispatch(updateAccessToken(profile)) - let roles = profile?.clientPrincipal?.userRoles || [] - let newNavigation = navigation.map((nav) => { - if (nav.items) { - nav.items = nav.items.filter((item) => { - const route = routes.find((r) => r.path === item.to) - if ( - !route || - (route.allowedRoles && route.allowedRoles.some((role) => roles.includes(role))) - ) { - return true - } else { - //console.log('Removing route', item) - return false - } - }) - } - return nav - }) - - return newNavigation -} diff --git a/src/icons/iconly/bulk/azure.js b/src/icons/iconly/bulk/azure.js new file mode 100644 index 000000000000..fb52f48a7fed --- /dev/null +++ b/src/icons/iconly/bulk/azure.js @@ -0,0 +1,39 @@ +const Azure = (props) => ( + + + + + + + + + + + + + + + + + + + + + + + +); + +export default Azure; diff --git a/src/icons/iconly/bulk/bag.js b/src/icons/iconly/bulk/bag.js new file mode 100644 index 000000000000..7880745240ca --- /dev/null +++ b/src/icons/iconly/bulk/bag.js @@ -0,0 +1,21 @@ +const Bag = (props) => ( + + + + +); + +export default Bag; diff --git a/src/icons/iconly/bulk/buy.js b/src/icons/iconly/bulk/buy.js new file mode 100644 index 000000000000..ceb06ed5a086 --- /dev/null +++ b/src/icons/iconly/bulk/buy.js @@ -0,0 +1,21 @@ +const Buy = (props) => ( + + + + +); + +export default Buy; diff --git a/src/icons/iconly/bulk/calendar.js b/src/icons/iconly/bulk/calendar.js new file mode 100644 index 000000000000..d9cc5c8eb8bb --- /dev/null +++ b/src/icons/iconly/bulk/calendar.js @@ -0,0 +1,29 @@ +const Calendar = (props) => ( + + + + + + +); + +export default Calendar; diff --git a/src/icons/iconly/bulk/category.js b/src/icons/iconly/bulk/category.js new file mode 100644 index 000000000000..9f6ad476c831 --- /dev/null +++ b/src/icons/iconly/bulk/category.js @@ -0,0 +1,21 @@ +const Category = (props) => ( + + + + +); + +export default Category; diff --git a/src/icons/iconly/bulk/chart.js b/src/icons/iconly/bulk/chart.js new file mode 100644 index 000000000000..2cd781dc6d44 --- /dev/null +++ b/src/icons/iconly/bulk/chart.js @@ -0,0 +1,29 @@ +const Chart = (props) => ( + + + + + + +); + +export default Chart; diff --git a/src/icons/iconly/bulk/defender.js b/src/icons/iconly/bulk/defender.js new file mode 100644 index 000000000000..5cbea2cb7e67 --- /dev/null +++ b/src/icons/iconly/bulk/defender.js @@ -0,0 +1,51 @@ +const Defender = (props) => ( + + + + + + + + + + + + + + + + + +); + +export default Defender; diff --git a/src/icons/iconly/bulk/document.js b/src/icons/iconly/bulk/document.js new file mode 100644 index 000000000000..1c8ccd4f1d07 --- /dev/null +++ b/src/icons/iconly/bulk/document.js @@ -0,0 +1,21 @@ +const Document = (props) => ( + + + + +); + +export default Document; diff --git a/src/icons/iconly/bulk/exchange.js b/src/icons/iconly/bulk/exchange.js new file mode 100644 index 000000000000..3939399d2e0e --- /dev/null +++ b/src/icons/iconly/bulk/exchange.js @@ -0,0 +1,39 @@ +const Exchange = (props) => ( + + + + + + + + + + + +); + +export default Exchange; diff --git a/src/icons/iconly/bulk/graph.js b/src/icons/iconly/bulk/graph.js new file mode 100644 index 000000000000..473baa543351 --- /dev/null +++ b/src/icons/iconly/bulk/graph.js @@ -0,0 +1,21 @@ +const Graph = (props) => ( + + + + +); + +export default Graph; diff --git a/src/icons/iconly/bulk/intune.js b/src/icons/iconly/bulk/intune.js new file mode 100644 index 000000000000..ce95f366d0d5 --- /dev/null +++ b/src/icons/iconly/bulk/intune.js @@ -0,0 +1,26 @@ +const Intune = (props) => ( + + + + + + + + + + + + + +); + +export default Intune; diff --git a/src/icons/iconly/bulk/microsoft.js b/src/icons/iconly/bulk/microsoft.js new file mode 100644 index 000000000000..c2c523af224a --- /dev/null +++ b/src/icons/iconly/bulk/microsoft.js @@ -0,0 +1,10 @@ +const Microsoft = (props) => ( + + + + + + +); + +export default Microsoft; diff --git a/src/icons/iconly/bulk/settings.js b/src/icons/iconly/bulk/settings.js new file mode 100644 index 000000000000..2045bfd55581 --- /dev/null +++ b/src/icons/iconly/bulk/settings.js @@ -0,0 +1,21 @@ +const Settings = (props) => ( + + + + +); + +export default Settings; diff --git a/src/icons/iconly/bulk/show.js b/src/icons/iconly/bulk/show.js new file mode 100644 index 000000000000..deedfe84e040 --- /dev/null +++ b/src/icons/iconly/bulk/show.js @@ -0,0 +1,21 @@ +const Show = (props) => ( + + + + +); + +export default Show; diff --git a/src/icons/iconly/bulk/three-user.js b/src/icons/iconly/bulk/three-user.js new file mode 100644 index 000000000000..56832b3008e6 --- /dev/null +++ b/src/icons/iconly/bulk/three-user.js @@ -0,0 +1,39 @@ +const ThreeUser = (props) => ( + + + + + + + + +); + +export default ThreeUser; diff --git a/src/icons/iconly/bulk/ticket.js b/src/icons/iconly/bulk/ticket.js new file mode 100644 index 000000000000..54f7106dbe5f --- /dev/null +++ b/src/icons/iconly/bulk/ticket.js @@ -0,0 +1,21 @@ +const Ticket = (props) => ( + + + + +); + +export default Ticket; diff --git a/src/icons/iconly/bulk/two-user.js b/src/icons/iconly/bulk/two-user.js new file mode 100644 index 000000000000..a537e703ef9f --- /dev/null +++ b/src/icons/iconly/bulk/two-user.js @@ -0,0 +1,30 @@ +const TwoUser = (props) => ( + + + + + + +); + +export default TwoUser; diff --git a/src/importsMap.jsx b/src/importsMap.jsx deleted file mode 100644 index 49f07b806f00..000000000000 --- a/src/importsMap.jsx +++ /dev/null @@ -1,165 +0,0 @@ -import React from 'react' - export const importsMap = { - "/home": React.lazy(() => import('./views/home/Home')), - "/cipp/logs": React.lazy(() => import('./views/cipp/Logs')), - "/cipp/template-library": React.lazy(() => import('./views/cipp/TemplateLibrary')), - "/cipp/scheduler": React.lazy(() => import('./views/cipp/Scheduler')), - "/cipp/statistics": React.lazy(() => import('./views/cipp/Statistics')), - "/cipp/404": React.lazy(() => import('./views/pages/page404/Page404')), - "/cipp/403": React.lazy(() => import('./views/pages/page403/Page403')), - "/cipp/500": React.lazy(() => import('./views/pages/page500/Page500')), - "/identity/administration/users/add": React.lazy(() => import('./views/identity/administration/AddUser')), - "/identity/administration/users/addbulk": React.lazy(() => import('./views/identity/administration/AddUserBulk')), - "/identity/administration/users/edit": React.lazy(() => import('./views/identity/administration/EditUser')), - "/identity/administration/users/view": React.lazy(() => import('./views/identity/administration/ViewUser')), - "/identity/administration/users/InviteGuest": React.lazy(() => import('./views/identity/administration/InviteGuest')), - "/identity/administration/jit-admin": React.lazy(() => import('./views/identity/administration/DeployJITAdmin')), - "/identity/administration/ViewBec": React.lazy(() => import('./views/identity/administration/ViewBEC')), - "/identity/administration/users": React.lazy(() => import('./views/identity/administration/Users')), - "/identity/administration/risky-users": React.lazy(() => import('./views/identity/administration/RiskyUsers')), - "/identity/administration/devices": React.lazy(() => import('./views/identity/administration/Devices')), - "/identity/administration/groups/add": React.lazy(() => import('./views/identity/administration/AddGroup')), - "/identity/administration/group-templates": React.lazy(() => import('./views/identity/administration/GroupTemplates')), - "/identity/administration/group-add-template": React.lazy(() => import('./views/identity/administration/AddGroupTemplate')), - "/identity/administration/deploy-group-template": React.lazy(() => import('./views/identity/administration/DeployGroupTemplate')), - "/identity/administration/groups/edit": React.lazy(() => import('./views/identity/administration/EditGroup')), - "/identity/administration/groups/view": React.lazy(() => import('./views/identity/administration/ViewGroup')), - "/identity/administration/groups": React.lazy(() => import('./views/identity/administration/Groups')), - "/identity/administration/roles": React.lazy(() => import('./views/identity/administration/Roles')), - "/identity/administration/deleted-items": React.lazy(() => import('./views/identity/administration/Deleted')), - "/teams-share/teams/business-voice": React.lazy(() => import('./views/teams-share/teams/BusinessVoice')), - "/identity/administration/offboarding-wizard": React.lazy(() => import('./views/identity/administration/OffboardingWizard')), - "/endpoint/reports/devices": React.lazy(() => import('./views/endpoint/intune/Devices')), - "/identity/reports/mfa-report": React.lazy(() => import('./views/identity/reports/MFAReport')), - "/identity/reports/inactive-users-report": React.lazy(() => import('./views/identity/reports/InactiveUsers')), - "/identity/reports/Signin-report": React.lazy(() => import('./views/identity/reports/SignIns')), - "/identity/reports/azure-ad-connect-report": React.lazy(() => import('./views/identity/reports/AzureADConnectReport')), - "/identity/reports/risk-detections": React.lazy(() => import('./views/identity/reports/RiskDetections')), - "/tenant/backup/backup-wizard": React.lazy(() => import('./views/tenant/backup/CreateBackup')), - "/tenant/backup/restore-wizard": React.lazy(() => import('./views/tenant/backup/RestoreBackup')), - "/tenant/administration/tenants": React.lazy(() => import('./views/tenant/administration/Tenants')), - "/tenant/administration/tenants/edit": React.lazy(() => import('./views/tenant/administration/EditTenant')), - "/tenant/administration/partner-relationships": React.lazy(() => import('./views/tenant/administration/PartnerRelationships')), - "/tenant/administration/domains": React.lazy(() => import('./views/tenant/administration/Domains')), - "/tenant/administration/alertswizard": React.lazy(() => import('./views/tenant/administration/AlertWizard')), - "/tenant/administration/alertrules": React.lazy(() => import('./views/tenant/administration/AlertRules')), - "/tenant/administration/alert-configuration": React.lazy(() => import('./views/tenant/administration/ListAlertsQueue')), - "/tenant/administration/audit-logs": React.lazy(() => import('./views/tenant/administration/ListAuditLogs')), - "/tenant/administration/graph-explorer": React.lazy(() => import('./views/tenant/administration/GraphExplorer')), - "/tenant/administration/service-health": React.lazy(() => import('./views/tenant/administration/ServiceHealth')), - "/tenant/administration/enterprise-apps": React.lazy(() => import('./views/tenant/administration/ListEnterpriseApps')), - "/tenant/administration/app-consent-requests": React.lazy(() => import('./views/tenant/administration/ListAppConsentRequests')), - "/tenant/conditional/list-policies": React.lazy(() => import('./views/tenant/conditional/ConditionalAccess')), - "/tenant/administration/authentication-methods": React.lazy(() => import('./views/tenant/administration/AuthMethods')), - "/tenant/conditional/deploy-vacation": React.lazy(() => import('./views/tenant/conditional/DeployVacation')), - "/tenant/conditional/test-policy": React.lazy(() => import('./views/tenant/conditional/TestCAPolicy')), - "/tenant/conditional/list-named-locations": React.lazy(() => import('./views/tenant/conditional/NamedLocations')), - "/tenant/conditional/deploy": React.lazy(() => import('./views/tenant/conditional/DeployCA')), - "/tenant/conditional/deploy-named-location": React.lazy(() => import('./views/tenant/conditional/DeployNamedLocation')), - "/tenant/conditional/list-template": React.lazy(() => import('./views/tenant/conditional/ListCATemplates')), - "/tenant/conditional/add-template": React.lazy(() => import('./views/tenant/conditional/AddCATemplate')), - "/tenant/administration/list-licenses": React.lazy(() => import('./views/tenant/administration/ListLicences')), - "/tenant/administration/application-consent": React.lazy(() => import('./views/tenant/administration/ListOauthApps')), - "/tenant/standards/list-applied-standards": React.lazy(() => import('./views/tenant/standards/ListAppliedStandards')), - "/tenant/standards/bpa-report": React.lazy(() => import('./views/tenant/standards/BestPracticeAnalyser')), - "/tenant/standards/domains-analyser": React.lazy(() => import('./views/tenant/standards/DomainsAnalyser')), - "/tenant/standards/individual-domains": React.lazy(() => import('./views/tenant/standards/IndividualDomain')), - "/tenant/administration/tenantlookup": React.lazy(() => import('./views/tenant/administration/TenantLookup')), - "/tenant/tools/geoiplookup": React.lazy(() => import('./views/tenant/administration/GeoIPLookup')), - "/tenant/tools/bpa-report-builder": React.lazy(() => import('./views/tenant/standards/BPAReportBuilder')), - "/tenant/standards/alert-list": React.lazy(() => import('./views/security/incidents/ListAlerts')), - "/endpoint/applications/list": React.lazy(() => import('./views/endpoint/applications/ApplicationsList')), - "/endpoint/applications/queue": React.lazy(() => import('./views/endpoint/applications/ListApplicationQueue')), - "/endpoint/applications/add-choco-app": React.lazy(() => import('./views/endpoint/applications/ApplicationsAddChocoApp')), - "/endpoint/applications/add-winget-app": React.lazy(() => import('./views/endpoint/applications/ApplicationsAddWinGet')), - "/endpoint/applications/add-office-app": React.lazy(() => import('./views/endpoint/applications/ApplicationsAddOffice')), - "/endpoint/applications/add-rmm-app": React.lazy(() => import('./views/endpoint/applications/ApplicationsAddRMM')), - "/endpoint/autopilot/add-device": React.lazy(() => import('./views/endpoint/autopilot/AutopilotAddDevice')), - "/endpoint/autopilot/add-profile": React.lazy(() => import('./views/endpoint/autopilot/AutopilotAddProfile')), - "/endpoint/autopilot/add-status-page": React.lazy(() => import('./views/endpoint/autopilot/AutopilotAddStatusPage')), - "/endpoint/autopilot/list-devices": React.lazy(() => import('./views/endpoint/autopilot/AutopilotListDevices')), - "/endpoint/autopilot/list-profiles": React.lazy(() => import('./views/endpoint/autopilot/AutopilotListProfiles')), - "/endpoint/autopilot/list-status-pages": React.lazy(() => import('./views/endpoint/autopilot/AutopilotListStatusPages')), - "/endpoint/MEM/list-policies": React.lazy(() => import('./views/endpoint/intune/MEMListPolicies')), - "/endpoint/MEM/list-compliance-policies": React.lazy(() => import('./views/endpoint/intune/MEMListCompliance')), - "/endpoint/MEM/list-appprotection-policies": React.lazy(() => import('./views/endpoint/intune/MEMListAppProtection')), - "/endpoint/MEM/edit-policy": React.lazy(() => import('./views/endpoint/intune/MEMEditPolicy')), - "/endpoint/MEM/ca-policies": React.lazy(() => import('./views/endpoint/intune/MEMCAPolicies')), - "/endpoint/MEM/add-policy": React.lazy(() => import('./views/endpoint/intune/MEMAddPolicy')), - "/endpoint/MEM/add-policy-template": React.lazy(() => import('./views/endpoint/intune/MEMAddPolicyTemplate')), - "/endpoint/MEM/list-templates": React.lazy(() => import('./views/endpoint/intune/MEMListPolicyTemplates')), - "/security/defender/deployment": React.lazy(() => import('./views/security/defender/DeployDefender')), - "/security/defender/list-defender": React.lazy(() => import('./views/security/defender/ListDefender')), - "/security/defender/list-defender-tvm": React.lazy(() => import('./views/security/defender/ListVuln')), - "/teams-share/onedrive/list": React.lazy(() => import('./views/teams-share/onedrive/OneDriveList')), - "/teams-share/sharepoint/list-sharepoint": React.lazy(() => import('./views/teams-share/sharepoint/SharepointList')), - "/teams-share/sharepoint/addsite": React.lazy(() => import('./views/teams-share/sharepoint/AddSite')), - "/teams-share/sharepoint/addsitebulk": React.lazy(() => import('./views/teams-share/sharepoint/AddSiteBulk')), - "/teams-share/teams/list-team": React.lazy(() => import('./views/teams-share/teams/TeamsListTeam')), - "/teams-share/teams/view-team-settings": React.lazy(() => import('./views/teams-share/teams/ViewTeamSettings')), - "/teams-share/teams/add-team": React.lazy(() => import('./views/teams-share/teams/TeamsAddTeam')), - "/teams-share/teams/teams-activity": React.lazy(() => import('./views/teams-share/teams/TeamsActivity')), - "/email/administration/contacts": React.lazy(() => import('./views/email-exchange/administration/ContactsList')), - "/email/connectors/list-connectors": React.lazy(() => import('./views/email-exchange/connectors/ConnectorList')), - "/email/connectors/deploy-connector": React.lazy(() => import('./views/email-exchange/connectors/DeployConnector')), - "/email/connectors/add-connector-templates": React.lazy(() => import('./views/email-exchange/connectors/AddConnectorTemplate')), - "/email/connectors/list-connector-templates": React.lazy(() => import('./views/email-exchange/connectors/ListConnectorTemplates')), - "/email/transport/list-rules": React.lazy(() => import('./views/email-exchange/transport/TransportRules')), - "/email/transport/deploy-rules": React.lazy(() => import('./views/email-exchange/transport/DeployTransport')), - "/email/transport/list-templates": React.lazy(() => import('./views/email-exchange/transport/ListTransportTemplates')), - "/email/transport/add-template": React.lazy(() => import('./views/email-exchange/transport/AddTransportTemplate')), - "/email/spamfilter/list-spamfilter": React.lazy(() => import('./views/email-exchange/spamfilter/Spamfilter')), - "/email/spamfilter/deploy": React.lazy(() => import('./views/email-exchange/spamfilter/DeploySpamfilter')), - "/email/spamfilter/list-templates": React.lazy(() => import('./views/email-exchange/spamfilter/ListSpamfilterTemplates')), - "/resources/management/list-rooms": React.lazy(() => import('./views/email-exchange/rooms/ListRooms')), - "/resources/management/room-lists": React.lazy(() => import('./views/email-exchange/rooms/ListRoomLists')), - "/resources/management/add-room": React.lazy(() => import('./views/email-exchange/rooms/AddRoomMailbox')), - "/email/tools/mailbox-restore-wizard": React.lazy(() => import('./views/email-exchange/tools/MailboxRestoreWizard')), - "/email/tools/mailbox-restores": React.lazy(() => import('./views/email-exchange/tools/MailboxRestores')), - "/email/tools/mail-test": React.lazy(() => import('./views/email-exchange/tools/MailTest')), - "/email/tools/message-viewer": React.lazy(() => import('./views/email-exchange/tools/MessageViewer')), - "/email/spamfilter/add-template": React.lazy(() => import('./views/email-exchange/spamfilter/AddSpamfilterTemplate')), - "/email/administration/edit-mailbox-permissions": React.lazy(() => import('./views/email-exchange/administration/EditMailboxPermissions')), - "/email/administration/add-shared-mailbox": React.lazy(() => import('./views/email-exchange/administration/AddSharedMailbox')), - "/email/administration/add-contact": React.lazy(() => import('./views/email-exchange/administration/AddContact')), - "/email/administration/edit-calendar-permissions": React.lazy(() => import('./views/email-exchange/administration/EditCalendarPermissions')), - "/email/administration/view-mobile-devices": React.lazy(() => import('./views/email-exchange/administration/ViewMobileDevices')), - "/email/administration/edit-contact": React.lazy(() => import('./views/email-exchange/administration/EditContact')), - "/email/administration/mailboxes": React.lazy(() => import('./views/email-exchange/administration/MailboxesList')), - "/email/administration/deleted-mailboxes": React.lazy(() => import('./views/email-exchange/administration/DeletedMailboxes')), - "/email/administration/mailbox-rules": React.lazy(() => import('./views/email-exchange/administration/MailboxRuleList')), - "/email/administration/Quarantine": React.lazy(() => import('./views/email-exchange/administration/QuarantineList')), - "/email/administration/tenant-allow-block-lists": React.lazy(() => import('./views/email-exchange/administration/ListTenantAllowBlockList')), - "/email/administration/add-tenant-allow-block-list": React.lazy(() => import('./views/email-exchange/administration/AddTenantAllowBlockList')), - "/email/reports/mailbox-statistics": React.lazy(() => import('./views/email-exchange/reports/MailboxStatisticsList')), - "/email/reports/SharedMailboxEnabledAccount": React.lazy(() => import('./views/email-exchange/reports/SharedMailboxEnabledAccount')), - "/email/reports/mailbox-cas-settings": React.lazy(() => import('./views/email-exchange/reports/MailboxClientAccessSettingsList')), - "/email/reports/message-trace": React.lazy(() => import('./views/email-exchange/reports/MessageTrace')), - "/cipp/user-settings": React.lazy(() => import('./views/cipp/UserSettings')), - "/email/reports/antiphishing-filters": React.lazy(() => import('./views/email-exchange/reports/AntiPhishingFilters')), - "/email/reports/malware-filters": React.lazy(() => import('./views/email-exchange/reports/MalwareFilters')), - "/email/reports/safelinks-filters": React.lazy(() => import('./views/email-exchange/reports/SafeLinksFilters')), - "/email/reports/safeattachments-filters": React.lazy(() => import('./views/email-exchange/reports/SafeAttachmentsFilters')), - "/security/incidents/list-alerts": React.lazy(() => import('./views/security/incidents/ListAlerts')), - "/security/incidents/list-incidents": React.lazy(() => import('./views/security/incidents/ListIncidents')), - "/security/reports/list-device-compliance": React.lazy(() => import('./views/security/reports/ListDeviceComplianceReport')), - "/license": React.lazy(() => import('./views/pages/license/License')), - "/cipp/settings": React.lazy(() => import('./views/cipp/app-settings/CIPPSettings')), - "/cipp/extensions": React.lazy(() => import('./views/cipp/Extensions')), - "/cipp/extension-sync": React.lazy(() => import('./views/cipp/ExtensionSync')), - "/cipp/setup": React.lazy(() => import('./views/cipp/Setup')), - "/tenant/administration/securescore": React.lazy(() => import('./views/tenant/administration/SecureScore')), - "/tenant/administration/gdap": React.lazy(() => import('./views/tenant/administration/GDAPWizard')), - "/tenant/administration/gdap-invite-wizard": React.lazy(() => import('./views/tenant/administration/GDAPInviteWizard')), - "/tenant/administration/gdap-invites": React.lazy(() => import('./views/tenant/administration/ListGDAPInvites')), - "/tenant/administration/gdap-role-wizard": React.lazy(() => import('./views/tenant/administration/GDAPRoleWizard')), - "/tenant/administration/gdap-roles": React.lazy(() => import('./views/tenant/administration/ListGDAPRoles')), - "/tenant/administration/gdap-relationships": React.lazy(() => import('././views/tenant/administration/ListGDAPRelationships')), - "/tenant/administration/appapproval": React.lazy(() => import('./views/cipp/AppApproval')), - "/tenant/administration/gdap-status": React.lazy(() => import('./views/tenant/administration/ListGDAPQueue')), - "/tenant/standards/list-standards": React.lazy(() => import('./views/tenant/standards/ListStandards')), - "/tenant/administration/tenant-offboarding-wizard": React.lazy(() => import('./views/tenant/administration/TenantOffboardingWizard')), - "/tenant/administration/tenant-onboarding": React.lazy(() => import('./views/tenant/administration/TenantOnboarding')), - "/tenant/administration/tenant-onboarding-wizard": React.lazy(() => import('./views/tenant/administration/TenantOnboardingWizard')), -} -export default importsMap \ No newline at end of file diff --git a/src/index.js b/src/index.js new file mode 100644 index 000000000000..6f78fb85ec69 --- /dev/null +++ b/src/index.js @@ -0,0 +1,17 @@ + +import { Layout as DashboardLayout } from "/src/layouts/index.js"; + +const Page = () => { + const pageTitle = "Dashboard"; + + return ( +
    +

    {pageTitle}

    +

    This is a placeholder page for the dashboard section.

    +
    + ); +}; + +Page.getLayout = (page) => {page}; + +export default Page; diff --git a/src/index.jsx b/src/index.jsx deleted file mode 100644 index 81aee3c89edb..000000000000 --- a/src/index.jsx +++ /dev/null @@ -1,27 +0,0 @@ -import 'react-app-polyfill/stable' -import 'core-js' -import React from 'react' -import { createRoot } from 'react-dom/client' -import App from 'src/App' -import { Provider } from 'react-redux' -import { store, persistor } from 'src/store' -import { PersistGate } from 'redux-persist/integration/react' -import { FullScreenLoading } from 'src/components/utilities' -import { HelmetProvider } from 'react-helmet-async' - -const container = document.getElementById('root') - -const root = createRoot(container) - -root.render( - // @TODO fix issues preventing app from running with StrictMode enabled - // - - } persistor={persistor}> - - - - - , - // , -) diff --git a/src/layout/DefaultLayout.jsx b/src/layout/DefaultLayout.jsx deleted file mode 100644 index 23bbc527b527..000000000000 --- a/src/layout/DefaultLayout.jsx +++ /dev/null @@ -1,110 +0,0 @@ -import React, { useEffect, Suspense, useCallback, useState } from 'react' -import { AppFooter, AppHeader, AppSidebar } from 'src/components/layout' -import { FullScreenLoading, ModalRoot, FastSwitcherModal, Toasts } from 'src/components/utilities' -import { useDispatch, useSelector } from 'react-redux' -import { Outlet, useLocation } from 'react-router-dom' -import { CContainer } from '@coreui/react' -import { toggleSwitcher } from 'src/store/features/switcher' -import { useHotkeys } from 'react-hotkeys-hook' -import { useMediaPredicate } from 'react-media-hook' -import { setRecentPages } from 'src/store/features/app' -import routes from 'src/routes' -import { Helmet } from 'react-helmet-async' - -const DefaultLayout = () => { - const preferredTheme = useMediaPredicate('(prefers-color-scheme: dark)') ? 'impact' : 'cyberdrain' - const themePreference = useSelector((state) => state.app.currentTheme) - const recentPages = useSelector((state) => state.app.recentPages) - const [lastPage, setLastPage] = useState('') - const dispatch = useDispatch() - const location = useLocation() - - const [title, setTitle] = useState('CIPP') - useEffect(() => { - let route = routes.find((route) => route.path.toLowerCase() === location.pathname.toLowerCase()) - if (route?.name) { - //console.log(route) - setTitle(route.name) - } - }, [setTitle, location.pathname]) - - let theme - if (themePreference === 'default') { - theme = preferredTheme - } else { - theme = themePreference - } - useEffect(() => { - document.body.classList = [] - document.body.classList.add(`theme-${theme}`) - document.body.dataset.theme = theme - }) - - useEffect(() => { - if (recentPages[0] !== location.pathname && lastPage !== location.pathname) { - var currentPages = [] - currentPages.push(lastPage) - if (recentPages.length > 0) { - recentPages.forEach((page) => { - if (page !== lastPage) { - currentPages.push(page) - } - }) - } - currentPages = currentPages.slice(0, 10) - if (currentPages.length > 0) { - dispatch(setRecentPages({ recentPages: currentPages })) - } - } - setLastPage(location.pathname) - }, [location.pathname, recentPages, dispatch, lastPage, setLastPage]) - - const handleFastSwitcher = useCallback(() => { - dispatch(toggleSwitcher()) - }, [dispatch]) - - useHotkeys( - 'ctrl+k', - (event) => { - handleFastSwitcher() - event.preventDefault() - }, - { filterPreventDefault: false }, - ) - useHotkeys( - 'cmd+k', - (event) => { - handleFastSwitcher() - event.preventDefault() - }, - { filterPreventDefault: false }, - ) - - return ( - <> - - CIPP - {title} - -
    - - - - - -
    - -
    - - }> - - - -
    - -
    -
    - - ) -} - -export default DefaultLayout diff --git a/src/layouts/HeaderedTabbedLayout.jsx b/src/layouts/HeaderedTabbedLayout.jsx new file mode 100644 index 000000000000..35213a677746 --- /dev/null +++ b/src/layouts/HeaderedTabbedLayout.jsx @@ -0,0 +1,140 @@ +import { useCallback } from "react"; +import { usePathname } from "next/navigation"; +import { useRouter } from "next/router"; +import PropTypes from "prop-types"; +import ArrowLeftIcon from "@heroicons/react/24/outline/ArrowLeftIcon"; +import { + Box, + Button, + Container, + Divider, + Skeleton, + Stack, + SvgIcon, + Tab, + Tabs, + Typography, +} from "@mui/material"; +import { ActionsMenu } from "/src/components/actions-menu"; + +export const HeaderedTabbedLayout = (props) => { + const { children, tabOptions, title, subtitle, actions, actionsData, isFetching = false } = props; + + const router = useRouter(); + const pathname = usePathname(); + const queryParams = router.query; + const handleTabsChange = useCallback( + (event, value) => { + //if we have query params, we need to append them to the new path + router.push( + { + pathname: value, + query: queryParams, + }, + undefined, + { shallow: true } + ); + }, + [router] + ); + + const currentTab = tabOptions.find((option) => option.path === pathname); + + return ( + + + + +
    + +
    + + + + {title} + + {isFetching ? ( + + ) : ( + subtitle && ( + + {subtitle.map((item, index) => ( + + {item.icon} + + {item.text} + + + ))} + + ) + )} + + {actions && actions.length > 0 && ( + + )} + +
    + + {tabOptions.map((option) => ( + + ))} + + +
    +
    + {children} +
    +
    +
    + ); +}; + +HeaderedTabbedLayout.propTypes = { + children: PropTypes.node, + tabOptions: PropTypes.arrayOf( + PropTypes.shape({ + label: PropTypes.string.isRequired, + path: PropTypes.string.isRequired, + }) + ).isRequired, + title: PropTypes.string.isRequired, + subtitle: PropTypes.arrayOf( + PropTypes.shape({ + icon: PropTypes.node.isRequired, + text: PropTypes.string.isRequired, + }) + ), + actions: PropTypes.arrayOf( + PropTypes.shape({ + label: PropTypes.string.isRequired, + handler: PropTypes.func.isRequired, + }) + ), + isFetching: PropTypes.bool, +}; diff --git a/src/layouts/TabbedLayout.jsx b/src/layouts/TabbedLayout.jsx new file mode 100644 index 000000000000..1f2b77713237 --- /dev/null +++ b/src/layouts/TabbedLayout.jsx @@ -0,0 +1,35 @@ +import { usePathname, useRouter } from "next/navigation"; +import { Box, Container, Divider, Stack, Tab, Tabs, Typography } from "@mui/material"; + +export const TabbedLayout = (props) => { + const { tabOptions, children } = props; + const router = useRouter(); + const pathname = usePathname(); + + const handleTabsChange = (event, value) => { + router.push(value); + }; + + const currentTab = tabOptions.find((option) => option.path === pathname); + + return ( + + +
    + + {tabOptions.map((option) => ( + + ))} + + +
    +
    + {children} +
    + ); +}; diff --git a/src/layouts/account-popover.js b/src/layouts/account-popover.js new file mode 100644 index 000000000000..a8682abefa70 --- /dev/null +++ b/src/layouts/account-popover.js @@ -0,0 +1,165 @@ +import { useCallback } from "react"; +import PropTypes from "prop-types"; +import { useRouter } from "next/navigation"; +import toast from "react-hot-toast"; +import ArrowRightOnRectangleIcon from "@heroicons/react/24/outline/ArrowRightOnRectangleIcon"; +import ChevronDownIcon from "@heroicons/react/24/outline/ChevronDownIcon"; +import MoonIcon from "@heroicons/react/24/outline/MoonIcon"; +import SunIcon from "@heroicons/react/24/outline/SunIcon"; +import { + Avatar, + Box, + FormControlLabel, + List, + ListItem, + ListItemButton, + ListItemIcon, + ListItemText, + Popover, + Stack, + SvgIcon, + Switch, + Typography, + useMediaQuery, + IconButton, +} from "@mui/material"; +import { usePopover } from "../hooks/use-popover"; +import { paths } from "../paths"; +import { ApiGetCall } from "../api/ApiCall"; +import { CogIcon } from "@heroicons/react/24/outline"; + +export const AccountPopover = (props) => { + const { + direction = "ltr", + language = "en", + onThemeSwitch, + paletteMode = "light", + ...other + } = props; + const router = useRouter(); + const mdDown = useMediaQuery((theme) => theme.breakpoints.down("md")); + const popover = usePopover(); + + const orgData = ApiGetCall({ + url: "/.auth/me", + queryKey: "me", + }); + + const handleLogout = useCallback(async () => { + try { + popover.handleClose(); + + router.push("/.auth/logout?post_logout_redirect_uri=" + encodeURIComponent(paths.index)); + } catch (err) { + console.error(err); + toast.error("Something went wrong"); + } + }, [router, popover]); + + const defaultAvatar = ( + + {orgData.data?.userDetails?.[0] || ""} + + ); + + return ( + <> + + {defaultAvatar} + <> + {!mdDown && ( + <> + + + {orgData.data?.Org?.Domain} + + + {orgData.data?.clientPrincipal?.userDetails ?? "Not logged in"} + + + {orgData.data?.clientPrincipal?.userDetails && ( + + + + )} + + )} + + + {orgData.data?.clientPrincipal?.userDetails && ( + + + {mdDown && ( + <> + + + + + + + {paletteMode === "dark" ? : } + + + + + + )} + router.push("/cipp/preferences")}> + + + + + + + + + + + + + + + + + + )} + + ); +}; + +AccountPopover.propTypes = { + onThemeSwitch: PropTypes.func, + paletteMode: PropTypes.oneOf(["dark", "light"]), +}; diff --git a/src/layouts/config.js b/src/layouts/config.js new file mode 100644 index 000000000000..5317a567bc47 --- /dev/null +++ b/src/layouts/config.js @@ -0,0 +1,476 @@ +import { BuildingOfficeIcon, HomeIcon, UsersIcon, WrenchIcon } from "@heroicons/react/24/outline"; +import { + Cloud, + CloudOutlined, + DeviceHub, + HomeRepairService, + Laptop, + MailOutline, + Shield, + ShieldOutlined, +} from "@mui/icons-material"; +import { SvgIcon } from "@mui/material"; + +export const nativeMenuItems = [ + { + title: "Dashboard", + path: "/", + icon: ( + + + + ), + }, + { + title: "Identity Management", + type: "header", + icon: ( + + + + ), + items: [ + { + title: "Administration", + path: "/identity/administration", + items: [ + { title: "Users", path: "/identity/administration/users" }, + { title: "Risky Users", path: "/identity/administration/risky-users" }, + { title: "Groups", path: "/identity/administration/groups" }, + { title: "Devices", path: "/identity/administration/devices" }, + { + title: "Group Templates", + path: "/identity/administration/group-templates", + }, + { title: "Deleted Items", path: "/identity/administration/deleted-items" }, + { title: "Roles", path: "/identity/administration/roles" }, + { title: "JIT Admin", path: "/identity/administration/jit-admin" }, + { + title: "Offboarding Wizard", + path: "/identity/administration/offboarding-wizard", + }, + ], + }, + { + title: "Reports", + path: "/identity/reports", + items: [ + { title: "MFA Report", path: "/identity/reports/mfa-report" }, + { title: "Inactive Users", path: "/identity/reports/inactive-users-report" }, + { title: "Sign-in Report", path: "/identity/reports/signin-report" }, + { + title: "AAD Connect Report", + path: "/identity/reports/azure-ad-connect-report", + }, + { title: "Risk Detections", path: "/identity/reports/risk-detections" }, + ], + }, + ], + }, + { + title: "Tenant Administration", + type: "header", + icon: ( + + + + ), + items: [ + { + title: "Administration", + path: "/tenant/administration", + items: [ + { title: "Tenants", path: "/tenant/administration/tenants" }, + { + title: "Alert Configuration", + path: "/tenant/administration/alert-configuration", + }, + { title: "Audit Logs", path: "/tenant/administration/audit-logs" }, + { + title: "Enterprise Applications", + path: "/tenant/administration/enterprise-apps", + }, + { title: "Secure Score", path: "/tenant/administration/securescore" }, + { + title: "App Consent Requests", + path: "/tenant/administration/app-consent-requests", + }, + { + title: "Authentication Methods", + path: "/tenant/administration/authentication-methods", + }, + { + title: "Partner Relationships", + path: "/tenant/administration/partner-relationships", + }, + ], + }, + { + title: "GDAP Management", + path: "/tenant/gdap-management/", + }, + { + title: "Configuration Backup", + path: "/tenant/backup", + items: [{ title: "Backups", path: "/tenant/backup/backup-wizard" }], + }, + { + title: "Standards", + path: "/tenant/standards", + items: [ + { title: "Standards", path: "/tenant/standards/list-standards" }, + { + title: "Best Practice Analyser", + path: "/tenant/standards/bpa-report", + }, + { + title: "Domains Analyser", + path: "/tenant/standards/domains-analyser", + }, + ], + }, + { + title: "Conditional Access", + path: "/tenant/conditional", + items: [ + { title: "CA Policies", path: "/tenant/conditional/list-policies" }, + { + title: "CA Vacation Mode", + path: "/tenant/conditional/deploy-vacation", + }, + { + title: "CA Templates", + path: "/tenant/conditional/list-template", + }, + { + title: "Named Locations", + path: "/tenant/conditional/list-named-locations", + }, + ], + }, + { + title: "Reports", + path: "/tenant/reports", + items: [ + { + title: "Licence Report", + path: "/tenant/administration/list-licenses", + }, + { + title: "Sherweb Licence Report", + path: "/tenant/administration/list-csp-licenses", + }, + { + title: "Consented Applications", + path: "/tenant/administration/application-consent", + }, + ], + }, + ], + }, + { + title: "Security & Compliance", + type: "header", + icon: ( + + + + ), + items: [ + { + title: "Incidents & Alerts", + path: "/security/incidents", + items: [ + { title: "Incidents", path: "/security/incidents/list-incidents" }, + { title: "Alerts", path: "/security/incidents/list-alerts" }, + ], + }, + { + title: "Defender", + path: "/security/defender", + items: [ + { title: "Defender Status", path: "/security/defender/list-defender" }, + { + title: "Defender Deployment", + path: "/security/defender/deployment", + }, + { + title: "Vulnerabilities", + path: "/security/defender/list-defender-tvm", + }, + ], + }, + { + title: "Reports", + path: "/security/reports", + items: [ + { + title: "Device Compliance", + path: "/security/reports/list-device-compliance", + }, + ], + }, + ], + }, + { + title: "Intune", + type: "header", + icon: ( + + + + ), + items: [ + { + title: "Applications", + path: "/endpoint/applications", + items: [ + { title: "Applications", path: "/endpoint/applications/list" }, + { title: "Application Queue", path: "/endpoint/applications/queue" }, + ], + }, + { + title: "Autopilot", + path: "/endpoint/autopilot", + items: [ + { title: "Autopilot Devices", path: "/endpoint/autopilot/list-devices" }, + { title: "Add Autopilot Device", path: "/endpoint/autopilot/add-device" }, + { title: "Profiles", path: "/endpoint/autopilot/list-profiles" }, + { title: "Add Profile", path: "/endpoint/autopilot/add-profile" }, + { title: "Status Pages", path: "/endpoint/autopilot/list-status-pages" }, + { title: "Add Status Page", path: "/endpoint/autopilot/add-status-page" }, + ], + }, + { + title: "Device Management", + path: "/endpoint/MEM", + items: [ + { title: "Devices", path: "/endpoint/reports/devices" }, + { title: "Configuration Policies", path: "/endpoint/MEM/list-policies" }, + { title: "Compliance Policies", path: "/endpoint/MEM/list-compliance-policies" }, + { title: "Protection Policies", path: "/endpoint/MEM/list-appprotection-policies" }, + { title: "Apply Policy", path: "/endpoint/MEM/add-policy" }, + { title: "Policy Templates", path: "/endpoint/MEM/list-templates" }, + ], + }, + { + title: "Reports", + path: "/endpoint/reports", + items: [ + { title: "Analytics Device Score", path: "/endpoint/reports/analyticsdevicescore" }, + ], + }, + ], + }, + { + title: "Teams & Sharepoint", + type: "header", + icon: ( + + + + ), + items: [ + { + title: "OneDrive", + path: "/teams-share/onedrive", + }, + { + title: "SharePoint", + path: "/teams-share/sharepoint", + }, + { + title: "Teams", + path: "/teams-share/teams", + items: [ + { title: "Teams", path: "/teams-share/teams/list-team" }, + { title: "Teams Activity", path: "/teams-share/teams/teams-activity" }, + { title: "Business Voice", path: "/teams-share/teams/business-voice" }, + ], + }, + ], + }, + { + title: "Email & Exchange", + type: "header", + icon: ( + + + + ), + items: [ + { + title: "Administration", + path: "/email/Administration", + items: [ + { title: "Mailboxes", path: "/email/administration/mailboxes" }, + { title: "Deleted Mailboxes", path: "/email/administration/deleted-mailboxes" }, + { title: "Mailbox Rules", path: "/email/administration/mailbox-rules" }, + { title: "Contacts", path: "/email/administration/contacts" }, + { title: "Quarantine", path: "/email/administration/quarantine" }, + { + title: "Tenant Allow/Block Lists", + path: "/email/administration/tenant-allow-block-lists", + }, + ], + }, + { + title: "Transport", + path: "/email/Transport", + items: [ + { title: "Transport rules", path: "/email/transport/list-rules" }, + { + title: "Transport Templates", + path: "/email/transport/list-templates", + }, + { title: "Connectors", path: "/email/connectors/list-connectors" }, + { + title: "Connector Templates", + path: "/email/connectors/list-connector-templates", + }, + ], + }, + { + title: "Spamfilter", + path: "/email/spamfilter", + items: [ + { title: "Spamfilter", path: "/email/spamfilter/list-spamfilter" }, + { title: "Spamfilter templates", path: "/email/spamfilter/list-templates" }, + { title: "Connection filter", path: "/email/connectionfilter/list-connectionfilter" }, + { title: "Connection filter templates", path: "/email/connectionfilter/list-templates" }, + ], + }, + { + title: "Resource Management", + path: "/email/resources/management", + items: [ + { title: "Rooms", path: "/email/resources/management/list-rooms" }, + { title: "Room Lists", path: "/email/resources/management/room-lists" }, + ], + }, + { + title: "Reports", + path: "/email/reports", + items: [ + { + title: "Mailbox Statistics", + path: "/email/reports/mailbox-statistics", + }, + { + title: "Mailbox Client Access Settings", + path: "/email/reports/mailbox-cas-settings", + }, + { + title: "Anti-Phishing Filters", + path: "/email/reports/antiphishing-filters", + }, + { title: "Malware Filters", path: "/email/reports/malware-filters" }, + { + title: "Safe Links Filters", + path: "/email/reports/safelinks-filters", + }, + { + title: "Safe Attachments Filters", + path: "/email/reports/safeattachments-filters", + }, + { + title: "Shared Mailbox with Enabled Account", + path: "/email/reports/SharedMailboxEnabledAccount", + }, + ], + }, + ], + }, + { + title: "Tools", + type: "header", + icon: ( + + + + ), + items: [ + { + title: "Tenant Tools", + path: "/tenant/tools", + items: [ + { + title: "Graph Explorer", + path: "/tenant/administration/graph-explorer", + }, + { + title: "Application Approval", + path: "/tenant/administration/appapproval", + }, + { title: "Tenant Lookup", path: "/tenant/tools/tenantlookup" }, + + { title: "IP Database", path: "/tenant/tools/geoiplookup" }, + + { + title: "Individual Domain Check", + path: "/tenant/standards/individual-domains", + }, + ], + }, + { + title: "Email Tools", + path: "/email/tools", + items: [ + { title: "Message Trace", path: "/email/tools/message-trace" }, + { title: "Mailbox Restores", path: "/email/tools/mailbox-restores" }, + { title: "Message Viewer", path: "/email/tools/message-viewer" }, + ], + }, + // { + // title: "Dark Web Tools", + // path: "/tools/darkweb", + // items: [ + // { title: "Tenant Breach Lookup", path: "/tools/tenantbreachlookup" }, + // { title: "Breach Lookup", path: "/tools/breachlookup" }, + // ], + // }, + { + title: "Template Library", + path: "/tools/templatelib", + roles: ["editor", "admin", "superadmin"], + }, + { + title: "Scheduler", + path: "/cipp/scheduler", + roles: ["editor", "admin", "superadmin"], + }, + ], + }, + { + title: "CIPP", + type: "header", + icon: ( + + + + ), + items: [ + { title: "Application Settings", path: "/cipp/settings", roles: ["admin", "superadmin"] }, + { title: "Logbook", path: "/cipp/logs", roles: ["admin", "superadmin"] }, + { title: "SAM Setup Wizard", path: "/onboarding", roles: ["admin", "superadmin"] }, + { title: "Integrations", path: "/cipp/integrations", roles: ["admin", "superadmin"] }, + { + title: "Advanced", + roles: ["superadmin"], + items: [ + { title: "Super Admin", path: "/cipp/super-admin/tenant-mode", roles: ["superadmin"] }, + { + title: "Exchange Cmdlets", + path: "/cipp/advanced/exchange-cmdlets", + roles: ["superadmin"], + }, + { + title: "Timers", + path: "/cipp/advanced/timers", + roles: ["superadmin"], + } + ], + }, + ], + }, +]; diff --git a/src/layouts/footer.js b/src/layouts/footer.js new file mode 100644 index 000000000000..07115518e388 --- /dev/null +++ b/src/layouts/footer.js @@ -0,0 +1,34 @@ +import { Box, Container, Divider, Typography } from "@mui/material"; + +export const Footer = () => { + + //randomize the order of the sponsor images + + return ( +
    + +
    + ); +}; diff --git a/src/layouts/index.js b/src/layouts/index.js new file mode 100644 index 000000000000..9538706081fa --- /dev/null +++ b/src/layouts/index.js @@ -0,0 +1,263 @@ +import { useCallback, useEffect, useState } from "react"; +import { usePathname } from "next/navigation"; +import { Alert, Button, Dialog, DialogContent, DialogTitle, useMediaQuery } from "@mui/material"; +import { styled } from "@mui/material/styles"; +import { useSettings } from "../hooks/use-settings"; +import { Footer } from "./footer"; +import { MobileNav } from "./mobile-nav"; +import { SideNav } from "./side-nav"; +import { TopNav } from "./top-nav"; +import { ApiGetCall } from "../api/ApiCall"; +import { useDispatch } from "react-redux"; +import { showToast } from "../store/toasts"; +import { Box, Container, Grid } from "@mui/system"; +import { CippImageCard } from "../components/CippCards/CippImageCard"; +import Page from "../pages/onboarding"; +import { useDialog } from "../hooks/use-dialog"; +import { nativeMenuItems } from "/src/layouts/config"; + +const SIDE_NAV_WIDTH = 270; +const SIDE_NAV_PINNED_WIDTH = 50; +const TOP_NAV_HEIGHT = 50; + +const useMobileNav = () => { + const pathname = usePathname(); + const [open, setOpen] = useState(false); + + const handlePathnameChange = useCallback(() => { + if (open) { + setOpen(false); + } + }, [open]); + + useEffect( + () => { + handlePathnameChange(); + }, + // eslint-disable-next-line react-hooks/exhaustive-deps + [pathname] + ); + + const handleOpen = useCallback(() => { + setOpen(true); + }, []); + + const handleClose = useCallback(() => { + setOpen(false); + }, []); + + return { + handleClose, + handleOpen, + open, + }; +}; + +const LayoutRoot = styled("div")(({ theme }) => ({ + backgroundColor: theme.palette.background.default, + display: "flex", + flex: "1 1 auto", + maxWidth: "100%", + paddingTop: TOP_NAV_HEIGHT, + [theme.breakpoints.up("lg")]: { + paddingLeft: SIDE_NAV_WIDTH, + }, +})); + +const LayoutContainer = styled("div")({ + display: "flex", + flex: "1 1 auto", + flexDirection: "column", + width: "100%", +}); + +export const Layout = (props) => { + const { children, allTenantsSupport = true } = props; + const mdDown = useMediaQuery((theme) => theme.breakpoints.down("md")); + const settings = useSettings(); + const mobileNav = useMobileNav(); + const [userSettingsComplete, setUserSettingsComplete] = useState(false); + const [fetchingVisible, setFetchingVisible] = useState([]); + const [menuItems, setMenuItems] = useState(nativeMenuItems); + const currentTenant = settings?.currentTenant; + const currentRole = ApiGetCall({ + url: "/.auth/me", + queryKey: "authmecipp", + }); + + useEffect(() => { + if (currentRole.isSuccess && !currentRole.isFetching) { + const userRoles = currentRole.data?.clientPrincipal?.userRoles; + if (!userRoles) { + return; + } + const filterItemsByRole = (items) => { + return items + .map((item) => { + if (item.roles && item.roles.length > 0) { + const hasRole = item.roles.some((requiredRole) => userRoles.includes(requiredRole)); + if (!hasRole) { + return null; + } + } + if (item.items && item.items.length > 0) { + const filteredSubItems = filterItemsByRole(item.items).filter(Boolean); + return { ...item, items: filteredSubItems }; + } + + return item; + }) + .filter(Boolean); + }; + + const filteredMenu = filterItemsByRole(nativeMenuItems); + setMenuItems(filteredMenu); + } + }, [currentRole.isSuccess]); + + const handleNavPin = useCallback(() => { + settings.handleUpdate({ + pinNav: !settings.pinNav, + }); + }, [settings]); + + const offset = settings.pinNav ? SIDE_NAV_WIDTH : SIDE_NAV_PINNED_WIDTH; + + const userSettingsAPI = ApiGetCall({ + url: "/api/ListUserSettings", + queryKey: "userSettings", + }); + + useEffect(() => { + if (userSettingsAPI.isSuccess && !userSettingsAPI.isFetching && !userSettingsComplete) { + //if usersettingsAPI.data contains offboardingDefaults.user, delete that specific key. + if (userSettingsAPI.data.offboardingDefaults?.user) { + delete userSettingsAPI.data.offboardingDefaults.user; + } + if (userSettingsAPI?.data?.currentTheme) { + delete userSettingsAPI.data.currentTheme; + } + settings.handleUpdate(userSettingsAPI.data); + setUserSettingsComplete(true); + } + }, [ + userSettingsAPI.isSuccess, + userSettingsAPI.data, + userSettingsAPI.isFetching, + userSettingsComplete, + settings, + ]); + + const version = ApiGetCall({ + url: "/version.json", + queryKey: "LocalVersion", + }); + + const alertsAPI = ApiGetCall({ + url: `/api/GetCippAlerts?localversion=${version?.data?.version}`, + queryKey: "alertsDashboard", + waiting: false, + }); + + useEffect(() => { + if (version.isFetched && !alertsAPI.isFetched) { + alertsAPI.waiting = true; + alertsAPI.refetch(); + } + }, [version, alertsAPI]); + + useEffect(() => { + if (alertsAPI.isSuccess && !alertsAPI.isFetching) { + setFetchingVisible(new Array(alertsAPI.data.length).fill(true)); + } + }, [alertsAPI.isSuccess, alertsAPI.data, alertsAPI.isFetching]); + const [setupCompleted, setSetupCompleted] = useState(true); + const createDialog = useDialog(); + const dispatch = useDispatch(); + useEffect(() => { + if (alertsAPI.isSuccess && !alertsAPI.isFetching) { + if (alertsAPI.data.length > 0) { + alertsAPI.data.forEach((alert) => { + dispatch( + showToast({ + message: alert.Alert, + title: alert.title, + toastError: alert, + }) + ); + }); + } + } + if (alertsAPI.isSuccess && !alertsAPI.isFetching) { + if (alertsAPI.data.length > 0) { + const setupCompleted = alertsAPI.data.find((alert) => alert.setupCompleted === false); + if (setupCompleted) { + setSetupCompleted(false); + } + } + } + }, [alertsAPI.isSuccess]); + + return ( + <> + + {mdDown && ( + + )} + {!mdDown && } + + + {currentTenant === "AllTenants" && !allTenantsSupport ? ( + + + + + + + + + + ) : ( + <> + + Setup Wizard + + + + + {!setupCompleted && ( + + + + Setup has not been completed. + + + + + )} + {children} + + )} +
    + + + + ); +}; diff --git a/src/layouts/mobile-nav-item.js b/src/layouts/mobile-nav-item.js new file mode 100644 index 000000000000..485710a3b367 --- /dev/null +++ b/src/layouts/mobile-nav-item.js @@ -0,0 +1,173 @@ +import { useCallback, useState } from 'react'; +import NextLink from 'next/link'; +import PropTypes from 'prop-types'; +import ChevronRightIcon from '@heroicons/react/24/outline/ChevronRightIcon'; +import ChevronDownIcon from '@heroicons/react/24/outline/ChevronDownIcon'; +import { Box, ButtonBase, Collapse, SvgIcon } from '@mui/material'; +import ArrowTopRightOnSquareIcon from '@heroicons/react/24/outline/ArrowTopRightOnSquareIcon'; + +export const MobileNavItem = (props) => { + const { + active = false, + children, + depth = 0, + disabled = false, + external = false, + icon, + openImmediately = false, + path, + title + } = props; + const [open, setOpen] = useState(openImmediately); + + const handleToggle = useCallback(() => { + setOpen((prevOpen) => !prevOpen); + }, []); + + // Branch + + if (children) { + return ( +
  • + theme.typography.fontFamily, + fontSize: 14, + fontWeight: 500, + justifyContent: 'flex-start', + px: '6px', + py: '12px', + textAlign: 'left', + whiteSpace: 'nowrap', + width: '100%' + }} + > + + {icon} + + + {title} + + + {open ? : } + + + + {children} + +
  • + ); + } + + // Leaf + + const linkProps = path + ? external + ? { + component: 'a', + href: path, + target: '_blank' + } + : { + component: NextLink, + href: path + } + : {}; + + return ( +
  • + theme.typography.fontFamily, + fontSize: 14, + fontWeight: 500, + justifyContent: 'flex-start', + px: '6px', + py: '12px', + textAlign: 'left', + whiteSpace: 'nowrap', + width: '100%' + }} + {...linkProps}> + + {icon} + + + {title} + + {external && ( + + + + )} + +
  • + ); +}; + +MobileNavItem.propTypes = { + active: PropTypes.bool, + children: PropTypes.node, + depth: PropTypes.number, + disabled: PropTypes.bool, + external: PropTypes.bool, + icon: PropTypes.node, + openImmediately: PropTypes.bool, + path: PropTypes.string, + title: PropTypes.string.isRequired +}; diff --git a/src/layouts/mobile-nav.js b/src/layouts/mobile-nav.js new file mode 100644 index 000000000000..f8084ccd0829 --- /dev/null +++ b/src/layouts/mobile-nav.js @@ -0,0 +1,154 @@ +import NextLink from "next/link"; +import { usePathname } from "next/navigation"; +import PropTypes from "prop-types"; +import { Box, Drawer, Stack } from "@mui/material"; +import { Logo } from "../components/logo"; +import { Scrollbar } from "../components/scrollbar"; +import { paths } from "../paths"; +import { MobileNavItem } from "./mobile-nav-item"; +import { CippTenantSelector } from "../components/CippComponents/CippTenantSelector"; + +const MOBILE_NAV_WIDTH = "80%"; + +const renderItems = ({ depth = 0, items, pathname }) => + items.reduce( + (acc, item) => + reduceChildRoutes({ + acc, + depth, + item, + pathname, + }), + [] + ); + +const reduceChildRoutes = ({ acc, depth, item, pathname }) => { + const checkPath = !!(item.path && pathname); + const partialMatch = checkPath ? pathname.includes(item.path) : false; + const exactMatch = checkPath ? pathname === item.path : false; + + if (item.items) { + acc.push( + + + {renderItems({ + depth: depth + 1, + items: item.items, + pathname, + })} + + + ); + } else { + acc.push( + + ); + } + + return acc; +}; + +export const MobileNav = (props) => { + const { open, onClose, items } = props; + const pathname = usePathname(); + + return ( + + + + + + + + + + + + + {renderItems({ + depth: 0, + items, + pathname, + })} + + + + + ); +}; + +MobileNav.propTypes = { + onClose: PropTypes.func, + open: PropTypes.bool, +}; diff --git a/src/layouts/notifications-popover.js b/src/layouts/notifications-popover.js new file mode 100644 index 000000000000..dddbf442555d --- /dev/null +++ b/src/layouts/notifications-popover.js @@ -0,0 +1,187 @@ +import BellIcon from "@heroicons/react/24/outline/BellIcon"; +import SparklesIcon from "@heroicons/react/24/outline/SparklesIcon"; +import { + Badge, + Box, + Button, + Divider, + IconButton, + Popover, + Stack, + SvgIcon, + Typography, +} from "@mui/material"; +import { usePopover } from "../hooks/use-popover"; +import { Error, Update, Close as CloseIcon } from "@mui/icons-material"; +import { useDispatch, useSelector } from "react-redux"; +import { closeToast, resetToast } from "../store/toasts"; +import { useEffect, useState } from "react"; +import ReactTimeAgo from "react-time-ago"; + +const getContent = (notification) => { + return ( + <> + + + {notification.type === "update" ? ( + + ) : notification.type === "error" ? ( + + ) : ( + + )} + + {notification.subtitle} + + {notification.content && ( + + {notification.content} + + )} + + ); +}; + +export const NotificationsPopover = () => { + const dispatch = useDispatch(); + const toasts = useSelector((state) => state.toasts.toasts); + const [page, setPage] = useState(0); + + // Map toasts to notifications + const notifications = toasts.map((toast) => { + return { + id: toast.index, // Ensure that 'id' corresponds to the identifier used in your store + type: toast.toastError?.type || "error", + subtitle: toast.title, + content: toast.message, + createdAt: toast.date, + link: toast.toastError?.link, + }; + }); + + // Reverse the array so the most recent notifications are at the top + notifications.reverse(); + const notificationsToShow = notifications.slice(0, (page + 1) * 5); + + const popover = usePopover(); + + const BadgeColour = notifications.some((notification) => notification.type === "error") + ? "warning" + : notifications.some((notification) => notification.type === "update") + ? "primary" + : "info"; + + useEffect(() => { + if (notifications.length === 0 && popover.open) { + popover.handleClose(); + } + }, [notifications, popover]); + + return ( + <> + + + + + + + + + + Notifications + + } + sx={{ + listStyle: "none", + m: 0, + p: 0, + }} + > + {notificationsToShow.map((notification) => { + const createdAt = ; + + return ( + + + + {getContent(notification)} + + + {createdAt} + + {notification.link && ( + + )} + + + dispatch(closeToast({ index: notification.id }))} + > + + + + + ); + })} + + + {notifications.length > notificationsToShow.length && ( + + )} + + + + + ); +}; diff --git a/src/layouts/organization-popover.js b/src/layouts/organization-popover.js new file mode 100644 index 000000000000..cdc7e6301658 --- /dev/null +++ b/src/layouts/organization-popover.js @@ -0,0 +1,40 @@ +import { useCallback } from "react"; +import PropTypes from "prop-types"; +import { usePopover } from "../hooks/use-popover"; +import { CippAutoComplete } from "../components/CippComponents/CippAutocomplete"; + +export const OrganizationPopover = (props) => { + const { onOrganizationSwitch, organizationId, organizations = [] } = props; + const popover = usePopover(); + + const handleOrganizationChange = useCallback( + (organizationId) => { + popover.handleClose(); + onOrganizationSwitch?.(organizationId); + }, + [popover, onOrganizationSwitch] + ); + + // NOTE: Ensure an organization is found, otherwise some components will fail. + const organization = organizations.find((organization) => organization.id === organizationId); + + return ( + <> + + + ); +}; + +OrganizationPopover.propTypes = { + onOrganizationSwitch: PropTypes.func, + organizationId: PropTypes.string.isRequired, + organizations: PropTypes.array, +}; diff --git a/src/layouts/side-nav-item.js b/src/layouts/side-nav-item.js new file mode 100644 index 000000000000..750dcbf3f653 --- /dev/null +++ b/src/layouts/side-nav-item.js @@ -0,0 +1,199 @@ +import { useCallback, useState } from "react"; +import NextLink from "next/link"; +import PropTypes from "prop-types"; +import ChevronRightIcon from "@heroicons/react/24/outline/ChevronRightIcon"; +import ChevronDownIcon from "@heroicons/react/24/outline/ChevronDownIcon"; +import ArrowTopRightOnSquareIcon from "@heroicons/react/24/outline/ArrowTopRightOnSquareIcon"; +import { Box, ButtonBase, Collapse, SvgIcon } from "@mui/material"; + +export const SideNavItem = (props) => { + const { + active = false, + children, + collapse = false, + depth = 0, + external = false, + icon, + openImmediately = false, + path, + title, + } = props; + + const [open, setOpen] = useState(openImmediately); + + const handleToggle = useCallback(() => { + setOpen((prevOpen) => !prevOpen); + }, []); + + // Dynamic spacing and font sizing based on depth + const indent = depth > 0 ? depth * 1.5 : 1; // adjust multiplication factor as needed + const fontSize = depth === 0 ? 14 : 13; // top-level 14, nested 13 + + if (children) { + return ( +
  • + theme.typography.fontFamily, + fontSize: fontSize, + fontWeight: 500, + justifyContent: "flex-start", + px: `${indent * 6}px`, + py: "12px", + textAlign: "left", + whiteSpace: "nowrap", + width: "100%", + }} + > + + {icon} + + + {title} + + + {open ? : } + + + + {children} + +
  • + ); + } + + // Leaf + const linkProps = path + ? external + ? { + component: "a", + href: path, + target: "_blank", + } + : { + component: NextLink, + href: path, + } + : {}; + + return ( +
  • + theme.typography.fontFamily, + fontSize: fontSize, + fontWeight: 500, + justifyContent: "flex-start", + px: `${indent * 6}px`, + py: "12px", + textAlign: "left", + whiteSpace: "nowrap", + width: "100%", + }} + {...linkProps} + > + + {icon} + + + {title} + + {external && ( + + + + )} + +
  • + ); +}; + +SideNavItem.propTypes = { + active: PropTypes.bool, + children: PropTypes.any, + collapse: PropTypes.bool, + depth: PropTypes.number, + external: PropTypes.bool, + icon: PropTypes.any, + openImmediately: PropTypes.bool, + path: PropTypes.string, + title: PropTypes.string.isRequired, +}; diff --git a/src/layouts/side-nav.js b/src/layouts/side-nav.js new file mode 100644 index 000000000000..b2967a01a548 --- /dev/null +++ b/src/layouts/side-nav.js @@ -0,0 +1,246 @@ +import { useState } from "react"; +import { usePathname } from "next/navigation"; +import PropTypes from "prop-types"; +import { Box, Divider, Drawer, Stack, Typography } from "@mui/material"; +import { Scrollbar } from "../components/scrollbar"; +import { SideNavItem } from "./side-nav-item"; +import { useSettings } from "../hooks/use-settings"; + +const SIDE_NAV_WIDTH = 270; +const SIDE_NAV_COLLAPSED_WIDTH = 73; // icon size + padding + border right +const TOP_NAV_HEIGHT = 64; + +const markOpenItems = (items, pathname) => { + return items.map((item) => { + const checkPath = !!(item.path && pathname); + const exactMatch = checkPath ? pathname === item.path : false; + // Use startsWith for partial matches so that subpages not in the menu still keep parent open + const partialMatch = checkPath ? pathname.startsWith(item.path) : false; + + let openImmediately = exactMatch; + let newItems = item.items || []; + + if (newItems.length > 0) { + newItems = markOpenItems(newItems, pathname); + const childOpen = newItems.some((child) => child.openImmediately); + // Parent should open if exactMatch, childOpen, or partialMatch + openImmediately = openImmediately || childOpen || partialMatch; + } else { + // For leaf items, consider them open if exact or partial match + openImmediately = openImmediately || partialMatch; + } + + return { + ...item, + items: newItems, + openImmediately, + }; + }); +}; + +const renderItems = ({ collapse = false, depth = 0, items, pathname }) => + items.reduce((acc, item) => reduceChildRoutes({ acc, collapse, depth, item, pathname }), []); + +const reduceChildRoutes = ({ acc, collapse, depth, item, pathname }) => { + const checkPath = !!(item.path && pathname); + const exactMatch = checkPath && pathname === item.path; + const partialMatch = checkPath && pathname.startsWith(item.path); + + // Consider item active if exactMatch or partialMatch for leaf items + // For parent items, being active is determined by their children or openImmediately + const hasChildren = item.items && item.items.length > 0; + const isActive = exactMatch || (partialMatch && !hasChildren); + + if (hasChildren) { + acc.push( + + + {renderItems({ + collapse, + depth: depth + 1, + items: item.items, + pathname, + })} + + + ); + } else { + acc.push( + + ); + } + + return acc; +}; + +export const SideNav = (props) => { + const { items, onPin, pinned = false } = props; + const pathname = usePathname(); + const [hovered, setHovered] = useState(false); + const collapse = !(pinned || hovered); + + // Preprocess items to mark which should be open + const processedItems = markOpenItems(items, pathname); + //select a random sponsor image based on priority, priority 1 should be higher than priority 2 or higher + const currentSettings = useSettings(); + const theme = currentSettings?.currentTheme?.value; + const sponsorimages = [ + { + link: "https://rewst.io", + imagesrc: theme === "light" ? "/sponsors/rewst.png" : "/sponsors/rewst_dark.png", + priority: 1, + }, + { + link: "https://rightofboom.com", + imagesrc: theme === "light" ? "/sponsors/RoB-light.svg" : "/sponsors/RoB.png", + priority: 1, + }, + { + link: "https://ninjaone.com", + imagesrc: theme === "light" ? "/sponsors/ninjaone.png" : "/sponsors/ninjaone_white.png", + priority: 1, + }, + { + link: "https://augmentt.com", + imagesrc: theme === "light" ? "/sponsors/augmentt-light.png" : "/sponsors/augmentt-dark.png", + priority: 1, + }, + { + link: "https://huntress.com", + imagesrc: "/sponsors/huntress_teal.png", + priority: 1, + }, + ]; + + const randomSponsorImage = () => { + let totalPriority = 0; + for (let i = 0; i < sponsorimages.length; i++) { + totalPriority += sponsorimages[i].priority; + } + let random = Math.floor(Math.random() * totalPriority); + let runningTotal = 0; + for (let i = 0; i < sponsorimages.length; i++) { + runningTotal += sponsorimages[i].priority; + if (random < runningTotal) { + return sponsorimages[i]; + } + } + }; + + const randomimg = randomSponsorImage(); + return ( + { + setHovered(true); + }, + onMouseLeave: () => { + setHovered(false); + }, + sx: { + backgroundColor: "background.default", + height: `calc(100% - ${TOP_NAV_HEIGHT}px)`, + overflowX: "hidden", + top: TOP_NAV_HEIGHT, + transition: "width 250ms ease-in-out", + width: collapse ? SIDE_NAV_COLLAPSED_WIDTH : SIDE_NAV_WIDTH, + zIndex: (theme) => theme.zIndex.appBar - 100, + }, + }} + > + + + + {renderItems({ + collapse, + depth: 0, + items: processedItems, + pathname, + })} + + + + This application is sponsored by + + + sponsor window.open(randomimg.link)} + width={"100px"} + /> + + + + + ); +}; + +SideNav.propTypes = { + onPin: PropTypes.func, + pinned: PropTypes.bool, +}; diff --git a/src/layouts/top-nav.js b/src/layouts/top-nav.js new file mode 100644 index 000000000000..cc229bcd9daf --- /dev/null +++ b/src/layouts/top-nav.js @@ -0,0 +1,102 @@ +import { useCallback } from "react"; +import NextLink from "next/link"; +import PropTypes from "prop-types"; +import Bars3Icon from "@heroicons/react/24/outline/Bars3Icon"; +import MoonIcon from "@heroicons/react/24/outline/MoonIcon"; +import SunIcon from "@heroicons/react/24/outline/SunIcon"; +import { Box, Divider, IconButton, Stack, SvgIcon, useMediaQuery } from "@mui/material"; +import { Logo } from "../components/logo"; +import { useSettings } from "../hooks/use-settings"; +import { paths } from "../paths"; +import { AccountPopover } from "./account-popover"; +import { CippTenantSelector } from "../components/CippComponents/CippTenantSelector"; +import { NotificationsPopover } from "./notifications-popover"; +const TOP_NAV_HEIGHT = 64; + +export const TopNav = (props) => { + const { onNavOpen } = props; + const settings = useSettings(); + const mdDown = useMediaQuery((theme) => theme.breakpoints.down("md")); + const handleThemeSwitch = useCallback(() => { + const themeName = settings.currentTheme?.value === "light" ? "dark" : "light"; + settings.handleUpdate({ + currentTheme: { value: themeName, label: themeName }, + }); + }, [settings]); + + return ( + theme.zIndex.appBar, + }} + > + + + } + > + + + + {!mdDown && } + {mdDown && ( + + + + + + )} + + + {!mdDown && ( + + + {settings?.currentTheme?.value === "dark" ? : } + + + )} + + + + + + ); +}; + +TopNav.propTypes = { + onNavOpen: PropTypes.func, + openNav: PropTypes.bool, +}; diff --git a/src/libs/nprogress.js b/src/libs/nprogress.js new file mode 100644 index 000000000000..3192306a9013 --- /dev/null +++ b/src/libs/nprogress.js @@ -0,0 +1,6 @@ +import Router from 'next/router'; +import nProgress from 'nprogress'; + +Router.events.on('routeChangeStart', nProgress.start); +Router.events.on('routeChangeError', nProgress.done); +Router.events.on('routeChangeComplete', nProgress.done); diff --git a/src/pages/401.js b/src/pages/401.js new file mode 100644 index 000000000000..ccb828549c51 --- /dev/null +++ b/src/pages/401.js @@ -0,0 +1,46 @@ +import { Box, Container, Grid, Stack } from "@mui/material"; +import Head from "next/head"; +import { CippImageCard } from "../components/CippCards/CippImageCard.jsx"; +import { Layout as DashboardLayout } from "../layouts/index.js"; + +const Page = () => ( + <> + + + 404 - Not Found + + + + + + + + + + + + + + +); + +export default Page; diff --git a/src/pages/404.js b/src/pages/404.js new file mode 100644 index 000000000000..0780a3271b71 --- /dev/null +++ b/src/pages/404.js @@ -0,0 +1,46 @@ +import { Box, Container, Grid, Stack } from "@mui/material"; +import Head from "next/head"; +import { CippImageCard } from "../components/CippCards/CippImageCard"; +import { Layout as DashboardLayout } from "../layouts/index.js"; + +const Page = () => ( + <> + + + 404 - Not Found + + + + + + + + + + + + + + +); + +export default Page; diff --git a/src/pages/500.js b/src/pages/500.js new file mode 100644 index 000000000000..9880eb883e3f --- /dev/null +++ b/src/pages/500.js @@ -0,0 +1,65 @@ +import { Box, Container, Grid, Stack, Typography } from "@mui/material"; +import Head from "next/head"; +import { CippImageCard } from "../components/CippCards/CippImageCard.jsx"; +import { Layout as DashboardLayout } from "../layouts/index.js"; +import { useEffect } from "react"; +import { useRouter } from "next/router.js"; + +const Error500 = (props) => { + //when we browse away from the page we want to reset the error boundary + //this will prevent the error from showing on other pages + const router = useRouter(); + useEffect(() => { + return () => { + props.resetErrorBoundary(); + }; + }, [router]); + + return ( + <> + + + 500 - Error + + + + + + + + Oh no! It seems something went wrong. +
    {props.error.message}
    + You can use the button below to try again. + + } + title="Error 500 - Something went wrong" + linkText={"Try again"} + onButtonClick={() => props.resetErrorBoundary()} + /> +
    +
    +
    +
    +
    +
    + + ); +}; + +export default Error500; diff --git a/src/pages/_app.js b/src/pages/_app.js new file mode 100644 index 000000000000..702eb328927c --- /dev/null +++ b/src/pages/_app.js @@ -0,0 +1,91 @@ +import Head from "next/head"; +import { Toaster } from "react-hot-toast"; +import { Provider as ReduxProvider } from "react-redux"; +import { CacheProvider } from "@emotion/react"; +import { ThemeProvider } from "@mui/material/styles"; +import CssBaseline from "@mui/material/CssBaseline"; +import { SettingsConsumer, SettingsProvider } from "../contexts/settings-context"; +import { RTL } from "../components/rtl"; +import { store } from "../store"; +import { createTheme } from "../theme"; +import { createEmotionCache } from "../utils/create-emotion-cache"; +import "../libs/nprogress"; +import { PrivateRoute } from "../components/PrivateRoute"; +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { ReactQueryDevtools } from "@tanstack/react-query-devtools"; +import { useMediaPredicate } from "react-media-hook"; +import Error500 from "./500"; +import { ErrorBoundary } from "react-error-boundary"; +import { LocalizationProvider } from "@mui/x-date-pickers/LocalizationProvider"; +import { AdapterDateFns } from "@mui/x-date-pickers/AdapterDateFns"; +import TimeAgo from "javascript-time-ago"; +import en from "javascript-time-ago/locale/en.json"; +import React from "react"; +TimeAgo.addDefaultLocale(en); + +const ReactQueryDevtoolsProduction = React.lazy(() => + import("@tanstack/react-query-devtools/build/modern/production.js").then((d) => ({ + default: d.ReactQueryDevtools, + })) +); + +const queryClient = new QueryClient(); +const clientSideEmotionCache = createEmotionCache(); +const App = (props) => { + const { Component, emotionCache = clientSideEmotionCache, pageProps } = props; + const getLayout = Component.getLayout ?? ((page) => page); + const preferredTheme = useMediaPredicate("(prefers-color-scheme: dark)") ? "dark" : "light"; + + return ( + + + CIPP + + + + + + + + {(settings) => { + if (!settings.isInitialized) { + } + const theme = createTheme({ + colorPreset: "orange", + direction: settings.direction, + paletteMode: + settings.currentTheme?.value !== "browser" + ? settings.currentTheme?.value + : preferredTheme, + contrast: "high", + }); + + return ( + <> + + + + + {getLayout()} + + + + + {settings?.showDevtools && ( + + + + )} + + ); + }} + + + + + + + ); +}; + +export default App; diff --git a/src/pages/_document.js b/src/pages/_document.js new file mode 100644 index 000000000000..c764cde02995 --- /dev/null +++ b/src/pages/_document.js @@ -0,0 +1,63 @@ +import { Children } from 'react'; +import Document, { Head, Html, Main, NextScript } from 'next/document'; +import createEmotionServer from '@emotion/server/create-instance'; +import { createEmotionCache } from '../utils/create-emotion-cache'; + +class CustomDocument extends Document { + render() { + return ( + + + + + + + +
    + + + + ); + } +} + +CustomDocument.getInitialProps = async (ctx) => { + const originalRenderPage = ctx.renderPage; + const cache = createEmotionCache(); + const { extractCriticalToChunks } = createEmotionServer(cache); + + ctx.renderPage = () => originalRenderPage({ + enhanceApp: (App) => (props) => ( + + ) + }); + + const initialProps = await Document.getInitialProps(ctx); + const emotionStyles = extractCriticalToChunks(initialProps.html); + const emotionStyleTags = emotionStyles.styles.map((style) => ( +

    hKtQ}&t(XzPV7w`d1V6`SnZa@DpAEZ~{5_8o= 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∓DxTCH;?MfTd^8l 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 literal 0 HcmV?d00001 diff --git a/public/assets/avatars/avatar-horia-tepar.jpg b/public/assets/avatars/avatar-horia-tepar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39ef93d3f1fc7f44ed5d81c84a0a9b5a01b1b120 GIT binary patch literal 21300 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 C7N)EK literal 0 HcmV?d00001 diff --git a/public/assets/avatars/avatar-meggie-heinonen.jpg b/public/assets/avatars/avatar-meggie-heinonen.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b82d688eaed60e89fe8b1724d9f15c52dfc94cf9 GIT binary patch literal 15525 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 L2%Jg*4~zc;V#_Y{ literal 0 HcmV?d00001 diff --git a/public/assets/avatars/avatar-priscilla-parades.jpg b/public/assets/avatars/avatar-priscilla-parades.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52a057cdae9c79afa9448382f0a5a17a1a1a449b GIT binary patch literal 25087 zcmbrlXH-*77%mz_r6?i_QY9+AOYh{f047L~-h+sg5b3?iW`(S zZ{4P%rlGxaU7_+m;06UH<&B$^w{G3Md0ji;`a9qz!>tET#b4ZhsBKC0%!N_nb9^>6 z*UQo-CY`|pZpja>K{T|Fm|0laczF5v1q7v}Wn|^#6<)noRa1WhhUn_)8yFfHn^=9c zwz0K?+q=1YczSvJ_y&iBhJ}BLh)hUKN=`}r_C4)KPHtX4`e#95S$Rce74CO+O>;|Y zTYJaf&aR>1kOLJlsBpV2QG>mUe_-r!_8Yy#cw}&p-pA!^6;6&XKKcm@!6$KG+dH82TUJa2WcO1 zOD*!?{|B`H6WRYaU_t-Cko_-U{|~Myz+Fm;YvWNe06+k8TixSsHPDm=R=?OzW?^sN z)_Nmh;0!VS-DDc!c;?mked}ycY%(KOD{0;jwYYumV#jh-tN>w3v;#8~%cMV@xOD8_LLm5En2(QfZn?a5}Zmroq-FF3Eon8!T8JBo>Y zo_mql!@(*GOy|pYsfh37@Lk@3>*XiCPv5RjMIi?W!XGoiYOq>_1H*;W72xJ9o+q|) z3B*8c8wO{zth)c)fI7(~V+A1p#1Iu%K=bMin)tWGv4#(q`f5W?O~6VJa?!1!EMkWV zQ1MG^tTM=VP?7ZhB$!B!Q2azmEXhP<1$(*7nmUFXGQeXscYUM-DsbJpLn^?THY{A6 z2E$k@Y?u4B{;us`60I9Ww0ULYsv;$WQDfXN#&-Jbq?hP*)%8Ges9 zNGz=Uay0Z$vrbey>Xkq^Tw7J2B`8HB= z(p?`mJtxWMrjX7rGtn|1Z!%4!XABseqIH+#4UxB zIuVQyjB;ZHsGhbtGR8z2%J)4NPaG~m__}Yk6*aomIxs`@X|i;WH9Y&UyuiOO;<9 zRFl83L0KeFCLB24;gf69?JtE%!X7j4IXF0M{}^BMlO(K@`OeG7MJN5gvXE+_`)%GG zi*uDvQIGw#(-)K*epAK1AF$B1`&P7df4XkYNM5Nc+9f_?9pgKpuRj#WGw%U395|2e zC(2GYmK16i4voQOoeUc~J|nzKkkq3U^hIDevCICRt$ zuLQKw@c5RY#$@QpT)^QMtFTme1#sxzWz-+Zoon#rM3;w>neyk%W8(})+@;FteimEU zKDqm*nxzBiZH0vj^0z_Y(jM43d6T)*S?E(~i|{qA6!w=ZC)D4!`w#HuT}dDI5;T$K z(ZfHo(l5M7?J#@TP08sv!RdaR8_$@07rq(_YP~%&aYEQ%m}-OH>6i`1jE!q(Y3Vv{ z`MKRiT3-Ql^gU1crsD_RQ*5Ul;X!SIUrv6_Hycdtwa>=izO^3D>C$w3TC(9Ueg&W< z#mbXhuK*80a-fB5aUqgS{S4K`AN9uWukz~&04#zJJW?<|Yj`-W;fuP{j<`%qEF+}U z2hgvh+V5j0Ei#yNze4Z5;fvF`O>=rNo@cs*>LJ)O=}GzW?jt*W$O=Fze?vX*eBtMm z{xgSq#dQ=NIysL&%PWU^_g%_Xp|XvVl75WEkcG)@poQ;^Vms>x$M=v+>gf0k%3xcD zbrK%tWb9jeF|T{_DdGz7OLy4O;*tlLbM}VE_6kt)`b6ozO9ok4(3)Au1gbE%HFeI} zl=&lnwU(8SS*%}vVYy22y>3(@>~wQ_R0P#? T~h7x5bfM^9Ak87{{;?HmexQpcW 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